/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #2c2c2c;
    --accent-color: #4a4a4a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif;
}

body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #0b0a06;
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 4px solid transparent;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='asphaltNoise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' seed='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23asphaltNoise)' opacity='0.25'/%3E%3C/svg%3E"),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent calc(50% - 60px),
            rgba(255, 255, 255, 0.3) calc(50% - 60px),
            rgba(255, 255, 255, 0.3) calc(50% - 40px),
            transparent calc(50% - 40px),
            transparent calc(50% - 20px),
            rgba(255, 255, 255, 0.3) calc(50% - 20px),
            rgba(255, 255, 255, 0.3) calc(50%),
            transparent calc(50%),
            transparent calc(50% + 20px),
            rgba(255, 255, 255, 0.3) calc(50% + 20px),
            rgba(255, 255, 255, 0.3) calc(50% + 40px),
            transparent calc(50% + 40px),
            transparent calc(50% + 60px)
        );
    background-size: 80px 80px, 100% 100%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.nav-container {
    position: relative;
    z-index: 1;
}

.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 90px;
}

.logo {
    flex: 0 0 auto;
    margin-right: 3rem;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: none;
    object-fit: contain;
}


.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #0b0a06;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem 3rem;
    row-gap: 1.5rem;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 999;
}

.nav-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0.5px;
    padding: 0.75rem 1rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.mobile-whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-whatsapp-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
}

.mobile-whatsapp-link svg {
    width: 22px;
    height: 22px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 769px) {
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        gap: 3rem;
        width: auto;
        margin-right: 2rem;
        padding: 0;
        background: transparent;
        box-shadow: none;
        max-height: none;
        overflow: visible;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: auto;
        display: inline-block;
        padding: 0.5rem 1rem;
    }

    .mobile-header-actions {
        margin-left: 0;
    }

    .mobile-whatsapp-link {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(to top right, #0b0a06 0%, #0b0a06 60%, #1a1812 80%, #3a3832 100%);
    padding: 120px 0 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='asphaltNoise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' seed='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23asphaltNoise)' opacity='0.25'/%3E%3C/svg%3E"),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent calc(50% - 60px),
            rgba(255, 255, 255, 0.4) calc(50% - 60px),
            rgba(255, 255, 255, 0.4) calc(50% - 40px),
            transparent calc(50% - 40px),
            transparent calc(50% - 20px),
            rgba(255, 255, 255, 0.4) calc(50% - 20px),
            rgba(255, 255, 255, 0.4) calc(50%),
            transparent calc(50%),
            transparent calc(50% + 20px),
            rgba(255, 255, 255, 0.4) calc(50% + 20px),
            rgba(255, 255, 255, 0.4) calc(50% + 40px),
            transparent calc(50% + 40px),
            transparent calc(50% + 60px)
        );
    background-size: 80px 80px, 100% 100%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            90deg,
            transparent 0%,
            transparent 25%,
            rgba(255, 255, 255, 0.05) 29%,
            rgba(255, 255, 255, 0.06) 30%,
            rgba(255, 255, 255, 0.05) 31%,
            transparent 35%,
            transparent 45%,
            rgba(255, 255, 255, 0.03) 49%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 255, 255, 0.03) 51%,
            transparent 55%,
            transparent 65%,
            rgba(255, 255, 255, 0.05) 69%,
            rgba(255, 255, 255, 0.06) 70%,
            rgba(255, 255, 255, 0.05) 71%,
            transparent 75%,
            transparent 100%
        ),
        repeating-linear-gradient(
            180deg,
            transparent 0px,
            transparent 40px,
            rgba(255, 255, 255, 0.02) 40px,
            rgba(255, 255, 255, 0.02) 45px,
            transparent 45px,
            transparent 85px,
            rgba(255, 255, 255, 0.015) 85px,
            rgba(255, 255, 255, 0.015) 88px,
            transparent 88px,
            transparent 100px
        );
    background-size: 100% 100%, 100% 100%;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
    justify-items: center;
}

.hero-text {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.6) 0%, rgba(40, 40, 40, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3.5rem 4.5rem;
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.2),
        inset 0 0 40px rgba(255, 107, 53, 0.08);
    border: 2px solid #ff6b35;
    margin: 0;
    position: relative;
    overflow: visible;
    max-width: 90%;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-text > * {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 2.8rem;
    color: #ff6b35;
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    max-width: 90%;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: clamp(3rem, 4.2vw, 4.8rem) !important;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        line-height: 1.0;
        margin-bottom: 3.5rem;
        max-width: 100%;
        color: #ff6b35;
        display: inline-block;
        background: none;
        text-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
    }
}

.hero-white {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}

.hero-buttons {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    justify-content: flex-start;
    align-items: center;
}

.hero-divider-top,
.hero-divider-bottom {
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 107, 53, 0.4), transparent);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.hero-divider-top {
    margin-bottom: 1.8rem;
}

.hero-divider-bottom {
    margin-top: 1.8rem;
}

