@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* Aspire Horizon shared site styles */
:root {
  --blue: #30258F;
  --navy: #21186F;
  --gold: #E3A316;
  --soft-gold: #F4C44E;
  --white: #FFFFFF;
  --light: #F7F8FC;
  --text: #25263A;
  --muted: #6E7180;
  --green: #25D366;
  --line: #E5E7F0;
  --radius: 18px;
  --shadow: 0 14px 35px rgba(33, 24, 111, .10);
  --shadow-hover: 0 20px 45px rgba(33, 24, 111, .17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--white); color: var(--text); font-family: Inter, Arial, sans-serif; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--soft-gold); outline-offset: 3px; }

.skip-link { position: fixed; top: -80px; left: 16px; z-index: 200; padding: 10px 16px; border-radius: 0 0 8px 8px; background: var(--navy); color: var(--white); font-weight: 700; }
.skip-link:focus { top: 0; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-soft { background: var(--light); }
.eyebrow { margin: 0 0 10px; color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); font-family: Poppins, Arial, sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.35rem, 5vw, 4.7rem); font-weight: 800; letter-spacing: -.045em; }
h2 { font-size: clamp(1.85rem, 3.2vw, 3rem); font-weight: 700; letter-spacing: -.035em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; }
.lead { max-width: 650px; color: var(--muted); font-size: 1.05rem; }
.section-heading { display: grid; gap: 11px; max-width: 675px; margin-bottom: 42px; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
.text-gold { color: var(--gold); }
.muted { color: var(--muted); }

/* Shared buttons */
.btn-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 27px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 49px; padding: 12px 21px; border: 1px solid transparent; border-radius: 10px; font-weight: 700; line-height: 1.3; transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 10px 25px rgba(227, 163, 22, .25); }
.btn-primary:hover { background: var(--soft-gold); box-shadow: 0 14px 28px rgba(227, 163, 22, .35); }
.btn-secondary { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.06); color: var(--white); }
.btn-secondary:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.btn-outline { border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-small { min-height: 41px; padding: 9px 15px; font-size: .87rem; }
.arrow-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 700; font-size: .92rem; }
.arrow-link::after { content: '>'; font-size: 1.15em; transition: transform .2s; }
.arrow-link:hover::after { transform: translateX(4px); }

/* Header and navigation */
.topbar { background: var(--navy); color: rgba(255,255,255,.92); font-size: .78rem; }
.topbar-inner { display: flex; min-height: 37px; align-items: center; justify-content: space-between; gap: 15px; }
.topbar-list { display: flex; align-items: center; gap: 19px; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar-item svg, .social-link svg { width: 15px; height: 15px; fill: currentColor; }
.topbar-social { color: var(--soft-gold); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.98); border-bottom: 1px solid transparent; transition: box-shadow .25s ease, border-color .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 7px 19px rgba(33,24,111,.07); }
.nav-wrap { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; }
/* Logo */


/* Logo Container */
.site-logo{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Desktop */
.site-logo-img{
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Laptop */
@media (max-width: 1000px){
    .site-logo-img{
        width: 210px;
    }
}

/* Tablet */
@media (max-width: 992px){
    .site-logo-img{
        width: 220px;
    }
}

/* Mobile */
@media (max-width: 768px){
    .site-logo-img{
        width: 200px;
    }

    .site-logo{
        min-width: 200px;
    }
}

/* Small Mobile */
@media (max-width: 480px){
    .site-logo-img{
        width: 180px;
    }
}
.main-nav { display: flex; align-items: center; gap: 25px; }
.main-nav a:not(.btn) { position: relative; padding: 8px 0; color: #46455a; font-size: .9rem; font-weight: 600; }
.main-nav a:not(.btn)::after { position: absolute; bottom: 2px; left: 0; width: 0; height: 2px; background: var(--gold); content: ''; transition: width .25s ease; }
.main-nav a:not(.btn):hover, .main-nav a:not(.btn).active { color: var(--blue); }
.main-nav a:not(.btn):hover::after, .main-nav a:not(.btn).active::after { width: 100%; }
.nav-toggle { display: none; width: 46px; height: 44px; padding: 9px; border: 0; background: transparent; color: var(--blue); }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px auto; border-radius: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: var(--navy); color: var(--white); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroScale 14s ease-out both; }
.hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,14,79,.93) 0%, rgba(33,24,111,.80) 47%, rgba(33,24,111,.30) 100%); content: ''; }
.hero-content { position: relative; z-index: 1; max-width: 745px; padding: 82px 0 94px; }
.hero h1 { max-width: 700px; color: var(--white); }
.hero .lead { max-width: 670px; margin-top: 21px; color: rgba(255,255,255,.86); font-size: 1.07rem; }
.hero .eyebrow { color: var(--soft-gold); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 29px; }
.trust-badges span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.95); font-size: .82rem; font-weight: 600; }
.trust-badges span::before { width: 17px; height: 17px; border: 1px solid var(--soft-gold); border-radius: 50%; color: var(--soft-gold); content: '+'; font-size: 15px; line-height: 15px; text-align: center; }
.inner-hero { min-height: 360px; }
.inner-hero .hero-content { padding: 76px 0; }
.inner-hero h1 { font-size: clamp(2.3rem, 4.5vw, 4rem); }

