* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 86px 0;
}

.section-panel {
    position: relative;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--primary), #1e293b);
    display: grid;
    place-items: center;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(28deg);
}

.brand-mark::before {
    left: 12px;
}

.brand-mark::after {
    right: 12px;
}

.road-line {
    width: 4px;
    height: 32px;
    border-radius: 99px;
    background: repeating-linear-gradient(
        to bottom,
        var(--secondary) 0 7px,
        transparent 7px 13px
    );
    z-index: 1;
}

.brand strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.brand small {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    margin-top: -2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 999px;
    transition: 0.25s ease;
}

.site-nav a:hover {
    color: var(--primary);
    background: #e2e8f0;
}

.site-nav .nav-cta {
    background: var(--secondary);
    color: #111827;
    box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.site-nav .nav-cta:hover {
    background: #fbbf24;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 99px;
    transition: 0.25s ease;
}

.hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.2), transparent 34%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.18), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    overflow: hidden;
    padding: 96px 0;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 48px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.14);
}

.hero h1 {
    margin-top: 22px;
    font-size: clamp(2.6rem, 7vw, 5.7rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
    color: var(--primary);
    max-width: 760px;
}

.hero-text {
    margin-top: 24px;
    color: #475569;
    font-size: 1.12rem;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
}

.btn-primary:hover {
    background: #1e293b;
}

.btn-outline {
    border-color: rgba(15, 23, 42, 0.18);
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary);
}

.btn-outline:hover {
    background: #fff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.full-width {
    width: 100%;
}

.hero-stats {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 620px;
}

.hero-stats div {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 16px;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.hero-stats span {
    color: #64748b;
    font-size: 0.88rem;
}

.hero-visual {
    min-height: 560px;
    display: grid;
    place-items: center;
}

.dashboard-card {
    width: min(480px, 100%);
    aspect-ratio: 0.82;
    border-radius: 42px;
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.98)),
        var(--primary);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.32);
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 8px solid rgba(255, 255, 255, 0.5);
}

.dashboard-card::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.windshield {
    height: 52%;
    border-radius: 32px;
    background:
        linear-gradient(to bottom, rgba(14, 165, 233, 0.28), transparent),
        linear-gradient(135deg, #1e293b, #020617);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.road {
    position: absolute;
    left: 50%;
    bottom: -8%;
    width: 62%;
    height: 92%;
    transform: translateX(-50%) perspective(120px) rotateX(38deg);
    background:
        linear-gradient(90deg, transparent 0 44%, rgba(255,255,255,0.95) 44% 47%, transparent 47% 53%, rgba(255,255,255,0.95) 53% 56%, transparent 56%),
        linear-gradient(to bottom, #475569, #111827);
    clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
}

.road span {
    position: absolute;
    left: 50%;
    width: 5px;
    height: 34px;
    background: var(--secondary);
    transform: translateX(-50%);
    border-radius: 99px;
    animation: roadMove 1.5s linear infinite;
}

.road span:nth-child(1) {
    top: 8%;
}

.road span:nth-child(2) {
    top: 38%;
    animation-delay: 0.25s;
}

.road span:nth-child(3) {
    top: 68%;
    animation-delay: 0.5s;
}

@keyframes roadMove {
    0% {
        transform: translate(-50%, -28px) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 82px) scale(1.15);
        opacity: 0;
    }
}

.steering-wrap {
    display: grid;
    place-items: center;
    height: 42%;
}

.steering-wheel {
    width: 172px;
    height: 172px;
    border: 18px solid #0f172a;
    border-radius: 50%;
    background: #f8fafc;
    position: relative;
    box-shadow:
        inset 0 0 0 10px #e2e8f0,
        0 22px 44px rgba(0, 0, 0, 0.35);
}

.steering-wheel::before,
.steering-wheel::after,
.steering-wheel span {
    content: "";
    position: absolute;
    background: #0f172a;
    border-radius: 999px;
}

.steering-wheel::before {
    width: 18px;
    height: 68px;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
}

.steering-wheel::after {
    width: 64px;
    height: 16px;
    left: 20px;
    top: 72px;
    transform: rotate(28deg);
}

.steering-wheel span {
    width: 64px;
    height: 16px;
    right: 20px;
    top: 72px;
    transform: rotate(-28deg);
}

.lesson-ticket,
.pass-badge {
    position: absolute;
    background: #fff;
    color: var(--primary);
    border-radius: 22px;
    padding: 14px 16px;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.lesson-ticket {
    left: 18px;
    bottom: 34px;
    width: 185px;
}

.lesson-ticket small,
.lesson-ticket span {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
}

.lesson-ticket strong {
    display: block;
    margin: 3px 0;
}

.pass-badge {
    right: 18px;
    top: 72px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.pass-badge span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #fff;
}

.quick-contact {
    transform: translateY(-50%);
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.quick-contact-grid div {
    padding: 22px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.quick-contact-grid div:last-child {
    border-right: 0;
}

.quick-contact-grid span {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.quick-contact-grid a,
.quick-contact-grid strong {
    display: block;
    color: var(--primary);
    margin-top: 5px;
    font-size: 1rem;
    word-break: break-word;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.split-content h2,
.final-cta h2 {
    margin-top: 16px;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.section-heading p,
.split-content p,
.final-cta p {
    margin-top: 16px;
    color: #64748b;
    font-size: 1.03rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    background: #fff;
    border-radius: 30px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
    min-height: 340px;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.service-card.featured {
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.22), transparent 34%),
        var(--primary);
    color: #fff;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #f1f5f9;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 24px;
}

.featured .service-icon {
    background: var(--secondary);
    color: #111827;
}

.service-card h3 {
    font-size: 1.25rem;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
}

.featured p {
    color: rgba(255, 255, 255, 0.78);
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
}

.service-card li {
    color: #475569;
    font-size: 0.92rem;
    padding: 8px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.featured li {
    color: rgba(255, 255, 255, 0.86);
    border-top-color: rgba(255, 255, 255, 0.12);
}

.service-card li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 900;
    margin-right: 8px;
}

.split-section {
    background: #fff;
}

.split-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 52px;
    align-items: center;
}

.roadmap-card {
    min-height: 460px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.24), transparent 30%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.18), transparent 32%),
        #f1f5f9;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

.route-line {
    position: absolute;
    inset: 68px 70px;
    border: 8px dashed rgba(15, 23, 42, 0.25);
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 80px 0 0;
    transform: rotate(8deg);
}

.map-pin {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50% 50% 50% 8px;
    transform: rotate(-45deg);
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
    z-index: 2;
}

.map-pin::span {
    transform: rotate(45deg);
}

.pin-one {
    left: 62px;
    bottom: 76px;
}

.pin-two {
    left: 46%;
    top: 80px;
    background: var(--secondary);
    color: #111827;
}

.pin-three {
    right: 64px;
    bottom: 110px;
    background: var(--accent);
}

.mini-car {
    position: absolute;
    left: 46%;
    top: 48%;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #fff;
    color: var(--primary);
    display: grid;
    place-items: center;
    transform: rotate(90deg);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    font-size: 1.5rem;
    z-index: 3;
}

.trust-list {
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.trust-list div {
    display: grid;
    gap: 4px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 18px;
    border-radius: 22px;
}

.trust-list strong {
    color: var(--primary);
}

.trust-list span {
    color: #64748b;
}

.process-section {
    background:
        linear-gradient(180deg, #f8fafc, #eef2ff);
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.process-step {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.process-step::after {
    content: "";
    position: absolute;
    right: -28px;
    top: 28px;
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 50%;
}

.process-step span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    margin-bottom: 22px;
}

.process-step h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.process-step p {
    color: #64748b;
    font-size: 0.95rem;
}

.showcase-section {
    background: #fff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: minmax(220px, auto);
    gap: 18px;
}

.showcase-card {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.showcase-card.large {
    grid-row: span 2;
    background:
        radial-gradient(circle at right, rgba(245, 158, 11, 0.18), transparent 36%),
        #f8fafc;
}

.showcase-card.dark {
    background: var(--primary);
    color: #fff;
}

.showcase-label {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.dark .showcase-label {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.showcase-card h3 {
    margin-top: 18px;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.dark h3 {
    color: #fff;
}

.showcase-card p {
    margin-top: 12px;
    color: #64748b;
}

.dark p {
    color: rgba(255, 255, 255, 0.78);
}

.parking-lines {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 28px;
    height: 190px;
    border-radius: 26px;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.08) 1px, transparent 1px),
        linear-gradient(#e2e8f0, #cbd5e1);
    background-size: 64px 100%;
    border: 3px solid rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.parking-lines::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 58px;
    border-radius: 18px;
    background: var(--secondary);
    left: 52%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.parking-lines span {
    position: absolute;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.parking-lines span:nth-child(1) {
    left: 28%;
}

.parking-lines span:nth-child(2) {
    left: 50%;
}

.parking-lines span:nth-child(3) {
    left: 72%;
}

.testimonials-section {
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.16), transparent 30%),
        linear-gradient(180deg, #f8fafc, #eef2ff);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.stars {
    color: var(--secondary);
    letter-spacing: 0.08em;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #334155;
    font-size: 1.02rem;
    margin-bottom: 22px;
}

.testimonial-card strong {
    display: block;
    color: var(--primary);
}

.testimonial-card span {
    color: #64748b;
    font-size: 0.9rem;
}

.faq-section {
    background: #fff;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: #f8fafc;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--primary);
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-item button span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: #111827;
    flex: 0 0 auto;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.faq-answer p {
    padding: 0 22px 20px;
    color: #64748b;
}

.faq-item.active .faq-answer {
    max-height: 180px;
}

.faq-item.active button span {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.final-cta {
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.18), transparent 32%),
        var(--primary);
    color: #fff;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 42px;
    align-items: center;
}

.final-cta .section-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
}

.final-cta h2 {
    color: #fff;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 670px;
}

.contact-card {
    background: #fff;
    color: var(--primary);
    border-radius: 32px;
    padding: 26px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.contact-card h3 {
    margin-bottom: 18px;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.contact-row {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-row span {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: #f1f5f9;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.contact-row small {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
}

.contact-row strong {
    display: block;
    word-break: break-word;
}

.contact-card .btn {
    margin-top: 18px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
    transition: 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
}

.site-footer {
    background: #020617;
    color: rgba(255, 255, 255, 0.76);
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.92rem;
}

.footer-inner a {
    color: #fff;
    font-weight: 800;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 84px;
        display: grid;
        gap: 4px;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 24px;
        padding: 14px;
        box-shadow: 0 22px 54px rgba(15, 23, 42, 0.16);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.25s ease;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 13px 14px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-grid,
    .split-grid,
    .final-cta-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 72px 0 120px;
    }

    .hero-visual {
        min-height: auto;
    }

    .dashboard-card {
        max-width: 430px;
    }

    .service-grid,
    .process-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase-card.large {
        grid-column: span 2;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .quick-contact-grid div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 680px) {
    .section {
        padding: 64px 0;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 16px;
    }

    .brand strong {
        font-size: 0.92rem;
    }

    .brand small {
        font-size: 0.72rem;
    }

    .hero {
        padding-top: 52px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 15vw, 4rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .dashboard-card {
        border-radius: 32px;
        padding: 20px;
        border-width: 6px;
    }

    .steering-wheel {
        width: 132px;
        height: 132px;
        border-width: 14px;
    }

    .lesson-ticket {
        width: 160px;
        bottom: 22px;
    }

    .pass-badge {
        top: 56px;
        font-size: 0.86rem;
    }

    .service-grid,
    .process-track,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card.large {
        grid-column: span 1;
        min-height: 440px;
    }

    .parking-lines {
        height: 170px;
    }

    .roadmap-card {
        min-height: 360px;
    }

    .route-line {
        inset: 58px 48px;
    }

    .pin-one {
        left: 36px;
    }

    .pin-three {
        right: 36px;
    }

    .final-cta-grid {
        gap: 28px;
    }

    .contact-card {
        padding: 20px;
        border-radius: 26px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        min-height: 48px;
        font-size: 0.9rem;
    }
}