.hero-brand-stage {
    position: relative;
    width: min(660px, 92%);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-brand-glow {
    position: absolute;
    inset: 18% 14% 22% 14%;
    background:
        radial-gradient(circle at 50% 46%, rgba(255, 107, 53, 0.66) 0%, rgba(255, 107, 53, 0.3) 22%, rgba(255, 107, 53, 0.1) 46%, transparent 72%),
        radial-gradient(circle at 50% 50%, rgba(255, 220, 188, 0.22) 0%, rgba(255, 179, 102, 0.08) 34%, transparent 58%);
    filter: blur(46px);
    opacity: 1;
    pointer-events: none;
}

.hero-brand-lines {
    position: relative;
    z-index: 1;
    position: absolute;
    inset: 14% 10% 14% 10%;
    pointer-events: none;
}

.hero-brand-lines::before,
.hero-brand-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 96px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.72), rgba(255, 234, 220, 0.55), transparent);
    box-shadow: 0 0 24px rgba(255, 107, 53, 0.22);
    pointer-events: none;
}

.hero-brand-lines::before {
    left: 0;
}

.hero-brand-lines::after {
    right: 0;
}

.hero-brand-stage::before,
.hero-brand-stage::after {
    content: '';
    position: absolute;
    width: 72px;
    height: 72px;
    border-color: rgba(255, 107, 53, 0.28);
    pointer-events: none;
    z-index: 1;
}

.hero-brand-stage::before {
    top: 12%;
    left: 8%;
    border-top: 1px solid rgba(255, 107, 53, 0.28);
    border-left: 1px solid rgba(255, 107, 53, 0.28);
}

.hero-brand-stage::after {
    right: 8%;
    bottom: 12%;
    border-right: 1px solid rgba(255, 107, 53, 0.28);
    border-bottom: 1px solid rgba(255, 107, 53, 0.28);
}

.hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 2;
    animation: heroBrandEnter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
    filter:
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 12px rgba(255, 247, 242, 0.3))
    drop-shadow(0 0 24px rgba(255, 107, 53, 0.28))
    drop-shadow(0 0 52px rgba(255, 107, 53, 0.18));
}

@keyframes heroBrandEnter {
    from {
        opacity: 0;
        transform: translateX(24px) translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 600;
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-scroll:hover {
    color: var(--primary-color);
}

.hero-scroll svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.hero-scroll:hover svg {
    transform: translateY(4px);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ff9966;
    border-color: #ff9966;
    font-weight: 600;
}

.btn-outline:hover {
    background: #ff6b35;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-hero {
    background: transparent;
    color: #ff9966;
    border: 2px solid #ff9966;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    overflow: hidden;
    border-radius: 0;
}

.btn-hero::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-hero:hover {
    background: #ff6b35;
    color: var(--white);
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-hero:hover::after {
    transform: translateX(4px);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: var(--white);
    border: 2px solid #ff6b35;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    border-radius: 0;
    font-weight: 700;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #ffaa77 100%);
    border-color: #ffaa77;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 2rem 1.5rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-gray);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.section-header .section-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(44, 44, 44, 0.05) 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.benefits h2 {
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #0b0a06;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 3;
}

.process::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='asphaltNoise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' seed='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23asphaltNoise)' opacity='0.25'/%3E%3C/svg%3E"),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent calc(50% - 60px),
            rgba(255, 255, 255, 0.25) calc(50% - 60px),
            rgba(255, 255, 255, 0.25) calc(50% - 40px),
            transparent calc(50% - 40px),
            transparent calc(50% - 20px),
            rgba(255, 255, 255, 0.25) calc(50% - 20px),
            rgba(255, 255, 255, 0.25) calc(50%),
            transparent calc(50%),
            transparent calc(50% + 20px),
            rgba(255, 255, 255, 0.25) calc(50% + 20px),
            rgba(255, 255, 255, 0.25) calc(50% + 40px),
            transparent calc(50% + 40px),
            transparent calc(50% + 60px)
        );
    background-size: 80px 80px, 100% 100%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process h2 {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.process .section-lead {
    color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--gradient);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background: #0b0a06;
    position: relative;
}

.courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 3;
}

.courses::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='asphaltNoise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' seed='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23asphaltNoise)' opacity='0.25'/%3E%3C/svg%3E"),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent calc(50% - 60px),
            rgba(255, 255, 255, 0.4) calc(50% - 60px),
            rgba(255, 255, 255, 0.4) calc(50% - 40px),
            transparent calc(50% - 40px),
            transparent calc(50% - 20px),
            rgba(255, 255, 255, 0.4) calc(50% - 20px),
            rgba(255, 255, 255, 0.4) calc(50%),
            transparent calc(50%),
            transparent calc(50% + 20px),
            rgba(255, 255, 255, 0.4) calc(50% + 20px),
            rgba(255, 255, 255, 0.4) calc(50% + 40px),
            transparent calc(50% + 40px),
            transparent calc(50% + 60px)
        );
    background-size: 80px 80px, 100% 100%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.courses .container {
    position: relative;
    z-index: 2;
}

.courses h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-lead {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.pricing .section-lead,
.courses .section-lead {
    color: rgba(255, 255, 255, 0.8);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 100%;
}

.course-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(40, 40, 40, 0.8) 100%);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transition: height 0.3s ease;
}

.course-card:hover::before {
    height: 8px;
}

.course-card:hover {
    border-color: #ffaa77;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(50, 50, 50, 0.9) 100%);
}

/* SVG Icons in course cards */
.course-card svg {
    width: 120px;
    height: 120px;
    margin: 1rem auto 1.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.2));
}

.course-card:hover svg {
    transform: scale(1.08) rotate(-5deg);
    filter: drop-shadow(0 8px 20px rgba(255, 107, 53, 0.4));
}

.course-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.course-card > p {
    color: #ff9966;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.course-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-card li {
    padding: 0.6rem 0;
    color: #cccccc;
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
}

.course-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff9966;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(to bottom, #1a1a1a 0%, #2c2e35 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 3;
}

.pricing h2 {
    text-align: left;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.05)) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(255, 107, 53, 0.4);
}

.pricing-card h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}


.pricing .section-header {
    text-align: center;
}

.legal-hero {
    position: relative;
    padding: 150px 0 90px;
    background:
        linear-gradient(120deg, rgba(11, 10, 6, 0.9), rgba(26, 24, 18, 0.76)),
        url('image0 (2).png') center/cover no-repeat;
    overflow: hidden;
}
.price-offer {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}
    background: linear-gradient(180deg, rgba(12, 11, 9, 0.48) 0%, rgba(12, 11, 9, 0.62) 100%);
.price-original {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: line-through;
    background: transparent;
    box-shadow: none;
    border: 0;
    text-decoration-thickness: 2px;
}

.price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: var(--white);
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.5);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price-note,
.pricing-card.featured .price-original,
.pricing-card.featured li {
    color: var(--white);
}

.price-note-offer {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pricing-hint {
    margin-top: 3rem;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Section – Full-bleed with diagonal divider */
.about {
    padding: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #2c2e35 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 3;
}

.about-stage {
    position: relative;
    display: flex;
    width: min(1720px, 100%);
    margin: 0 auto;
    overflow: hidden;
}

.about-panel {
    position: relative;
}

.about-panel-image {
    flex: 1.1;
    z-index: 2;
}

.about-panel-text {
    flex: 0.9;
    z-index: 1;
    margin-left: -50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #25252b 100%);
    display: flex;
    align-items: center;
}

.about-stage-image {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* Diagonal clip-path cuts for About */
.about-panel-image {
    clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
}

.about-panel-text {
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
}

/* Orange diagonal line at the cut edge */
.about-panel-image::after {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: 0;
    right: 0;
    z-index: 5;
    background: linear-gradient(180deg, rgba(255,140,66,0.3) 0%, #ff9a4d 16%, #ff6b35 50%, #ff9a4d 84%, rgba(255,140,66,0.3) 100%);
    clip-path: polygon(
        calc(100% - 3px) 0,
        calc(100% + 3px) 0,
        calc(100% - 47px) 100%,
        calc(100% - 53px) 100%
    );
    filter: drop-shadow(0 0 14px rgba(255, 107, 53, 0.6));
    pointer-events: none;
}

/* Overlay on image panel for depth */
.about-panel-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.45) 0%, rgba(8,8,8,0.05) 30%, rgba(8,8,8,0.05) 70%, rgba(8,8,8,0.4) 100%);
    z-index: 1;
    pointer-events: none;
    clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
}

.about-copy {
    position: relative;
    z-index: 4;
    padding: 3rem 2.5rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-copy h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-copy .section-lead {
    text-align: left;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.about-copy p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    line-height: 1.65;
}

.about-list {
    list-style: none;
    margin-bottom: 1.5rem;
    display: grid;
    gap: 0.6rem;
}

.about-list li {
    position: relative;
    padding-left: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 0.95rem;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.2);
}

.team-showcase,
.fleet-showcase {
    padding: 0;
    position: relative;
}

.team-showcase::before,
.fleet-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    z-index: 3;
}

.team-showcase::after,
.fleet-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='asphaltNoise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' seed='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23asphaltNoise)' opacity='0.18'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    opacity: 0.35;
    pointer-events: none;
}

.team-showcase::after {
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='asphaltNoise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' seed='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23asphaltNoise)' opacity='0.18'/%3E%3C/svg%3E"),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent calc(50% - 60px),
            rgba(255, 255, 255, 0.3) calc(50% - 60px),
            rgba(255, 255, 255, 0.3) calc(50% - 40px),
            transparent calc(50% - 40px),
            transparent calc(50% - 20px),
            rgba(255, 255, 255, 0.3) calc(50% - 20px),
            rgba(255, 255, 255, 0.3) calc(50%),
            transparent calc(50%),
            transparent calc(50% + 20px),
            rgba(255, 255, 255, 0.3) calc(50% + 20px),
            rgba(255, 255, 255, 0.3) calc(50% + 40px),
            transparent calc(50% + 40px),
            transparent calc(50% + 60px)
        );
    background-size: 80px 80px, 100% 100%;
    opacity: 0.32;
}

