/*
 * Ambient Team — widgets.css
 * Pełne style domyślne wszystkich widgetów.
 * Elementor generuje CSS z wyższą specyficznością, który nadpisuje te style.
 *
 * WAŻNE: Ten plik NIE powinien być edytowany ręcznie.
 * Wszystkie kolory/fonty/rozmiary są sterowane przez panel Elementora.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ==========================================================================
   ZMIENNE
   ========================================================================== */
:root {
    --al-primary:      hsl(220, 60%, 20%);
    --al-primary-fg:   hsl(0, 0%, 98%);
    --al-secondary:    hsl(36, 95%, 54%);
    --al-secondary-fg: hsl(220, 60%, 10%);
    --al-bg:           hsl(210, 20%, 98%);
    --al-fg:           hsl(220, 30%, 10%);
    --al-muted:        hsl(210, 15%, 93%);
    --al-muted-fg:     hsl(220, 10%, 45%);
    --al-card:         hsl(0, 0%, 100%);
    --al-border:       hsl(210, 15%, 88%);
    --al-radius:       0.75rem;
    --al-font-h:       'Space Grotesk', sans-serif;
    --al-font-b:       'Inter', sans-serif;
}

/* ==========================================================================
   IKONY
   ========================================================================== */
.al-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================================
   REVEAL ANIMACJE (Intersection Observer)
   ========================================================================== */
.al-reveal,
.al-reveal-l,
.al-reveal-r {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.al-reveal   { transform: translateY(30px); }
.al-reveal-l { transform: translateX(-40px); }
.al-reveal-r { transform: translateX(40px); }

.al-reveal.visible,
.al-reveal-l.visible,
.al-reveal-r.visible {
    opacity: 1;
    transform: none;
}

/* Opóźnienia */
.al-reveal.delay-1, .al-reveal-l.delay-1, .al-reveal-r.delay-1 { transition-delay: 0.08s; }
.al-reveal.delay-2, .al-reveal-l.delay-2, .al-reveal-r.delay-2 { transition-delay: 0.16s; }
.al-reveal.delay-3, .al-reveal-l.delay-3, .al-reveal-r.delay-3 { transition-delay: 0.24s; }
.al-reveal.delay-4, .al-reveal-l.delay-4, .al-reveal-r.delay-4 { transition-delay: 0.32s; }
.al-reveal.delay-5, .al-reveal-l.delay-5, .al-reveal-r.delay-5 { transition-delay: 0.40s; }
.al-reveal.delay-6, .al-reveal-l.delay-6, .al-reveal-r.delay-6 { transition-delay: 0.48s; }

/* Edytor Elementora — bez animacji */
.elementor-editor-active .al-reveal,
.elementor-editor-active .al-reveal-l,
.elementor-editor-active .al-reveal-r {
    opacity: 1 !important;
    transform: none !important;
}

/* ==========================================================================
   WSPÓLNE: LAYOUT
   ========================================================================== */
.al-section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px)  { .al-section-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .al-section-inner { padding: 0 2rem; } }

/* Nagłówek wyśrodkowany (nagłówki sekcji usług, floty, kontaktu) */
.al-section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

/* Badge */
.al-section-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--al-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--al-font-b);
}

/* Heading */
.al-section-heading {
    font-family: var(--al-font-h);
    font-size: clamp(1.875rem, 4vw, 3.125rem);
    font-weight: 700;
    color: var(--al-fg);
    line-height: 1.15;
    margin: 0.75rem 0 0;
}
.al-section-heading .al-accent { color: var(--al-secondary); }

/* Podtytuł */
.al-section-subtitle {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    color: var(--al-muted-fg);
    line-height: 1.7;
    font-family: var(--al-font-b);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.al-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    transition: all 0.5s ease;
}
.al-navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(22, 48, 90, 0.07);
    border-bottom: 1px solid rgba(220, 225, 235, 0.8);
}

.al-navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
@media (min-width: 640px)  { .al-navbar-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .al-navbar-inner { padding: 0 2rem; } }