/* Feature and content layouts */
.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1fr); gap: clamp(38px, 7vw, 94px); align-items: center; }
.image-frame { min-height: 390px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.check-list { display: grid; gap: 14px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; color: #4d4e60; }
.check-list li::before { position: absolute; top: 5px; left: 0; display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: #FDF2D4; color: var(--blue); content: '✓'; font-size: .74rem; font-weight: 800; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.info-card { padding: 29px 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 5px 16px rgba(33,24,111,.035); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.info-card:hover { transform: translateY(-7px); border-color: rgba(227,163,22,.55); box-shadow: var(--shadow-hover); }
.icon { display: grid; width: 48px; height: 48px; margin-bottom: 19px; place-items: center; border-radius: 14px; background: #F3F1FF; color: var(--blue); }
.icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.icon.gold { background: #FFF5DD; color: #B77900; }
.info-card p { margin: 10px 0 18px; color: var(--muted); font-size: .91rem; }
.support-chip { display: flex; min-height: 100%; align-items: center; gap: 14px; padding: 19px 16px; border-bottom: 2px solid transparent; background: var(--white); color: var(--text); font-weight: 700; box-shadow: 0 4px 12px rgba(33,24,111,.04); transition: border-color .25s ease, transform .25s ease; }
.support-chip:hover { transform: translateY(-4px); border-color: var(--gold); }
.support-chip .mini-icon { display: grid; flex: 0 0 37px; width: 37px; height: 37px; place-items: center; border-radius: 11px; background: #F3F1FF; color: var(--blue); font-size: .82rem; }

/* Steps, principles, testimonials */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { position: absolute; top: 32px; right: 12%; left: 12%; height: 1px; border-top: 1px dashed #C9C6E7; content: ''; }
.step { position: relative; z-index: 1; }
.step-number { display: grid; width: 64px; height: 64px; margin-bottom: 18px; place-items: center; border: 7px solid var(--light); border-radius: 50%; background: var(--blue); color: var(--white); font-family: Poppins, sans-serif; font-weight: 700; }
.step:nth-child(even) .step-number { background: var(--gold); color: var(--navy); }
.step p { max-width: 220px; margin-top: 9px; color: var(--muted); font-size: .9rem; }
.principles { padding: 70px 0; background: var(--navy); color: var(--white); }
.principle-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.principle { padding-right: 17px; border-right: 1px solid rgba(255,255,255,.17); }
.principle:last-child { border-right: 0; }
.principle strong { display: block; color: var(--soft-gold); font-family: Poppins, sans-serif; font-size: 1.14rem; }
.principle p { margin: 7px 0 0; color: rgba(255,255,255,.75); font-size: .85rem; }
.quote { position: relative; padding: 31px 28px 28px; border-top: 4px solid var(--gold); background: var(--white); box-shadow: var(--shadow); }
.quote::before { color: #E7E5F7; content: '“'; font-family: Georgia, serif; font-size: 5rem; line-height: .4; }
.quote p { margin: 8px 0 18px; color: #505165; font-size: .95rem; font-style: italic; }
.quote strong { color: var(--navy); font-size: .88rem; }
.quote small { display: block; color: var(--muted); font-size: .76rem; }

/* Accordion */
.faq-list { display: grid; gap: 11px; max-width: 875px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 11px; background: var(--white); overflow: hidden; }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 25px; padding: 19px 22px; border: 0; background: transparent; color: var(--navy); font-weight: 700; text-align: left; }
.faq-question span:last-child { display: grid; flex: 0 0 24px; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: #F3F1FF; color: var(--blue); font-size: 1.25rem; line-height: 1; transition: transform .25s ease, background-color .25s ease; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 22px 19px; color: var(--muted); font-size: .92rem; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

/* CTA, footer, floating elements */
.cta-band { overflow: hidden; background: var(--blue); color: var(--white); }
.cta-content { position: relative; padding: 66px 0; }
.cta-content::after { position: absolute; top: -135px; right: -90px; width: 355px; height: 355px; border: 55px solid rgba(244,196,78,.14); border-radius: 50%; content: ''; }
.cta-content h2 { position: relative; z-index: 1; max-width: 710px; color: var(--white); }
.cta-content p { position: relative; z-index: 1; max-width: 585px; margin: 14px 0 0; color: rgba(255,255,255,.79); }
.cta-content .btn-row { position: relative; z-index: 1; }
.site-footer { background: #17134C; color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1.15fr 1.25fr; gap: 36px; padding: 65px 0 45px; }
.footer-logo { width: 225px; max-width: 100%; margin-bottom: 16px; padding: 8px; border-radius: 8px; background: var(--white); }
.footer-about { max-width: 300px; font-size: .87rem; }
.footer-title { margin: 5px 0 15px; color: var(--white); font-family: Poppins, sans-serif; font-size: .98rem; }
.footer-links { display: grid; gap: 7px; padding: 0; margin: 0; list-style: none; font-size: .85rem; }
.footer-links a:hover { color: var(--soft-gold); }
.footer-contact { font-size: .83rem; line-height: 1.55; }
.footer-contact a:hover { color: var(--soft-gold); }
.socials { display: flex; gap: 10px; margin-top: 19px; }
.social-link { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--white); transition: transform .25s ease, background-color .25s ease; }
.social-link:hover { transform: translateY(-3px); background: var(--gold); color: var(--navy); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: .78rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 17px; }
.legal-links a:hover { color: var(--soft-gold); }
.whatsapp-float { position: fixed; right: 25px; bottom: 25px; z-index: 90; display: grid; width: 55px; height: 55px; place-items: center; border: 0; border-radius: 50%; background: var(--green); color: var(--white); box-shadow: 0 9px 25px rgba(37,211,102,.38); transition: transform .25s ease; animation: pulse 2.3s infinite; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }
.whatsapp-float::before { position: absolute; right: 65px; width: max-content; padding: 7px 10px; border-radius: 6px; background: var(--navy); color: var(--white); content: attr(data-tooltip); font-size: .76rem; font-weight: 700; opacity: 0; pointer-events: none; transform: translateX(6px); transition: opacity .2s ease, transform .2s ease; }
.whatsapp-float:hover::before, .whatsapp-float:focus::before { opacity: 1; transform: translateX(0); }
.back-to-top { position: fixed; right: 29px; bottom: 94px; z-index: 80; display: grid; width: 45px; height: 45px; place-items: center; border: 0; border-radius: 50%; background: var(--navy); color: var(--white); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(13px); transition: opacity .25s ease, transform .25s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Services and shadow teacher page */
.service-detail { display: grid; grid-template-columns: 64px 1fr auto; align-items: start; gap: 23px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 0; }
.service-detail .icon { width: 57px; height: 57px; margin: 0; }
.service-detail p { margin: 8px 0 12px; color: var(--muted); font-size: .92rem; }
.inline-benefits { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 0; margin: 0; list-style: none; color: #56576A; font-size: .83rem; font-weight: 600; }
.inline-benefits li::before { margin-right: 6px; color: var(--gold); content: '+'; font-size: 1.1em; }
.process-list { counter-reset: process; display: grid; gap: 0; margin: 26px 0 0; }
.process-item { position: relative; padding: 0 0 25px 61px; border-left: 1px dashed #C9C6E7; }
.process-item:last-child { padding-bottom: 0; border-left-color: transparent; }
.process-item::before { position: absolute; top: 0; left: -17px; display: grid; width: 33px; height: 33px; place-items: center; border-radius: 50%; background: var(--blue); color: var(--white); content: counter(process); counter-increment: process; font-size: .8rem; font-weight: 800; }
.process-item:nth-child(even)::before { background: var(--gold); color: var(--navy); }
.process-item h3 { font-size: 1rem; }
.process-item p { margin: 5px 0 0; color: var(--muted); font-size: .9rem; }
.benefit-band { background: linear-gradient(105deg, #F7F8FC 0%, #F7F8FC 50%, #EEEAFE 50%, #EEEAFE 100%); }
.benefit-panel { padding: 44px; background: var(--white); box-shadow: var(--shadow); }

/* Contact */
.contact-cards { align-items: stretch; }
.contact-card { padding: 25px; border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 22px rgba(33,24,111,.07); }
.contact-card .icon { margin-bottom: 15px; }
.contact-card h3 { font-size: 1rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: .88rem; overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--blue); }
.contact-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(330px,.95fr); gap: 48px; align-items: start; }
.form-shell { padding: 34px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label, .consent-label { color: #46475B; font-size: .86rem; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 13px; border: 1px solid #DADCE7; border-radius: 8px; background: #FEFEFF; color: var(--text); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 126px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(48,37,143,.1); }
.form-field input.invalid, .form-field select.invalid, .form-field textarea.invalid { border-color: #B3261E; }
.field-error { min-height: 16px; color: #B3261E; font-size: .74rem; font-weight: 600; }
.consent-wrap { margin: 6px 0 15px; }
.consent-label { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.consent-label input { width: 17px; height: 17px; margin-top: 4px; accent-color: var(--blue); }
.form-notice { min-height: 20px; margin-top: 13px; color: var(--blue); font-size: .83rem; font-weight: 600; }
.contact-aside { display: grid; gap: 22px; }
.aside-block { padding: 29px; border-radius: var(--radius); background: var(--light); }
.aside-block h3 { margin-bottom: 11px; }
.aside-block p { margin: 0; color: var(--muted); font-size: .9rem; }
.map-wrap { min-height: 380px; overflow: hidden; border-radius: var(--radius); background: var(--light); }
.map-wrap iframe { display: block; width: 100%; min-height: 380px; border: 0; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .62s ease, transform .62s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

@keyframes heroScale { from { transform: scale(1.04); } to { transform: scale(1); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.38), 0 9px 25px rgba(37,211,102,.38); } 50% { box-shadow: 0 0 0 12px rgba(37,211,102,0), 0 9px 25px rgba(37,211,102,.38); } }

@media (max-width: 1200px) { .main-nav { gap: 18px; } .main-nav a:not(.btn) { font-size: .84rem; } .footer-grid { gap: 26px; } }
@media (max-width: 992px) {
  .section { padding: 74px 0; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: 0; padding: 10px 20px 22px; border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 13px 22px rgba(33,24,111,.10); opacity: 0; pointer-events: none; transform: translateY(-11px); transition: opacity .25s ease, transform .25s ease; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a:not(.btn) { padding: 12px 0; font-size: .93rem; }
  .main-nav .btn { margin-top: 11px; }
  .main-nav a:not(.btn)::after { bottom: 7px; }
  .split, .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .split .image-frame { order: 2; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps { grid-template-columns: repeat(2,1fr); row-gap: 35px; }
  .steps::before { display: none; }
  .principle-grid { grid-template-columns: repeat(2,1fr); }
  .principle:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .service-detail { grid-template-columns: 57px 1fr; }
  .service-detail .btn { grid-column: 2; width: max-content; }
}
@media (max-width: 768px) {
  .container { width: min(100% - 32px, 1140px); }
  .topbar-inner { justify-content: center; }
  .topbar-list { gap: 14px; }
  .topbar-item:nth-child(2) { display: none; }
  .topbar-social { display: none; }
  .nav-wrap { min-height: 73px; }
  .brand img { width: 184px; max-height: 52px; }
  .hero { min-height: 600px; }
  .hero::after { background: linear-gradient(90deg, rgba(20,14,79,.91), rgba(33,24,111,.65)); }
  .hero-content { padding: 70px 0 78px; }
  .inner-hero { min-height: 320px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .image-frame, .image-frame img { min-height: 330px; }
  .benefit-band { background: var(--light); }
  .benefit-panel { padding: 30px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .cta-content { padding: 54px 0; }
  .contact-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 576px) {
  .section { padding: 59px 0; }
  .topbar { font-size: .72rem; }
  .topbar-list { gap: 11px; }
  .topbar-item svg { width: 13px; }
  .topbar-item:nth-child(3) { display: none; }
  .brand img { width: 166px; }
  .hero { min-height: 590px; }
  .hero-content { padding: 59px 0 70px; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.25rem); }
  .hero .lead { font-size: .96rem; }
  .btn { width: 100%; }
  .btn-row { gap: 10px; }
  .trust-badges { display: grid; gap: 9px; }
  .grid-2, .grid-3, .grid-4, .contact-cards { grid-template-columns: 1fr; }
  .steps, .principle-grid { grid-template-columns: 1fr; }
  .principle { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .principle:last-child { padding-bottom: 0; border-bottom: 0; }
  .step p { max-width: none; }
  .service-detail { grid-template-columns: 49px 1fr; gap: 15px; }
  .service-detail .icon { width: 46px; height: 46px; }
  .service-detail .btn { width: 100%; }
  .inline-benefits { display: grid; gap: 4px; }
  .form-shell { padding: 23px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .whatsapp-float { right: 17px; bottom: 17px; width: 52px; height: 52px; }
  .back-to-top { right: 21px; bottom: 79px; width: 41px; height: 41px; }
}
@media (max-width: 480px) { .container { width: min(100% - 26px, 1140px); } .faq-question { padding: 16px; font-size: .9rem; } .faq-answer p { padding: 0 16px 16px; } .map-wrap, .map-wrap iframe { min-height: 300px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }