/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --blue:#197bc3;
  --blue-dark:#124185;
  --black:#000;
  --white:#fff;
  --gray-50:#f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-300:#cbd5e1;
  --gray-600:#475569;
  --gray-700:#334155;
  --gray-800:#1e293b;
  --shadow:0 1px 3px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.06);
  --shadow-md:0 4px 6px rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:0 10px 15px rgba(0,0,0,.1),0 4px 6px rgba(0,0,0,.05);
  --radius:8px;
  --radius-lg:12px;
  --transition:0.25s ease;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;color:var(--gray-800);line-height:1.6;overflow-x:hidden;background:var(--white)}
img{max-width:100%;height:auto;display:block}
a{color:var(--blue);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--blue-dark)}
ul{list-style:none}
h1,h2,h3,h4,h5,h6{line-height:1.2;font-weight:700;color:var(--gray-800)}
h1{font-size:clamp(2rem,5vw,3.25rem)}
h2{font-size:clamp(1.6rem,4vw,2.5rem)}
h3{font-size:clamp(1.2rem,3vw,1.5rem)}
p{color:var(--gray-600)}

/* ===== UTILITIES ===== */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.25rem}
.section{padding:5rem 0}
.section--gray{background:var(--gray-50)}
.section--blue{background:var(--blue);color:var(--white)}
.section--blue h2,.section--blue h3,.section--blue p,.section--blue li{color:var(--white)}
.section--dark{background:var(--blue-dark);color:var(--white)}
.section--dark h2,.section--dark h3,.section--dark p{color:var(--white)}
.text-center{text-align:center}
.text-white{color:var(--white)!important}
.section-label{display:inline-block;font-size:.875rem;font-weight:600;color:var(--blue);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.5rem}
.section-title{margin-bottom:1rem}
.section-subtitle{font-size:1.125rem;color:var(--gray-600);max-width:640px;margin:0 auto 2.5rem}
.grid{display:grid;gap:2rem}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:1024px){.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .section{padding:3.5rem 0}
}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.875rem 2rem;border-radius:var(--radius);font-weight:600;font-size:1rem;border:2px solid transparent;cursor:pointer;transition:all var(--transition);text-align:center;justify-content:center;line-height:1.2}
.btn--primary{background:var(--blue);color:var(--white);border-color:var(--blue)}
.btn--primary:hover{background:var(--blue-dark);border-color:var(--blue-dark);color:var(--white);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn--secondary{background:var(--white);color:var(--blue);border-color:var(--blue)}
.btn--secondary:hover{background:var(--blue);color:var(--white);transform:translateY(-1px)}
.btn--white{background:var(--white);color:var(--blue-dark);border-color:var(--white)}
.btn--white:hover{background:transparent;color:var(--white);transform:translateY(-1px)}
.btn--outline-white{background:transparent;color:var(--white);border-color:var(--white)}
.btn--outline-white:hover{background:var(--white);color:var(--blue-dark);transform:translateY(-1px)}
.btn--sm{padding:.625rem 1.25rem;font-size:.875rem}
.btn--lg{padding:1rem 2.5rem;font-size:1.125rem}
.btn--block{width:100%}
.btn-group{display:flex;flex-wrap:wrap;gap:1rem}
@media(max-width:480px){.btn-group{flex-direction:column}.btn-group .btn{width:100%}}

/* ===== HEADER / NAV ===== */
.header{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--white);box-shadow:var(--shadow);transition:box-shadow var(--transition)}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.header__logo{font-size:1.35rem;font-weight:800;color:var(--blue-dark);letter-spacing:-.02em;flex-shrink:0}
.header__logo span{color:var(--blue)}
.header__logo img{height:48px;width:auto;max-width:180px}
@media(max-width:480px){.header__logo img{height:36px;max-width:140px}}
.nav{display:flex;align-items:center;gap:2rem}
.nav__link{font-size:.9375rem;font-weight:500;color:var(--gray-700);position:relative;padding:.25rem 0}
.nav__link:hover,.nav__link--active{color:var(--blue)}
.nav__link::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--blue);transition:width var(--transition)}
.nav__link:hover::after,.nav__link--active::after{width:100%}
.nav__cta{margin-left:.5rem}
.nav__dropdown{position:relative}
.nav__dropdown-toggle{cursor:pointer;display:flex;align-items:center;gap:.25rem}
.nav__dropdown-toggle::after{content:'';border:solid var(--gray-700);border-width:0 2px 2px 0;display:inline-block;padding:2.5px;transform:rotate(45deg);transition:transform var(--transition)}
.nav__dropdown:hover .nav__dropdown-toggle::after{transform:rotate(-135deg)}
.nav__dropdown-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%);min-width:240px;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:.5rem 0;opacity:0;visibility:hidden;transition:all var(--transition);margin-top:.75rem}
.nav__dropdown:hover .nav__dropdown-menu{opacity:1;visibility:visible;margin-top:.5rem}
.nav__dropdown-menu a{display:block;padding:.625rem 1.25rem;font-size:.9rem;color:var(--gray-700);font-weight:500;white-space:nowrap}
.nav__dropdown-menu a:hover{background:var(--gray-50);color:var(--blue)}