/* Logo */
.al-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.al-logo-icon {
    width: 40px; height: 40px;
    background: var(--al-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.al-logo-icon span {
    color: var(--al-primary);
    font-family: var(--al-font-h);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
}
.al-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.al-logo-name {
    font-family: var(--al-font-h);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
    transition: color 0.5s;
}
.al-navbar.scrolled .al-logo-name { color: var(--al-primary); }
.al-logo-subtitle {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    transition: color 0.5s;
    font-family: var(--al-font-b);
}
.al-navbar.scrolled .al-logo-subtitle { color: var(--al-muted-fg); }
.al-logo-img { max-height: 48px; width: auto; display: block; }

/* Desktop nav */
.al-nav-desktop {
    display: none;
    align-items: center;
    gap: 4px;
}
@media (min-width: 1024px) { .al-nav-desktop { display: flex; } }

.al-nav-link {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--al-font-b);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    white-space: nowrap;
    line-height: 1.4;
}
.al-nav-link:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.al-navbar.scrolled .al-nav-link { color: var(--al-fg); }
.al-navbar.scrolled .al-nav-link:hover { background: var(--al-muted); }

/* CTA button */
.al-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--al-secondary);
    color: var(--al-secondary-fg);
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--al-font-b);
    margin-left: 16px;
    transition: background 0.3s, transform 0.2s;
    line-height: 1.4;
    white-space: nowrap;
}
.al-cta-btn:hover { background: hsl(36, 95%, 46%); }
.al-cta-btn--full {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 8px;
    padding: 12px 20px;
}

/* Mobile toggle */
.al-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: #fff;
    transition: color 0.5s;
}
.al-navbar.scrolled .al-mobile-toggle { color: var(--al-fg); }
@media (min-width: 1024px) { .al-mobile-toggle { display: none; } }

.al-icon-close { display: none; }
.al-mobile-toggle.active .al-icon-menu  { display: none; }
.al-mobile-toggle.active .al-icon-close { display: flex; }

/* Mobile menu */
.al-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--al-border);
}
.al-mobile-menu.open { max-height: 100vh; }
@media (min-width: 1024px) { .al-mobile-menu { display: none !important; } }

.al-mobile-menu-inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.al-mobile-link {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: var(--al-font-b);
    color: var(--al-fg);
    border-radius: 8px;
    transition: background 0.2s;
    line-height: 1.4;
}
.al-mobile-link:hover { background: var(--al-muted); }

/* ==========================================================================
   HERO
   ========================================================================== */
.al-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.al-hero-bg {
    position: absolute;
    inset: 0;
}
.al-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.al-hero-bg-placeholder {
    width: 100%;
    height: 100%;
    background: var(--al-primary);
}
.al-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        hsl(220 60% 20% / 0.95) 0%,
        hsl(220 60% 20% / 0.80) 50%,
        hsl(220 60% 20% / 0.40) 100%
    );
}
.al-hero-overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(220 60% 20% / 0.60) 0%, transparent 40%);
}
.al-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}
.al-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1rem;
}
@media (min-width: 640px)  { .al-hero-inner { padding: 8rem 1.5rem; } }
@media (min-width: 768px)  { .al-hero-inner { padding: 10rem 2rem; } }

.al-hero-max { max-width: 48rem; }

/* Badge hero */
.al-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    padding: 8px 20px;
    margin-bottom: 2rem;
}
.al-badge-dot {
    width: 8px; height: 8px;
    background: var(--al-secondary);
    border-radius: 50%;
    animation: al-pulse 2s infinite;
    flex-shrink: 0;
}
.al-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.90);
    font-family: var(--al-font-b);
}

/* Heading hero */
.al-hero-heading {
    font-family: var(--al-font-h);
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}
.al-hero-heading .al-accent { color: var(--al-secondary); }
.al-hero-heading .al-dim    { color: rgba(255, 255, 255, 0.4); }

/* Subtitle hero */
.al-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.7;
    max-width: 42rem;
    font-family: var(--al-font-b);
    margin: 0 0 2.5rem;
}

/* Buttons hero */
.al-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}
@media (min-width: 640px) { .al-hero-buttons { flex-direction: row; } }

.al-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--al-font-b);
    transition: all 0.3s;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}
.al-btn .al-icon { width: 1.25rem; height: 1.25rem; }
.al-btn-primary {
    background: var(--al-secondary);
    color: var(--al-secondary-fg);
    box-shadow: 0 8px 24px rgba(245, 162, 11, 0.30);
}
.al-btn-primary:hover {
    background: hsl(36, 95%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 162, 11, 0.40);
}
.al-btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.30);
}
.al-btn-outline:hover { background: rgba(255, 255, 255, 0.10); }