/* ── Road Banner – section headers on the road ── */
.road-banner {
    --lane-marking: rgba(255, 255, 255, 0.3);
    --lane-width: 20px;
    --lane-left-start: calc(50% - 60px);
    --lane-left-end: calc(50% - 40px);
    --lane-center-start: calc(50% - 20px);
    --lane-right-start: calc(50% + 20px);
    --lane-right-end: calc(50% + 40px);
    position: relative;
    padding: 0;
    background: linear-gradient(180deg, #1a1915 0%, #222019 35%, #222019 65%, #0e0d0a 100%);
    overflow: hidden;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 107, 53, 0.22);
    border-bottom: 1px solid rgba(255, 107, 53, 0.22);
}

/* Asphalt grain texture */
.road-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.8' numOctaves='4' seed='5'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.road-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--lane-center-start);
    width: var(--lane-width);
    background: var(--lane-marking);
    pointer-events: none;
    z-index: 1;
}

/* Lane forks aligned to the exact page stripe positions */
.lane-fork {
    position: relative;
    width: 100%;
    height: 54px;
    z-index: 2;
    flex-shrink: 0;
}

.lane-branch {
    position: absolute;
    display: block;
    box-sizing: border-box;
}

.lane-fork--top {
    margin-bottom: 0;
}

.lane-fork--bottom {
    margin-top: 0;
}

.lane-branch--top-left {
    top: 0;
    left: 0;
    width: var(--lane-left-end);
    height: 100%;
    border-right: var(--lane-width) solid var(--lane-marking);
    border-bottom: var(--lane-width) solid var(--lane-marking);
    border-bottom-right-radius: 160px 34px;
}

.lane-branch--top-right {
    top: 0;
    left: var(--lane-right-start);
    right: 0;
    height: 100%;
    border-left: var(--lane-width) solid var(--lane-marking);
    border-bottom: var(--lane-width) solid var(--lane-marking);
    border-bottom-left-radius: 160px 34px;
}

.lane-branch--bottom-left {
    bottom: 0;
    left: 0;
    width: var(--lane-left-end);
    height: 100%;
    border-right: var(--lane-width) solid var(--lane-marking);
    border-top: var(--lane-width) solid var(--lane-marking);
    border-top-right-radius: 160px 34px;
}

.lane-branch--bottom-right {
    bottom: 0;
    left: var(--lane-right-start);
    right: 0;
    height: 100%;
    border-left: var(--lane-width) solid var(--lane-marking);
    border-top: var(--lane-width) solid var(--lane-marking);
    border-top-left-radius: 160px 34px;
}

/* Center content: heading + caption */
.road-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 1rem 2rem;
    max-width: 600px;
}

.road-banner-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    color: var(--white);
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.road-banner-content .section-lead {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.55;
    max-width: none;
}

/* Color variants to blend between adjacent sections */
.road-banner--about-team {
    background: linear-gradient(180deg, #2c2e35 0%, #1e1d18 40%, #191813 100%);
}

.road-banner--team-fleet {
    background: linear-gradient(180deg, #25252b 0%, #161510 40%, #0b0a06 100%);
}

.team-showcase {
    background: linear-gradient(180deg, #191813 0%, #25252b 100%);
    overflow: hidden;
}

.fleet-showcase {
    background: linear-gradient(180deg, #0b0a06 0%, #171613 100%);
    overflow: hidden;
}

/* Team – full-bleed photo strip with diagonal clip cuts */
.team-stage {
    position: relative;
    width: min(1720px, 100%);
    margin: 0 auto;
    overflow: hidden;
}

.team-stage-overlay {
    display: none;
}

.team-photos {
    display: flex;
    width: 100%;
}

.team-photo-panel {
    flex: 1;
    position: relative;
}

.team-photo-panel:nth-child(1) { z-index: 4; }
.team-photo-panel:nth-child(2) { z-index: 3; margin-left: -50px; }
.team-photo-panel:nth-child(3) { z-index: 2; margin-left: -50px; }

.team-photo-panel img {
    width: 100%;
    height: clamp(560px, 70vh, 820px);
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Diagonal clip-paths – creates the angled "cuts" */
.team-photo-panel:nth-child(1) img {
    clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
}
.team-photo-panel:nth-child(2) img {
    clip-path: polygon(50px 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
}
.team-photo-panel:nth-child(3) img {
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
}

/* Per-panel overlay for text readability (clipped to match image) */
.team-photo-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.58) 0%, rgba(8,8,8,0.06) 28%, rgba(8,8,8,0.04) 55%, rgba(8,8,8,0.35) 78%, rgba(8,8,8,0.72) 100%);
    z-index: 1;
    pointer-events: none;
}
.team-photo-panel:nth-child(1)::before {
    clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
}
.team-photo-panel:nth-child(2)::before {
    clip-path: polygon(50px 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
}
.team-photo-panel:nth-child(3)::before {
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%);
}

/* Orange diagonal line at each cut edge (pseudo-element matching the clip edge) */
.team-photo-panel:not(.team-photo-panel-last)::after {
    content: '';
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: 0;
    right: 0;
    z-index: 5;
    background: linear-gradient(180deg, rgba(255,140,66,0.3) 0%, #ff9a4d 16%, #ff6b35 50%, #ff9a4d 84%, rgba(255,140,66,0.3) 100%);
    clip-path: polygon(
        calc(100% - 3px) 0,
        calc(100% + 3px) 0,
        calc(100% - 47px) 100%,
        calc(100% - 53px) 100%
    );
    filter: drop-shadow(0 0 14px rgba(255, 107, 53, 0.6));
    pointer-events: none;
}

.team-divider {
    display: none;
}

.team-label {
    position: absolute;
    bottom: clamp(24px, 3.5vw, 48px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.58);
    border: 1px solid rgba(255, 107, 53, 0.34);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    white-space: nowrap;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-label:hover {
    transform: translateX(-50%);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.35), 0 0 40px rgba(255, 107, 53, 0.15);
    background: rgba(10, 10, 10, 0.7);
}

.team-label h3 {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
    color: var(--white);
}

.team-label p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.fleet-stage {
    position: relative;
    min-height: clamp(780px, 88vh, 1040px);
    width: 100%;
    margin: 0 auto;
}

.fleet-stage-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.fleet-stage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.58) 0%, rgba(8, 8, 8, 0.18) 26%, rgba(8, 8, 8, 0.12) 52%, rgba(8, 8, 8, 0.34) 72%, rgba(8, 8, 8, 0.8) 100%);
    z-index: 1;
}

.fleet-divider {
    position: absolute;
    top: -6%;
    bottom: -6%;
    left: 50.4%;
    width: 7px;
    background: linear-gradient(180deg, rgba(255, 140, 66, 0.25) 0%, #ff9a4d 16%, #ff6b35 50%, #ff9a4d 84%, rgba(255, 140, 66, 0.25) 100%);
    box-shadow: 0 0 28px rgba(255, 107, 53, 0.65);
    transform: translateX(-50%) rotate(13deg);
    z-index: 3;
}

.fleet-copy {
    position: absolute;
    z-index: 4;
    max-width: 440px;
    padding: 1.4rem 2.8rem 1.4rem 2.2rem;
    border-radius: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border: none;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
}

.fleet-copy:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(255, 107, 53, 0.55);
    filter: brightness(1.08);
}

.fleet-copy-left {
    top: clamp(140px, 18vh, 220px);
    left: clamp(40px, 4vw, 70px);
}

.fleet-copy-right {
    bottom: clamp(34px, 4vw, 58px);
    right: clamp(40px, 4vw, 70px);
}

.fleet-copy h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.35;
    color: var(--white);
    font-weight: 700;
}

.fleet-copy p {
    margin: 0 0 0.6rem;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.95rem;
    line-height: 1.5;
}

.fleet-copy p:last-child {
    margin-bottom: 0;
}

.legal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 11, 9, 0.55);
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.legal-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.legal-content {
    padding: 80px 0 120px;
    background: var(--white);
}

.theory-page {
    background: #0b0a06;
}

.theory-hero {
    background:
        linear-gradient(120deg, rgba(11, 10, 6, 0.92), rgba(26, 24, 18, 0.82)),
        url('image0 (2).png') center/cover no-repeat;
}

.theory-content {
    background: linear-gradient(180deg, #0f0d09 0%, #1a1917 42%, #22242b 100%);
    position: relative;
    overflow: hidden;
}

.theory-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='asphaltNoise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' seed='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23asphaltNoise)' opacity='0.22'/%3E%3C/svg%3E"),
        radial-gradient(circle at top, rgba(255, 107, 53, 0.12), transparent 42%);
    background-size: 80px 80px, 100% 100%;
    opacity: 0.45;
    pointer-events: none;
}

.theory-content .container {
    position: relative;
    z-index: 1;
}

.theory-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: end;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.24);
    box-shadow: 0 24px 70px rgba(255, 107, 53, 0.18);
}

.theory-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: #ffad85;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    font-weight: 700;
}

.theory-highlight h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.theory-highlight p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.theory-highlight-facts {
    display: grid;
    gap: 1rem;
}

.theory-fact-card {
    padding: 1.25rem 1.4rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.theory-fact-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffad85;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.theory-fact-card strong {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.4;
}

.theory-highlight-actions {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.theory-highlight-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.theory-schedule {
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.theory-section-header {
    margin-bottom: 2rem;
}

.theory-section-header h2,
.theory-section-header .section-lead {
    text-align: left;
}

.theory-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.theory-schedule-item {
    padding: 1.25rem 1.35rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.88) 0%, rgba(34, 34, 34, 0.78) 100%);
    border: 1px solid rgba(255, 107, 53, 0.16);
}

.theory-schedule-item-accent {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.14);
}

.theory-schedule-day {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffad85;
    font-weight: 700;
}

.theory-schedule-item strong {
    color: var(--white);
    line-height: 1.5;
}

.theory-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.theory-info-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.theory-info-card h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.theory-info-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.theory-info-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.theory-info-card li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
}

.theory-info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.16);
}

.theory-info-card-accent {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 66, 0.12) 100%);
    border-color: rgba(255, 107, 53, 0.32);
}