/* Mobile nav */
.nav__toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:.5rem;background:none;border:none}
.nav__toggle span{width:24px;height:2px;background:var(--gray-800);transition:all var(--transition)}
@media(max-width:900px){
  .nav__toggle{display:flex}
  .nav{position:fixed;top:72px;left:0;right:0;bottom:0;flex-direction:column;background:var(--white);padding:2rem;gap:0;transform:translateX(100%);transition:transform var(--transition);overflow-y:auto;align-items:stretch}
  .nav.is-open{transform:translateX(0)}
  .nav__link,.nav__dropdown-toggle{padding:.875rem 0;font-size:1.0625rem}
  .nav__cta{margin-left:0;margin-top:1rem}
  .nav__dropdown-menu{position:static;transform:none;box-shadow:none;opacity:1;visibility:visible;margin:0;padding-left:1rem;display:none}
  .nav__dropdown.is-open .nav__dropdown-menu{display:block}
  .nav__toggle.is-active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
  .nav__toggle.is-active span:nth-child(2){opacity:0}
  .nav__toggle.is-active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
}

/* ===== HERO ===== */
.hero{padding:8rem 0 5rem;background:var(--blue-dark);color:var(--white);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:url('../images/hero-bg.jpg') center/cover no-repeat;opacity:.25}
.hero::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(18,65,133,.85) 0%,rgba(25,123,195,.75) 100%)}
.hero__inner{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;position:relative;z-index:1}
.hero__badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.15);backdrop-filter:blur(4px);padding:.5rem 1rem;border-radius:2rem;font-size:.875rem;font-weight:600;margin-bottom:1.5rem}
.hero__badge svg{width:16px;height:16px;fill:currentColor}
.hero h1{color:var(--white);margin-bottom:1rem}
.hero__subtitle{font-size:1.2rem;opacity:.9;margin-bottom:2rem;line-height:1.7;color:rgba(255,255,255,.9)}
.hero__features{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:2rem}
.hero__feature{display:inline-flex;align-items:center;gap:.5rem;font-size:.9375rem;font-weight:500}
.hero__feature svg{width:20px;height:20px;fill:#4ade80;flex-shrink:0}
.hero__phone{display:flex;align-items:center;gap:.75rem;margin-top:2rem;font-size:1.125rem;font-weight:600}
.hero__phone svg{width:24px;height:24px;fill:var(--white)}
.hero__phone a{color:var(--white)}
.hero__phone a:hover{opacity:.8}
.hero__visual{display:flex;justify-content:center;align-items:center}
.hero__card{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-lg);padding:2.5rem;text-align:center}
.hero__card-icon{width:80px;height:80px;background:rgba(255,255,255,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}
.hero__card-icon svg{width:40px;height:40px;fill:var(--white)}
.hero__card h3{color:var(--white);margin-bottom:.5rem;font-size:1.25rem}
.hero__card p{color:rgba(255,255,255,.8);font-size:.9375rem}
.hero__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}
.hero__stat{text-align:center;padding:1rem;background:rgba(255,255,255,.08);border-radius:var(--radius)}
.hero__stat-number{font-size:1.75rem;font-weight:800;color:var(--white)}
.hero__stat-label{font-size:.75rem;color:rgba(255,255,255,.7);text-transform:uppercase;letter-spacing:.05em}
@media(max-width:768px){
  .hero{padding:6.5rem 0 3.5rem}
  .hero__inner{grid-template-columns:1fr;text-align:center}
  .hero__features{justify-content:center}
  .hero__phone{justify-content:center}
  .hero__visual{margin-top:1rem}
  .btn-group{justify-content:center}
  .hero__stats{grid-template-columns:repeat(3,1fr)}
  .hero__card{padding:1.5rem}
  .hero__stat-number{font-size:1.35rem}
  .location__inner{grid-template-columns:1fr}
  .about-intro{grid-template-columns:1fr}
  .service-layout{grid-template-columns:1fr}
  .service-sidebar{position:static}
}
@media(max-width:480px){
  .hero__features{flex-direction:column;align-items:center}
  .hero__stat{padding:.5rem}
  .hero__stat-number{font-size:1.15rem}
  .hero__stat-label{font-size:.65rem}
  .container{padding:0 1rem}
  .nav__cta{font-size:.8rem;padding:.5rem 1rem}
}

/* ===== TRUST BAR ===== */
.trust-bar{background:var(--white);border-bottom:1px solid var(--gray-200);padding:1.25rem 0}
.trust-bar__inner{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:2rem}
.trust-bar__item{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:600;color:var(--gray-700)}
.trust-bar__item svg{width:20px;height:20px;fill:var(--blue)}
@media(max-width:600px){.trust-bar__inner{gap:1rem}.trust-bar__item{font-size:.8rem}}

/* ===== SERVICE CARDS ===== */
.service-card{background:var(--white);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow);border:1px solid var(--gray-200);transition:all var(--transition);text-align:center}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--blue)}
.service-card__icon{width:64px;height:64px;background:linear-gradient(135deg,var(--blue),var(--blue-dark));border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem}
.service-card__icon svg{width:32px;height:32px;fill:var(--white)}
.service-card h3{margin-bottom:.75rem;font-size:1.125rem}
.service-card p{font-size:.9375rem;margin-bottom:1.25rem;color:var(--gray-600)}
.service-card__link{font-weight:600;font-size:.9375rem;display:inline-flex;align-items:center;gap:.25rem;color:var(--blue)}
.service-card__link:hover{gap:.5rem}

/* ===== WHY CHOOSE US ===== */
.why-card{display:flex;gap:1.25rem;align-items:flex-start}
.why-card__icon{width:48px;height:48px;min-width:48px;background:var(--blue);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.why-card__icon svg{width:24px;height:24px;fill:var(--white)}
.why-card h3{margin-bottom:.375rem;font-size:1.0625rem}
.why-card p{font-size:.9375rem;color:var(--gray-600)}

/* ===== PROCESS STEPS ===== */
.process{counter-reset:step}
.process__step{text-align:center;position:relative;counter-increment:step}
.process__step::before{content:counter(step);width:56px;height:56px;border-radius:50%;background:var(--blue);color:var(--white);font-size:1.5rem;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem}
.process__step h3{margin-bottom:.5rem}
.process__step p{font-size:.9375rem;color:var(--gray-600)}

/* ===== TESTIMONIALS / CAROUSEL ===== */
.reviews-carousel{position:relative;overflow:hidden}
.reviews-track{display:flex;transition:transform .5s ease}
.reviews-slide{min-width:100%;display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;padding:0 .25rem}
@media(max-width:1024px){.reviews-slide{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.reviews-slide{grid-template-columns:1fr}.reviews-slide .testimonial:nth-child(n+2){display:none}}
.testimonial{background:var(--white);border-radius:var(--radius-lg);padding:1.75rem;box-shadow:var(--shadow);border:1px solid var(--gray-200);display:flex;flex-direction:column}
.testimonial__header{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}
.testimonial__avatar{width:40px;height:40px;min-width:40px;border-radius:50%;background:var(--blue);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1rem}
.testimonial__meta{flex:1}
.testimonial__author{font-weight:700;font-size:.9375rem;color:var(--gray-800);margin-bottom:0}
.testimonial__source{font-size:.75rem;color:var(--gray-600);display:flex;align-items:center;gap:.25rem}
.testimonial__source svg{width:14px;height:14px}
.testimonial__stars{display:flex;gap:.125rem;margin-bottom:.75rem}
.testimonial__stars svg{width:18px;height:18px;fill:#f59e0b}
.testimonial__text{font-size:.9375rem;color:var(--gray-700);line-height:1.6;flex:1}
.carousel-controls{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:2rem}
.carousel-btn{width:44px;height:44px;border-radius:50%;border:2px solid var(--gray-300);background:var(--white);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all var(--transition)}
.carousel-btn:hover{border-color:var(--blue);background:var(--blue)}
.carousel-btn:hover svg{stroke:var(--white)}
.carousel-btn svg{width:20px;height:20px;stroke:var(--gray-600);fill:none;stroke-width:2}
.carousel-dots{display:flex;gap:.5rem}
.carousel-dot{width:10px;height:10px;border-radius:50%;background:var(--gray-300);border:none;cursor:pointer;transition:all var(--transition);padding:0}
.carousel-dot.is-active{background:var(--blue);transform:scale(1.2)}
.reviews-google-link{display:inline-flex;align-items:center;gap:.5rem;margin-top:1.5rem;font-weight:600;font-size:.9375rem}
.reviews-google-link svg{width:20px;height:20px}

/* ===== CTA BANNER ===== */
.cta-banner{background:linear-gradient(135deg,var(--blue-dark),var(--blue));border-radius:var(--radius-lg);padding:3.5rem;text-align:center;color:var(--white)}
.cta-banner h2{color:var(--white);margin-bottom:.75rem}
.cta-banner p{color:rgba(255,255,255,.9);font-size:1.125rem;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}
@media(max-width:480px){.cta-banner{padding:2rem 1.5rem}}

/* ===== LOCATION/MAP ===== */
.location__inner{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.location__info h3{margin-bottom:1rem;font-size:1.25rem}
.location__detail{display:flex;align-items:flex-start;gap:.75rem;margin-bottom:1rem}
.location__detail svg{width:20px;height:20px;fill:var(--blue);flex-shrink:0;margin-top:.25rem}
.location__detail p{color:var(--gray-700);font-size:.9375rem}
.location__map{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);min-height:320px;background:var(--gray-200)}
.location__map iframe{width:100%;height:100%;min-height:320px;border:none}
@media(max-width:768px){.location__inner{grid-template-columns:1fr}}

/* ===== FOOTER ===== */
.footer{background:var(--gray-800);color:var(--gray-300);padding:4rem 0 0}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem;margin-bottom:3rem}
.footer__brand{font-size:1.25rem;font-weight:800;color:var(--white);margin-bottom:.75rem}
.footer__brand span{color:var(--blue)}
.footer__desc{font-size:.9rem;color:var(--gray-300);line-height:1.7;margin-bottom:1rem}
.footer h4{color:var(--white);font-size:1rem;margin-bottom:1rem}
.footer__links li{margin-bottom:.5rem}
.footer__links a{color:var(--gray-300);font-size:.9rem;transition:color var(--transition)}
.footer__links a:hover{color:var(--white)}
.footer__bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.5rem 0;text-align:center;font-size:.8125rem;color:var(--gray-300)}
@media(max-width:768px){.footer__grid{grid-template-columns:1fr 1fr}.footer__grid>div:first-child{grid-column:span 2}}
@media(max-width:480px){.footer__grid{grid-template-columns:1fr}.footer__grid>div:first-child{grid-column:span 1}}

/* ===== SERVICE PAGE (INDIVIDUAL) ===== */
.page-hero{padding:7rem 0 3.5rem;background:linear-gradient(135deg,var(--blue-dark) 0%,var(--blue) 100%);color:var(--white);text-align:center}
.page-hero .breadcrumb{display:flex;align-items:center;justify-content:center;gap:.5rem;font-size:.875rem;color:rgba(255,255,255,.7);margin-bottom:1rem}
.page-hero .breadcrumb a{color:rgba(255,255,255,.8)}
.page-hero .breadcrumb a:hover{color:var(--white)}
.page-hero h1{color:var(--white);margin-bottom:1rem}
.page-hero p{color:rgba(255,255,255,.9);font-size:1.125rem;max-width:680px;margin:0 auto}
.service-content{max-width:800px;margin:0 auto}
.service-content h2{margin-top:2.5rem;margin-bottom:1rem;color:var(--blue-dark)}
.service-content p{margin-bottom:1rem;font-size:1.0625rem;line-height:1.8}
.service-content ul{margin-bottom:1.5rem;padding-left:0}
.service-content ul li{padding:.5rem 0 .5rem 1.75rem;position:relative;font-size:1.0625rem;color:var(--gray-700)}
.service-content ul li::before{content:'';position:absolute;left:0;top:.9rem;width:8px;height:8px;border-radius:50%;background:var(--blue)}
.service-sidebar{position:sticky;top:90px}
.sidebar-card{background:var(--gray-50);border-radius:var(--radius-lg);padding:2rem;border:1px solid var(--gray-200);margin-bottom:1.5rem}
.sidebar-card h3{margin-bottom:1rem;font-size:1.125rem;color:var(--blue-dark)}
.sidebar-card ul li{padding:.375rem 0;font-size:.9375rem}
.sidebar-card ul li a{color:var(--gray-700)}
.sidebar-card ul li a:hover{color:var(--blue)}
.sidebar-card ul li a.active{color:var(--blue);font-weight:600}
.service-layout{display:grid;grid-template-columns:1fr 320px;gap:3rem;align-items:flex-start}
@media(max-width:900px){.service-layout{grid-template-columns:1fr}.service-sidebar{position:static}}

/* ===== CONTACT FORM ===== */
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-weight:600;font-size:.9375rem;margin-bottom:.375rem;color:var(--gray-800)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.75rem 1rem;border:1px solid var(--gray-300);border-radius:var(--radius);font-size:1rem;font-family:inherit;transition:border-color var(--transition);background:var(--white)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(25,123,195,.1)}
.form-group textarea{min-height:120px;resize:vertical}

/* ===== FAQ ===== */
.faq-item{border:1px solid var(--gray-200);border-radius:var(--radius);margin-bottom:.75rem;overflow:hidden;background:var(--white)}
.faq-item__question{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;cursor:pointer;font-weight:600;font-size:1.0625rem;color:var(--gray-800);gap:1rem;background:none;border:none;width:100%;text-align:left;font-family:inherit}
.faq-item__question:hover{color:var(--blue)}
.faq-item__icon{width:24px;height:24px;min-width:24px;transition:transform var(--transition)}
.faq-item.is-open .faq-item__icon{transform:rotate(180deg)}
.faq-item__answer{padding:0 1.5rem;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease}
.faq-item.is-open .faq-item__answer{padding:0 1.5rem 1.25rem;max-height:500px}
.faq-item__answer p{font-size:.9375rem;color:var(--gray-600);line-height:1.7}

/* ===== ABOUT PAGE ===== */
.about-intro{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.about-intro__visual{background:linear-gradient(135deg,var(--blue),var(--blue-dark));border-radius:var(--radius-lg);padding:3rem;text-align:center;color:var(--white);min-height:320px;display:flex;flex-direction:column;align-items:center;justify-content:center}
.about-intro__visual svg{width:80px;height:80px;fill:var(--white);margin-bottom:1rem;opacity:.8}
.about-value{text-align:center;padding:2rem}
.about-value__icon{width:56px;height:56px;background:linear-gradient(135deg,var(--blue),var(--blue-dark));border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.about-value__icon svg{width:28px;height:28px;fill:var(--white)}
.about-value h3{margin-bottom:.5rem}
.about-value p{font-size:.9375rem;color:var(--gray-600)}
@media(max-width:768px){.about-intro{grid-template-columns:1fr}}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:999;background:var(--blue-dark);padding:.75rem 1rem;box-shadow:0 -4px 12px rgba(0,0,0,.15)}
.mobile-cta a{display:flex;align-items:center;justify-content:center;gap:.5rem;color:var(--white);font-weight:700;font-size:1.0625rem;padding:.75rem;background:var(--blue);border-radius:var(--radius);text-align:center}
.mobile-cta a svg{width:20px;height:20px;fill:var(--white)}
@media(max-width:768px){.mobile-cta{display:block}body{padding-bottom:72px}}

/* ===== ANIMATIONS ===== */
.fade-in{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.fade-in.is-visible{opacity:1;transform:translateY(0)}

/* ===== SKIP TO CONTENT (A11Y) ===== */
.skip-link{position:absolute;top:-100%;left:50%;transform:translateX(-50%);background:var(--blue-dark);color:var(--white);padding:.75rem 1.5rem;border-radius:0 0 var(--radius) var(--radius);z-index:9999;font-weight:600}
.skip-link:focus{top:0;color:var(--white)}