/* Stats hero */
.al-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 32rem;
    margin-top: 4rem;
}
.al-stat { text-align: center; }
.al-stat .al-icon {
    color: var(--al-secondary);
    margin: 0 auto 8px;
    display: block;
}
.al-stat-value {
    font-family: var(--al-font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
}
.al-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.50);
    margin: 0;
    font-family: var(--al-font-b);
}

/* Hero — dolne wypełnienie */
.al-hero-fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--al-bg), transparent);
    pointer-events: none;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.al-about {
    padding: 6rem 0;
    background: var(--al-bg);
}
@media (min-width: 768px) { .al-about { padding: 8rem 0; } }

.al-about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .al-about-grid { grid-template-columns: 1fr 1fr; }
}

.al-about-text p {
    font-size: 1.0625rem;
    color: var(--al-muted-fg);
    line-height: 1.75;
    margin-top: 1.5rem;
    font-family: var(--al-font-b);
}
.al-about-text strong { color: var(--al-fg); }

.al-about-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.al-about-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--al-muted-fg);
    font-family: var(--al-font-b);
}
.al-meta-dot {
    width: 6px; height: 6px;
    background: var(--al-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* About cards */
.al-about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 480px) { .al-about-cards { grid-template-columns: 1fr 1fr; } }

.al-feature-card {
    background: var(--al-card);
    border: 1px solid var(--al-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.5s;
}
.al-feature-card:hover {
    box-shadow: 0 20px 60px rgba(22, 48, 90, 0.08);
    transform: translateY(-4px);
}
.al-feature-icon {
    width: 48px; height: 48px;
    background: rgba(245, 162, 11, 0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s;
}
.al-feature-card:hover .al-feature-icon { background: rgba(245, 162, 11, 0.20); }
.al-feature-icon .al-icon { color: var(--al-secondary); width: 1.5rem; height: 1.5rem; }
.al-feature-title {
    font-family: var(--al-font-h);
    font-weight: 600;
    color: var(--al-fg);
    margin: 0 0 8px;
    font-size: 0.9375rem;
}
.al-feature-desc {
    font-size: 0.8125rem;
    color: var(--al-muted-fg);
    line-height: 1.6;
    margin: 0;
    font-family: var(--al-font-b);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.al-services {
    padding: 6rem 0;
    background: var(--al-muted);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .al-services { padding: 8rem 0; } }

.al-services-pattern {
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    opacity: 0.05;
    pointer-events: none;
}
.al-services-pattern img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.al-services-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px)  { .al-services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .al-services-grid { grid-template-columns: repeat(3, 1fr); } }

.al-service-card {
    background: var(--al-card);
    border: 1px solid var(--al-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}
.al-service-card:hover {
    box-shadow: 0 25px 50px rgba(22, 48, 90, 0.08);
    transform: translateY(-8px);
}
.al-service-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 6rem; height: 6rem;
    background: rgba(245, 162, 11, 0.05);
    border-bottom-left-radius: 60px;
    transition: background 0.5s;
    pointer-events: none;
}
.al-service-card:hover::after { background: rgba(245, 162, 11, 0.10); }

.al-service-icon {
    width: 56px; height: 56px;
    background: var(--al-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.5s;
}
.al-service-card:hover .al-service-icon { transform: scale(1.1); }
.al-service-icon .al-icon { color: #fff; width: 1.75rem; height: 1.75rem; }
.al-service-title {
    font-family: var(--al-font-h);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--al-fg);
    margin: 0 0 0.75rem;
    position: relative; z-index: 1;
}
.al-service-desc {
    font-size: 0.875rem;
    color: var(--al-muted-fg);
    line-height: 1.7;
    margin: 0;
    position: relative; z-index: 1;
    font-family: var(--al-font-b);
}

/* ==========================================================================
   FLEET
   ========================================================================== */
.al-fleet {
    padding: 6rem 0;
    background: var(--al-bg);
}
@media (min-width: 768px) { .al-fleet { padding: 8rem 0; } }

.al-fleet-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .al-fleet-grid { grid-template-columns: 1fr 1fr; }
}

.al-fleet-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(22, 48, 90, 0.12);
}
.al-fleet-media img {
    width: 100%; height: 400px;
    object-fit: cover;
    display: block;
}
.al-fleet-placeholder {
    width: 100%; height: 400px;
    background: linear-gradient(135deg, var(--al-muted), var(--al-border));
}
.al-fleet-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, hsl(220 60% 20% / 0.60) 0%, transparent 50%);
}
.al-fleet-badge {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 16px;
    padding: 1.25rem;
}
.al-fleet-badge-title {
    color: #fff;
    font-family: var(--al-font-h);
    font-weight: 600;
    font-size: 1.0625rem;
    margin: 0 0 4px;
}
.al-fleet-badge-sub {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.8125rem;
    margin: 0;
    font-family: var(--al-font-b);
}