.theory-info-card-accent .btn {
    margin-top: 1rem;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p,
.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 0.75rem 0 1.5rem 1.5rem;
    padding: 0;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-meta {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(102, 102, 102, 0.9);
    background: rgba(44, 46, 53, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #f1f3f5 0%, #e9ecef 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 3;
}

.contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Breakpoint: Desktop XL (1366px+) */
@media (min-width: 1367px) {
    .hero-text h1 {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.55rem;
    }
    
    .features h2 {
        font-size: 2.8rem;
    }
    
    .courses h2 {
        font-size: 3rem;
    }
}

/* Breakpoint: Laptop (1200px - 1366px) */
@media (max-width: 1366px) and (min-width: 1200px) {
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    .hero-text {
        padding: 3rem 3.5rem;
    }
    
    .features h2 {
        font-size: 2.5rem;
    }
    
    .courses h2 {
        font-size: 2.7rem;
    }
}

/* Breakpoint: Tablet Extra (1024px - 1200px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-text {
        padding: 2.5rem 3rem;
    }
    
    .features h2 {
        font-size: 2.2rem;
    }
    
    .courses h2 {
        font-size: 2.4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Breakpoint: Tablet (880px - 1024px) */
@media (max-width: 1023px) and (min-width: 880px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text {
        padding: 2rem 2.5rem;
    }

    .hero-brand-stage {
        width: min(560px, 90%);
    }

    .hero-brand-lines {
        inset: 16% 8% 16% 8%;
    }

    .hero-logo {
        max-width: 410px;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .courses h2 {
        font-size: 2.2rem;
    }
}

/* Breakpoint: Mobile Extra (768px - 880px) */
@media (max-width: 879px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-text {
        padding: 1.5rem 2rem;
    }

    .hero-image {
        padding: 0 1rem 1rem;
    }

    .hero-brand-stage {
        width: min(500px, 100%);
        aspect-ratio: auto;
    }

    .hero-brand-glow {
        inset: 22% 8% 24% 8%;
        filter: blur(28px);
    }

    .hero-brand-lines {
        inset: 20% 6% 20% 6%;
    }

    .hero-brand-lines::before,
    .hero-brand-lines::after {
        width: 56px;
    }

    .hero-logo {
        max-width: 360px;
    }
    
    .features h2 {
        font-size: 1.8rem;
    }
    
    .courses h2 {
        font-size: 2rem;
    }
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255,107,53,0.05) 0%, rgba(255,140,66,0.03) 100%);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0b0a06 0%, #1a1917 50%, #0b0a06 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    border-image: var(--gradient) 1;
    box-shadow: inset 0 4px 20px rgba(255, 107, 53, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='asphaltNoise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' seed='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23asphaltNoise)' opacity='0.25'/%3E%3C/svg%3E"),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent calc(50% - 80px),
            rgba(255, 255, 255, 0.05) calc(50% - 80px),
            rgba(255, 255, 255, 0.05) calc(50% - 70px),
            transparent calc(50% - 70px),
            transparent calc(50% + 70px),
            rgba(255, 255, 255, 0.05) calc(50% + 70px),
            rgba(255, 255, 255, 0.05) calc(50% + 80px),
            transparent calc(50% + 80px)
        );
    background-size: 100px 100px, 100% 100%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 0 20px;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 30px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design - Mobile Extra (768px - 879px) & Mobile (<768px) */
@media (max-width: 879px) {
    .nav-container {
        padding: 0 20px;
        min-height: 60px;
    }

    .navbar {
        padding: 0.4rem 0;
    }

    .logo {
        margin-right: 1rem;
    }

    .logo-img {
        height: 48px;
        max-width: 180px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content,
    .pricing-grid,
    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    /* About – stacked on mobile */
    .about-stage {
        flex-direction: column;
    }

    .about-panel-image {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
    }

    .about-panel-image::after {
        clip-path: polygon(
            0 calc(100% - 22px),
            100% calc(100% - 2px),
            100% calc(100% + 4px),
            0 calc(100% - 16px)
        );
        top: 0;
        bottom: 0;
    }

    .about-panel-image::before {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
    }

    .about-panel-text {
        clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
        margin-left: 0;
        margin-top: -20px;
    }

    .about-stage-image {
        min-height: 280px;
    }

    .about-copy {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .about-list {
        text-align: left;
    }

    /* Fleet – stacked on mobile */
    .fleet-stage {
        min-height: auto;
        display: grid;
        gap: 1rem;
        padding: 120px 20px 20px;
    }

    .fleet-stage-image,
    .fleet-stage-overlay,
    .fleet-divider {
        display: none;
    }

    /* Team – stacked on mobile */
    .team-photos {
        flex-direction: column;
    }

    .team-photo-panel:nth-child(2),
    .team-photo-panel:nth-child(3) {
        margin-left: 0;
        margin-top: -20px;
    }

    .team-photo-panel img {
        height: 380px;
    }

    /* Reset diagonal clips to horizontal clips on mobile */
    .team-photo-panel:nth-child(1) img,
    .team-photo-panel:nth-child(1)::before {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
    }
    .team-photo-panel:nth-child(2) img,
    .team-photo-panel:nth-child(2)::before {
        clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
    }
    .team-photo-panel:nth-child(3) img,
    .team-photo-panel:nth-child(3)::before {
        clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
    }

    /* Orange line becomes horizontal on mobile */
    .team-photo-panel:not(.team-photo-panel-last)::after {
        clip-path: polygon(
            0 calc(100% - 22px),
            100% calc(100% - 18px),
            100% calc(100% - 12px),
            0 calc(100% - 16px)
        );
        top: 0;
        bottom: 0;
    }

    .team-label {
        white-space: normal;
    }

    .fleet-copy {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        max-width: none;
        clip-path: none;
        border-radius: 14px;
        padding: 1.2rem 1.5rem;
    }

    .lane-fork {
        height: 34px;
    }

    .lane-branch--top-left,
    .lane-branch--top-right,
    .lane-branch--bottom-left,
    .lane-branch--bottom-right {
        border-bottom-right-radius: 110px 22px;
        border-bottom-left-radius: 110px 22px;
        border-top-right-radius: 110px 22px;
        border-top-left-radius: 110px 22px;
    }

    .road-banner-content {
        padding: 0.8rem 1rem;
    }

    .road-banner-content h2 {
        font-size: 1.6rem;
    }

    .road-banner-content .section-lead {
        font-size: 0.88rem;
    }
    
    .legal-hero {
        padding: 120px 0 80px;
    }
    
    .legal-section {
        margin-bottom: 2.5rem;
    }

    .theory-highlight,
    .theory-info-grid {
        grid-template-columns: 1fr;
    }

    .theory-highlight,
    .theory-schedule,
    .theory-info-card {
        padding: 1.5rem;
    }

    .theory-highlight h2 {
        font-size: 2.2rem;
    }

    .theory-section-header h2,
    .theory-section-header .section-lead {
        text-align: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Breakpoint: Tablet – Fleet-Karten schmaler */
@media (max-width: 1100px) and (min-width: 880px) {
    .fleet-copy {
        max-width: 340px;
        padding: 1.1rem 2.4rem 1.1rem 1.8rem;
    }

    .fleet-copy h3 {
        font-size: 1.15rem;
    }

    .fleet-copy p {
        font-size: 0.92rem;
    }

    .fleet-copy-left {
        left: clamp(20px, 2.5vw, 40px);
    }

    .fleet-copy-right {
        right: clamp(20px, 2.5vw, 40px);
    }

    .about-copy {
        padding: 1.5rem 1.75rem 1.5rem 3rem;
    }

    .about-copy h2 {
        font-size: 2rem;
    }
}

/* Responsive Design - Mobile (<768px) - Extra small devices */
@media (max-width: 767px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-image {
        padding: 0;
    }

    .hero-brand-stage {
        width: calc(100% - 32px);
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-brand-glow {
        inset: 24% 10% 28% 10%;
        filter: blur(24px);
    }

    .hero-brand-lines {
        inset: 22% 4% 22% 4%;
    }

    .hero-brand-lines::before,
    .hero-brand-lines::after {
        width: 40px;
    }

    .hero-brand-stage::before,
    .hero-brand-stage::after {
        width: 40px;
        height: 40px;
    }

    .hero-logo {
        max-width: 300px;
    }
    
    .hero-text {
        width: calc(100% - 32px);
        max-width: 420px;
        margin: 0 auto;
        padding: 1.85rem 1.5rem 2.15rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    }

    .hero-text::before {
        clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    }

    .hero-text > * {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 2rem !important;
    }
    
    .section-lead {
        margin: -1rem auto 2rem;
    }
    
    .features,
    .courses,
    .pricing,
    .about,
    .contact {
        padding: 60px 0;
    }
    
    .features h2,
    .courses h2,
    .pricing h2,
    .about-copy h2,
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .legal-hero {
        padding: 100px 0 70px;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 0 1rem;
    }

    .theory-content {
        padding-bottom: 80px;
    }

    .theory-highlight {
        gap: 1.25rem;
    }

    .theory-highlight h2 {
        font-size: 1.9rem;
    }

    .theory-schedule-grid,
    .theory-info-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        margin-right: 0.5rem;
    }

    .logo-img {
        height: 44px;
        max-width: 160px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-card {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.course-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Animations */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Section Dividers */
.courses::before,
.pricing::before,
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 3;
}

.faq {
    padding: 100px 0;
    background: #0b0a06;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='asphaltNoise'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='3' seed='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23asphaltNoise)' opacity='0.25'/%3E%3C/svg%3E"),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent calc(50% - 60px),
            rgba(255, 255, 255, 0.25) calc(50% - 60px),
            rgba(255, 255, 255, 0.25) calc(50% - 40px),
            transparent calc(50% - 40px),
            transparent calc(50% - 20px),
            rgba(255, 255, 255, 0.25) calc(50% - 20px),
            rgba(255, 255, 255, 0.25) calc(50%),
            transparent calc(50%),
            transparent calc(50% + 20px),
            rgba(255, 255, 255, 0.25) calc(50% + 20px),
            rgba(255, 255, 255, 0.25) calc(50% + 40px),
            transparent calc(50% + 40px),
            transparent calc(50% + 60px)
        );
    background-size: 80px 80px, 100% 100%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    z-index: 3;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq .section-header h2,
.faq .section-header .section-lead {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid var(--primary-color);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.98);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

/* ===== PRIORITÄT 1: GLASMORPHISM CARD SYSTEM ===== */
.card-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.card-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.card-glass > * {
    position: relative;
    z-index: 1;
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.card-glass.card-with-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-glass ul li {
    color: rgba(255, 255, 255, 0.9);
}

.card-glass p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== PRIORITÄT 2: SVG ICON SYSTEM ===== */
.icon-feature {
    width: 120px;
    height: 120px;
    margin: 1rem auto 1.5rem;
    color: #ff6b35;
    stroke: #ff6b35;
    filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.2));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    display: block;
    position: relative;
    z-index: 2;
}

.card-glass:hover .icon-feature {
    transform: scale(1.08) rotate(-5deg);
    filter: drop-shadow(0 8px 20px rgba(255, 107, 53, 0.4));
}

.icon-feature.icon-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-glass:hover .icon-feature.icon-float {
    animation: none;
    transform: scale(1.08) rotate(-5deg);
}

/* ===== PRIORITÄT 3: CLIP-PATH BUTTON SYSTEM ===== */
.btn-clip {
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.9rem 2.5rem;
}

.btn-clip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.btn-clip > * {
    position: relative;
    z-index: 1;
}

.btn-clip.btn-clip-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: var(--white);
    border: none;
}

.btn-clip.btn-clip-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35);
}

.btn-clip.btn-clip-outline {
    background: transparent;
    border: 2px solid #ff9966;
    color: #ff9966;
}

.btn-clip.btn-clip-outline:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.2);
}

.btn-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-clip:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   HERO CARD - Visitenkarte Slide-in Animation
   ============================================ */

.hero-card {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateX(calc(100% - 60px)) translateY(-50%);
    width: 320px;
    background: #0f172a;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-right: none;
    border-radius: 16px 0 0 16px;
    box-shadow: -8px 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-card:hover,
.hero-card.hero-card-open {
    transform: translateX(0) translateY(-50%);
}

.hero-card-content {
    flex: 1;
    padding: 24px 20px;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
}

.hero-card:hover .hero-card-content,
.hero-card.hero-card-open .hero-card-content {
    opacity: 1;
}

.hero-card-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.hero-card-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.hero-card-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-card-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.1);
}

.hero-card-link:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    transform: translateX(4px);
}

.hero-card-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-card-link[href*="wa.me"] svg {
    fill: currentColor;
    stroke: none;
}

.hero-card-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-card-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 8px;
    background: #1b1420;
    border-radius: 16px 0 0 16px;
    width: 60px;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 1px 0 0 rgba(255, 107, 53, 0.25);
}

/* hero-card-text wurde entfernt, da im eingeklappten Zustand nur Icons sichtbar sein sollen */

.hero-card-tab {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    color: #ff6b35;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-card-tab:hover {
    background: rgba(255, 107, 53, 0.35);
    border-color: rgba(255, 107, 53, 0.5);
    transform: scale(1.05);
}

.hero-card-tab svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-card-tab[title="Öffnungszeiten"] svg {
    stroke: currentColor;
}

.hero-card:hover .hero-card-text {
    opacity: 0;
}

/* Öffnungszeiten Styling */
.hero-card-times {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-card-time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 6px;
}

.hero-card-time-day {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff6b35;
    min-width: 40px;
}

.hero-card-time-hours {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
}

/* Responsive für kleinere Bildschirme */
@media (max-width: 1024px) {
    .hero-card {
        width: 280px;
        transform: translateX(calc(100% - 50px)) translateY(-50%);
    }

    .hero-card-title {
        font-size: 1.1rem;
    }

    .hero-card-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-card {
        position: static;
        width: 100%;
        max-width: 100%;
        transform: none !important;
        border-radius: 16px;
        border-right: 1px solid rgba(255, 107, 53, 0.3);
        margin: 30px 0 0 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .hero-card:hover {
        transform: none !important;
    }

    .hero-card-content {
        opacity: 1;
    }

    .hero-card-tabs {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-card {
        margin: 20px auto;
    }

    .hero-card-title {
        font-size: 1rem;
    }

    .hero-card-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Mobile-only: Visitenkarte komplett ausblenden */
@media (max-width: 767px) {
    .hero-card {
        display: none !important;
    }
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(11, 10, 6, 0.98) 0%, rgba(26, 25, 23, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #ff6b35;
    z-index: 10000;
    animation: slideUp 0.4s ease-out;
}

/* Form Alert Messages */
.form-alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: slideDown 0.3s ease-out;
}

.form-alert-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-left: 4px solid #22c55e;
    color: #22c55e;
}

.form-alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-left: 4px solid #ef4444;
    color: #ef4444;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookie-banner.cookie-banner-hide {
    animation: slideDown 0.3s ease-in forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
}

.cookie-banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    border: none;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.cookie-btn-info {
    background: transparent;
    color: #ff9966;
    border: 2px solid #ff9966;
}

.cookie-btn-info:hover {
    background: #ff6b35;
    color: #ffffff;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}