.al-fleet-specs { display: flex; flex-direction: column; gap: 1rem; }

.al-spec-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--al-card);
    border: 1px solid var(--al-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s;
}
.al-spec-card:hover { box-shadow: 0 12px 30px rgba(22, 48, 90, 0.06); }

.al-spec-icon {
    width: 56px; height: 56px;
    background: rgba(245, 162, 11, 0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.al-spec-icon .al-icon { color: var(--al-secondary); width: 1.75rem; height: 1.75rem; }
.al-spec-label {
    font-size: 0.8125rem;
    color: var(--al-muted-fg);
    margin: 0 0 4px;
    font-family: var(--al-font-b);
}
.al-spec-value {
    font-family: var(--al-font-h);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--al-fg);
    margin: 0;
}

/* ==========================================================================
   WHYUS
   ========================================================================== */
.al-whyus {
    padding: 6rem 0;
    background: var(--al-primary);
    color: var(--al-primary-fg);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .al-whyus { padding: 8rem 0; } }

.al-whyus-orb {
    position: absolute;
    width: 384px; height: 384px;
    background: rgba(245, 162, 11, 0.10);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.al-whyus-orb-tl { top: 0; left: 0; transform: translate(-50%, -50%); }
.al-whyus-orb-br { bottom: 0; right: 0; transform: translate(50%, 50%); }

.al-whyus-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .al-whyus-grid { grid-template-columns: 1fr 1fr; }
}

.al-whyus-badge { color: var(--al-secondary); }

.al-whyus-heading {
    font-family: var(--al-font-h);
    font-size: clamp(1.875rem, 4vw, 3.125rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0.75rem 0 0;
}
.al-whyus-heading .al-accent { color: var(--al-secondary); }

.al-whyus-para {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.7;
    font-family: var(--al-font-b);
}

.al-satisfaction {
    margin-top: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 2rem;
}
.al-satisfaction-number {
    font-family: var(--al-font-h);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--al-secondary);
    margin: 0 0 8px;
}
.al-satisfaction-label {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
    font-family: var(--al-font-b);
}

.al-reasons { display: flex; flex-direction: column; gap: 0.75rem; }

.al-reason {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: background 0.2s;
}
.al-reason:hover { background: rgba(255, 255, 255, 0.10); }
.al-reason .al-icon { color: var(--al-secondary); flex-shrink: 0; }
.al-reason-text {
    color: rgba(255, 255, 255, 0.90);
    font-weight: 500;
    font-family: var(--al-font-b);
    font-size: 0.9375rem;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.al-contact {
    padding: 6rem 0;
    background: var(--al-muted);
}
@media (min-width: 768px) { .al-contact { padding: 8rem 0; } }

.al-contact-grid {
    display: grid;
    gap: 2.5rem;
}
@media (min-width: 1024px) {
    .al-contact-grid { grid-template-columns: 2fr 3fr; }
}

/* Karty kontaktowe */
.al-contact-info { display: flex; flex-direction: column; gap: 1rem; }

.al-info-card {
    background: var(--al-card);
    border: 1px solid var(--al-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}
.al-info-card:hover { box-shadow: 0 12px 30px rgba(22, 48, 90, 0.06); }
.al-info-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.al-info-icon {
    width: 48px; height: 48px;
    background: var(--al-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.al-info-icon .al-icon { color: #fff; }
.al-info-label {
    font-size: 0.8125rem;
    color: var(--al-muted-fg);
    margin: 0 0 4px;
    font-family: var(--al-font-b);
}
.al-info-value,
.al-info-link {
    font-weight: 500;
    color: var(--al-fg);
    font-size: 0.9375rem;
    font-family: var(--al-font-b);
    margin: 0;
}
.al-info-link {
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}
.al-info-link:hover { color: var(--al-secondary); }

.al-nip-card {
    background: var(--al-primary);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 0.25rem;
}
.al-nip-label {
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.8125rem;
    margin: 0 0 4px;
    font-family: var(--al-font-b);
}
.al-nip-value {
    color: #fff;
    font-family: var(--al-font-h);
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}

/* Formularz */
.al-contact-form-wrap {
    background: var(--al-card);
    border: 1px solid var(--al-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(22, 48, 90, 0.05);
}
.al-form-title {
    font-family: var(--al-font-h);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--al-fg);
    margin: 0 0 1.5rem;
}

.al-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.al-form-row {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) { .al-form-row { grid-template-columns: 1fr 1fr; } }

.al-form-group { display: flex; flex-direction: column; gap: 6px; }

.al-form-label {
    font-size: 0.875rem;
    color: var(--al-muted-fg);
    font-family: var(--al-font-b);
}

.al-form-input,
.al-form-textarea {
    border: 1.5px solid var(--al-border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-family: var(--al-font-b);
    color: var(--al-fg);
    background: var(--al-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.al-form-input    { height: 48px; }
.al-form-textarea { min-height: 140px; resize: vertical; }

.al-form-input:focus,
.al-form-textarea:focus {
    outline: none;
    border-color: var(--al-secondary);
    box-shadow: 0 0 0 3px rgba(245, 162, 11, 0.15);
}
.al-form-input::placeholder,
.al-form-textarea::placeholder { color: hsl(220, 10%, 65%); }

/* Komunikat formularza */
.al-form-message {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: var(--al-font-b);
    display: none;
    line-height: 1.5;
}
.al-form-message.success {
    display: block;
    background: hsl(142, 76%, 94%);
    color: hsl(142, 76%, 26%);
    border: 1px solid hsl(142, 76%, 80%);
}
.al-form-message.error {
    display: block;
    background: hsl(0, 84%, 95%);
    color: hsl(0, 70%, 40%);
    border: 1px solid hsl(0, 84%, 85%);
}

/* Submit */
.al-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    background: var(--al-secondary);
    color: var(--al-secondary-fg);
    border: none;
    cursor: pointer;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--al-font-b);
    transition: background 0.3s;
}
.al-form-submit:hover   { background: hsl(36, 95%, 46%); }
.al-form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.al-form-submit .al-icon { width: 1rem; height: 1rem; }

.al-submit-content {
    display: flex;
    align-items: center;
    gap: 8px;
}
.al-spinner {
    width: 20px; height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: al-spin 0.8s linear infinite;
    display: none;
}
.al-form-submit.loading .al-spinner        { display: block; }
.al-form-submit.loading .al-submit-content { display: none; }

/* ==========================================================================
   FOOTER BAR
   ========================================================================== */
.al-footer-bar {
    background: var(--al-primary);
    color: var(--al-primary-fg);
}

.al-footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
}
@media (min-width: 640px)  { .al-footer-main { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .al-footer-main { padding: 4rem 2rem; } }

.al-footer-grid {
    display: grid;
    gap: 3rem;
}
@media (min-width: 768px) {
    .al-footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.al-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    text-decoration: none;
}
.al-footer-logo .al-logo-icon { background: var(--al-secondary); }
.al-footer-logo .al-logo-icon span { color: var(--al-primary); }

.al-footer-logo-name {
    font-family: var(--al-font-h);
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
}
.al-footer-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.7;
    font-family: var(--al-font-b);
    margin: 0;
}

.al-footer-col-title {
    font-family: var(--al-font-h);
    font-weight: 600;
    font-size: 0.9375rem;
    color: #fff;
    margin: 0 0 1rem;
}

.al-footer-nav {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.al-footer-nav-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--al-font-b);
    text-align: left;
    transition: color 0.2s;
    line-height: 1.4;
}
.al-footer-nav-link:hover { color: var(--al-secondary); }

.al-footer-contact {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.al-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.al-footer-contact-item .al-icon {
    color: var(--al-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}
.al-footer-contact-item span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.60);
    font-family: var(--al-font-b);
    line-height: 1.5;
}

/* Footer bottom */
.al-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
@media (min-width: 640px)  { .al-footer-bottom { padding: 2rem 1.5rem; } }
@media (min-width: 768px)  {
    .al-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
@media (min-width: 1024px) { .al-footer-bottom { padding: 2rem; } }

.al-footer-copyright,
.al-footer-nip {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.40);
    font-family: var(--al-font-b);
    margin: 0;
}
