:root{
  --navy:#0B3554;
  --blue:#1863A8;
  --blue-deep:#0E4A80;
  --blue-mist:#EAF3FB;
  --red:#E63946;
  --red-deep:#C42636;
  --ink:#14232F;
  --slate:#5C6E7E;
  --line:#DDE7EE;
  --bg:#FFFFFF;
  --radius:18px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
html, body{
  width:100%; max-width:100%; overflow-x:hidden;
  overscroll-behavior-x:none;
}
body{
  font-family:'Inter', sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  touch-action:pan-y;
}
h1,h2,h3,h4{font-family:'Poppins', sans-serif; color:var(--navy); line-height:1.15;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
img{max-width:100%; display:block;}
button{font-family:inherit; cursor:pointer; border:none;}
.container{width:92%; max-width:1200px; margin:0 auto;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--red); margin-bottom:14px;
}
.eyebrow::before{content:""; width:22px; height:2px; background:var(--red); display:inline-block;}
.section{padding:88px 0;}
.section-alt{background:var(--blue-mist);}
.section-head{max-width:640px; margin-bottom:48px;}
.section-head h2, .section-head h1{font-size:clamp(1.7rem, 3vw, 2.5rem); font-weight:700; letter-spacing:-0.01em;}
.section-head p{color:var(--slate); margin-top:14px; font-size:1.02rem;}
.center{text-align:center; margin-left:auto; margin-right:auto;}

/* wipe reveal heading effect */
.wipe{position:relative; display:inline-block; overflow:hidden;}
.wipe::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, transparent 0%, rgba(24,99,168,0.0) 30%, rgba(24,99,168,0.85) 48%, rgba(230,57,70,0.85) 52%, rgba(24,99,168,0.0) 70%, transparent 100%);
  transform:translateX(-120%);
}
.wipe.revealed::after{ animation:wipe-sweep 1.1s cubic-bezier(.65,0,.35,1) forwards; }
@keyframes wipe-sweep{ 0%{transform:translateX(-120%);} 100%{transform:translateX(120%);} }

.reveal{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;}
.reveal.revealed{opacity:1; transform:translateY(0);}
.reveal.d1{transition-delay:.08s;} .reveal.d2{transition-delay:.16s;} .reveal.d3{transition-delay:.24s;} .reveal.d4{transition-delay:.32s;}

/* HEADER */
header{
  position:sticky; top:0; z-index:500;
  background:rgba(255,255,255,.92); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; height:88px;}
.logo{display:flex; align-items:center; gap:10px;}
.brand-logo{height:88px; width:auto; display:block;}
.footer-logo-chip{display:inline-flex; align-items:center; background:#fff; padding:10px 16px; border-radius:14px; margin-bottom:16px;}
.footer-logo-chip img{height:44px; width:auto; display:block;}
nav.main-nav{display:flex; gap:30px;}
nav.main-nav a{font-size:.92rem; font-weight:500; color:var(--ink); position:relative; padding:6px 0;}
nav.main-nav a::after{content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--red); transition:width .25s ease;}
nav.main-nav a:hover::after, nav.main-nav a.active::after{width:100%;}
nav.main-nav a.active{color:var(--blue-deep);}
.header-actions{display:flex; align-items:center; gap:14px;}
.btn{
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  padding:13px 26px; border-radius:999px; font-weight:600; font-size:.92rem; line-height:1;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--red); color:#fff; box-shadow:0 8px 20px -6px rgba(230,57,70,.55);}
.btn-primary:hover{background:var(--red-deep); transform:translateY(-2px); box-shadow:0 12px 26px -6px rgba(230,57,70,.6);}
.btn-outline{border:1.5px solid var(--line); color:var(--navy); background:#fff;}
.btn-outline:hover{border-color:var(--blue); color:var(--blue); transform:translateY(-2px);}
.btn-light{background:var(--blue-mist); color:var(--blue-deep);}
.btn-light:hover{background:#dcecfa;}
.btn-whatsapp{background:#25D366; color:#fff; box-shadow:0 8px 20px -6px rgba(37,211,102,.55);}
.btn-whatsapp:hover{background:#1fb958; transform:translateY(-2px); box-shadow:0 12px 26px -6px rgba(37,211,102,.6);}
.hamburger{display:none; flex-direction:column; gap:5px; width:26px; cursor:pointer; background:none;}
.hamburger span{height:2px; background:var(--navy); border-radius:2px; transition:.3s;}

.mobile-menu{
  position:fixed; top:0; right:0; bottom:0; width:82%; max-width:340px; height:100vh;
  background:#fff; z-index:600; transform:translateX(100%); transition:transform .35s cubic-bezier(.65,0,.35,1);
  box-shadow:-10px 0 40px rgba(0,0,0,.15); padding:28px 26px; overflow-y:auto;
}
.mobile-menu.open{transform:translateX(0);}
.mobile-menu ul{display:flex; flex-direction:column; gap:6px; margin-top:32px;}
.mobile-menu a{display:block; padding:14px 4px; font-size:1.05rem; font-weight:600; border-bottom:1px solid var(--line);}
.mobile-menu a.active{color:var(--blue-deep);}
.mobile-cta{width:100%; margin:24px auto 0; text-align:center; justify-content:center;}
.scrim{position:fixed; inset:0; background:rgba(11,53,84,.4); z-index:550; opacity:0; pointer-events:none; transition:opacity .3s ease;}
.scrim.open{opacity:1; pointer-events:auto;}

/* HERO (home) */
.hero{
  position:relative; min-height:88vh; display:flex; align-items:center;
  background:linear-gradient(180deg, #F4F9FD 0%, #EAF3FB 55%, #ffffff 100%);
  overflow:hidden; padding-top:40px;
}
.hero::before, .hero::after{ content:""; position:absolute; border-radius:50%; filter:blur(2px); }
.hero::before{ width:640px; height:640px; right:-220px; top:-180px; background:radial-gradient(circle at 35% 35%, rgba(24,99,168,.16), transparent 70%); }
.hero::after{ width:420px; height:420px; left:-140px; bottom:-160px; background:radial-gradient(circle at 60% 40%, rgba(230,57,70,.13), transparent 70%); }
.hero-grid{display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center; position:relative; z-index:2;}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--line);
  padding:8px 16px; border-radius:999px; font-size:.82rem; font-weight:600; color:var(--blue-deep);
  box-shadow:0 6px 16px -8px rgba(11,53,84,.25); margin-bottom:22px;
}
.hero-badge .dot{width:8px; height:8px; border-radius:50%; background:var(--red); animation:pulse-dot 1.8s infinite;}
@keyframes pulse-dot{0%,100%{opacity:1;} 50%{opacity:.35;}}
.hero h1{font-size:clamp(2.1rem, 4.4vw, 3.3rem); font-weight:800; letter-spacing:-0.02em; margin-bottom:20px;}
.hero h1 .accent{color:var(--blue);}
.hero p.lead{font-size:1.06rem; color:var(--slate); max-width:520px; margin-bottom:32px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px;}
.info-cards{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.info-card{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:20px 18px;
  box-shadow:0 10px 30px -18px rgba(11,53,84,.35);
}
.info-card .num{font-family:'Poppins',sans-serif; font-weight:800; font-size:1.7rem; color:var(--navy);}
.info-card .num .plus{color:var(--red);}
.info-card .lbl{font-size:.82rem; color:var(--slate); margin-top:2px;}

.hero-visual{position:relative; height:480px; display:flex; align-items:center; justify-content:center;}
.hero-visual .panel{ position:absolute; border-radius:22px; box-shadow:0 30px 60px -25px rgba(11,53,84,.4); background:linear-gradient(160deg,#fff, #F4F9FD); border:1px solid var(--line); }
.panel-1{width:78%; height:78%; z-index:2; padding:26px; display:flex; flex-direction:column; justify-content:space-between;}
.panel-2{width:56%; height:44%; right:-8%; top:-6%; z-index:1; background:linear-gradient(150deg, var(--blue), var(--navy)); opacity:.92;}
.panel-3{width:46%; height:30%; left:-10%; bottom:-4%; z-index:1; background:var(--red); opacity:.14;}
.panel-1 .glass-row{display:flex; gap:10px;}
.glass-tile{flex:1; aspect-ratio:1; border-radius:12px; background:var(--blue-mist); position:relative; overflow:hidden; border:1px solid var(--line);}
.glass-tile::after{content:""; position:absolute; inset:0; background:linear-gradient(120deg, transparent 30%, rgba(24,99,168,.25) 48%, transparent 66%); animation:shine 3.4s ease-in-out infinite;}
.glass-tile:nth-child(2)::after{animation-delay:.6s;}
.glass-tile:nth-child(3)::after{animation-delay:1.2s;}
@keyframes shine{0%{transform:translateX(-120%);} 60%,100%{transform:translateX(120%);}}
.panel-1 .check-row{display:flex; align-items:center; gap:10px; font-size:.85rem; font-weight:600; color:var(--navy);}
.check-row .ck{width:22px; height:22px; border-radius:50%; background:var(--blue); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.72rem; flex-shrink:0;}

/* PAGE BANNER (sub-pages) */
.page-banner{
  position:relative; padding:64px 0 56px;
  background:linear-gradient(180deg, #F4F9FD 0%, #EAF3FB 100%);
  overflow:hidden;
}
.page-banner::before{
  content:""; position:absolute; width:420px; height:420px; right:-160px; top:-200px; border-radius:50%;
  background:radial-gradient(circle at 35% 35%, rgba(24,99,168,.14), transparent 70%);
}
.page-banner h1{font-size:clamp(1.8rem,3.6vw,2.6rem); font-weight:800; position:relative; z-index:1;}
.page-banner p{color:var(--slate); margin-top:12px; max-width:560px; position:relative; z-index:1;}
.breadcrumb{font-size:.82rem; color:var(--slate); margin-bottom:14px; position:relative; z-index:1;}
.breadcrumb a{color:var(--blue-deep); font-weight:600;}

/* SERVICE PILLS (home teaser) — slider/marquee */
.services-slider{
  overflow:hidden; position:relative; width:100%;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.services-track{display:flex; gap:14px; width:max-content; animation:services-scroll 32s linear infinite;}
.services-slider:hover .services-track{animation-play-state:paused;}
@keyframes services-scroll{0%{transform:translateX(0);} 100%{transform:translateX(-50%);}}
.service-pill{
  display:flex; align-items:center; gap:12px; background:#fff; border:1px solid var(--line);
  border-radius:14px; padding:16px 20px; font-weight:600; font-size:.9rem; color:var(--navy);
  white-space:nowrap; flex-shrink:0;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-pill:hover{transform:translateY(-4px); box-shadow:0 16px 30px -20px rgba(11,53,84,.35); border-color:transparent;}
.service-pill .ic{width:38px; height:38px; border-radius:10px; background:var(--blue-mist); color:var(--blue-deep); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.05rem;}
.services-more{text-align:center; margin-top:36px;}

/* TRUST STRIP */
.trust-strip{padding:44px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.trust-grid{display:grid; grid-template-columns:repeat(6,1fr); gap:18px;}
.trust-item{text-align:center; padding:14px 8px;}
.trust-item .icon{ width:52px; height:52px; margin:0 auto 12px; border-radius:14px; background:var(--blue-mist); display:flex; align-items:center; justify-content:center; color:var(--blue-deep); font-size:1.3rem;}
.trust-item p{font-size:.84rem; font-weight:600; color:var(--navy);}

/* ABOUT */
.about-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center;}
.about-visual{position:relative; border-radius:24px; overflow:hidden; background:linear-gradient(160deg, var(--navy), var(--blue-deep)); min-height:400px; padding:36px; display:flex; flex-direction:column; justify-content:flex-end;}
.about-visual .ring{position:absolute; border:1px solid rgba(255,255,255,.18); border-radius:50%;}
.about-visual .r1{width:260px; height:260px; top:-60px; right:-60px;}
.about-visual .r2{width:180px; height:180px; bottom:20px; left:-50px;}
.about-stat{color:#fff;}
.about-stat .big{font-family:'Poppins',sans-serif; font-size:2.6rem; font-weight:800;}
.about-stat .cap{font-size:.9rem; opacity:.85;}
.about-list{display:grid; grid-template-columns:1fr 1fr; gap:16px 24px; margin-top:26px;}
.about-list li{display:flex; align-items:flex-start; gap:10px; font-size:.94rem; font-weight:500; color:var(--ink);}
.about-list .ck{width:20px; height:20px; border-radius:50%; background:var(--blue-mist); color:var(--blue-deep); display:flex; align-items:center; justify-content:center; font-size:.68rem; flex-shrink:0; margin-top:2px;}

/* SERVICES (full page) */
.services-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.service-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px 24px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease; position:relative; overflow:hidden;
}
.service-card:hover{transform:translateY(-6px); box-shadow:0 22px 40px -22px rgba(11,53,84,.35); border-color:transparent;}
.service-card .icon{
  width:52px; height:52px; border-radius:14px; background:var(--blue-mist); color:var(--blue-deep);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:1.3rem;
  transition:background .3s ease, color .3s ease;
}
.service-card:hover .icon{background:var(--red); color:#fff;}
.service-card h3{font-size:1.08rem; font-weight:700; margin-bottom:8px;}
.service-card p{font-size:.88rem; color:var(--slate);}

/* CHECKLIST */
.checklist-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px 28px;}

/* PROCESS TIMELINE */
.timeline-track{position:relative; display:flex; justify-content:space-between; margin-top:20px;}
.timeline-line{position:absolute; top:26px; left:0; right:0; height:2px; background:var(--line);}
.timeline-line-fill{position:absolute; top:26px; left:0; height:2px; background:linear-gradient(90deg, var(--blue), var(--red)); width:0%; transition:width 1.4s ease;}
.timeline-step{flex:1; text-align:center; position:relative; padding:0 8px;}
.timeline-dot{
  width:52px; height:52px; border-radius:50%; background:#fff; border:2px solid var(--line);
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-family:'Poppins',sans-serif;
  font-weight:700; color:var(--navy); position:relative; z-index:2; transition:.4s ease;
}
.timeline-step.active .timeline-dot{border-color:var(--blue); background:var(--blue); color:#fff; box-shadow:0 0 0 6px rgba(24,99,168,.15);}
.timeline-step h4{font-size:.94rem; font-weight:700; margin-bottom:6px;}
.timeline-step p{font-size:.8rem; color:var(--slate);}

/* STATS */
.stats-band{background:linear-gradient(120deg, var(--navy), var(--blue-deep)); border-radius:28px; padding:52px 36px;}
.stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center;}
.stat-num{font-family:'Poppins',sans-serif; font-weight:800; font-size:clamp(2rem,4vw,2.7rem); color:#fff;}
.stat-num .plus{color:var(--red);}
.stat-lbl{color:rgba(255,255,255,.78); font-size:.9rem; margin-top:6px;}

/* AREAS — animated map background */
.map-area{
  position:relative; border-radius:28px; padding:56px 24px; overflow:hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(24,99,168,.10), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(230,57,70,.08), transparent 55%),
    linear-gradient(160deg, var(--navy), var(--blue-deep));
}
.map-area::before{
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size:22px 22px; opacity:.5;
}
.map-anim{position:absolute; inset:0; overflow:hidden;}
.map-pulse{
  position:absolute; width:14px; height:14px; border-radius:50%; background:rgba(255,255,255,.9);
}
.map-pulse::before, .map-pulse::after{
  content:""; position:absolute; inset:0; border-radius:50%; border:2px solid rgba(255,255,255,.6);
  animation:map-pulse-ring 3s ease-out infinite;
}
.map-pulse::after{animation-delay:1.5s;}
.map-pulse.p1{top:22%; left:18%; background:var(--red);}
.map-pulse.p1::before, .map-pulse.p1::after{border-color:rgba(230,57,70,.55);}
.map-pulse.p2{top:64%; left:32%;}
.map-pulse.p3{top:30%; left:70%;}
.map-pulse.p4{top:70%; left:78%; background:var(--red);}
.map-pulse.p4::before, .map-pulse.p4::after{border-color:rgba(230,57,70,.55);}
@keyframes map-pulse-ring{0%{transform:scale(.4); opacity:.9;} 100%{transform:scale(4.2); opacity:0;}}
.area-tags{display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; position:relative; z-index:2;}
.area-tags.center{justify-content:center;}
.area-tag{
  padding:10px 20px; border-radius:999px; font-size:.9rem; font-weight:600; color:#fff;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.3); backdrop-filter:blur(6px);
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.area-tag:hover{transform:translateY(-3px); border-color:#fff; background:rgba(255,255,255,.22);}
@media (max-width:600px){ .map-pulse{display:none;} }

/* FAQ */
.faq-list{max-width:820px; margin:0 auto;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{ display:flex; justify-content:space-between; align-items:center; gap:16px; padding:22px 4px; cursor:pointer; font-weight:600; font-size:1rem; color:var(--navy);}
.faq-q .plus{width:26px; height:26px; border-radius:50%; background:var(--blue-mist); color:var(--blue-deep); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .3s ease;}
.faq-item.open .faq-q .plus{transform:rotate(45deg); background:var(--red); color:#fff;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .35s ease;}
.faq-a p{padding:0 4px 22px; color:var(--slate); font-size:.92rem; max-width:680px;}

/* CONTACT */
.contact-single{max-width:760px; margin:0 auto;}
.contact-info-card{background:var(--navy); color:#fff; border-radius:24px; padding:44px; position:relative; overflow:hidden;}
.contact-info-card .ring{position:absolute; width:220px; height:220px; border-radius:50%; border:1px solid rgba(255,255,255,.14); top:-70px; right:-70px;}
.contact-row-grid{display:grid; grid-template-columns:1fr 1fr; gap:8px 24px; position:relative; z-index:1;}
.contact-row{display:flex; gap:14px; margin-bottom:22px; align-items:flex-start;}
.contact-row .ic{width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.contact-row .lbl{font-size:.76rem; opacity:.7; margin-bottom:2px;}
.contact-row .val{font-weight:600; font-size:.94rem;}
.contact-cta-row{display:flex; gap:14px; flex-wrap:wrap; margin-top:8px; position:relative; z-index:1;}
.contact-map-note{max-width:760px; margin:32px auto 0; text-align:center; color:var(--slate); font-size:.9rem;}

/* FOOTER */
footer{background:var(--navy); color:#dfe9f2; padding:60px 0 28px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; margin-bottom:44px;}
footer h4{color:#fff; font-size:.92rem; margin-bottom:18px;}
footer ul li{margin-bottom:10px;}
footer ul a{font-size:.88rem; color:#b9c9d6; transition:color .2s ease;}
footer ul a:hover{color:#fff;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; font-size:.8rem; color:#93a8b8;}

/* WHATSAPP FAB */
.wa-fab{
  position:fixed; bottom:26px; right:26px; z-index:9999; width:60px; height:60px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 26px -8px rgba(37,211,102,.6);
  transition:transform .25s ease, box-shadow .25s ease; animation:fab-in .6s cubic-bezier(.3,1.4,.6,1) .4s backwards;
}
.wa-fab:hover{transform:scale(1.1) translateY(-2px); box-shadow:0 14px 32px -8px rgba(37,211,102,.7);}
.wa-fab:focus-visible{outline:3px solid var(--navy); outline-offset:3px;}
.wa-fab::before{content:""; position:absolute; inset:-6px; border-radius:50%; border:2px solid rgba(37,211,102,.5); animation:wa-pulse 2.6s ease-out infinite;}
@keyframes wa-pulse{0%{transform:scale(.85); opacity:.9;} 100%{transform:scale(1.5); opacity:0;}}
@keyframes fab-in{0%{transform:scale(0); opacity:0;} 100%{transform:scale(1); opacity:1;}}
.wa-tooltip{
  position:absolute; right:72px; bottom:8px; background:#fff; color:var(--navy); padding:10px 16px; border-radius:12px;
  font-size:.82rem; font-weight:600; white-space:nowrap; box-shadow:0 10px 24px -10px rgba(0,0,0,.25);
  opacity:0; transform:translateX(8px); pointer-events:none; transition:opacity .25s ease, transform .25s ease;
}
.wa-tooltip small{display:block; font-weight:400; color:var(--slate); font-size:.72rem; margin-top:2px;}
.wa-fab:hover .wa-tooltip, .wa-fab:focus-visible .wa-tooltip{opacity:1; transform:translateX(0); pointer-events:auto;}
@media (max-width:600px){ .wa-fab{width:54px; height:54px; bottom:18px; right:18px;} }

/* BACK TO TOP */
.top-btn{
  position:fixed; bottom:26px; left:26px; z-index:900; width:44px; height:44px; border-radius:50%;
  background:#fff; border:1px solid var(--line); color:var(--navy); display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px -12px rgba(11,53,84,.4); opacity:0; pointer-events:none; transition:opacity .3s ease, transform .3s ease;
}
.top-btn.show{opacity:1; pointer-events:auto;}
.top-btn:hover{transform:translateY(-3px);}

/* RESPONSIVE */
@media (max-width:1024px){
  .hero-grid, .about-grid{grid-template-columns:1fr;}
  .hero-visual{height:360px; margin-top:20px;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .checklist-grid{grid-template-columns:repeat(2,1fr);}
  .trust-grid{grid-template-columns:repeat(3,1fr);}
  .stats-grid{grid-template-columns:repeat(2,1fr); row-gap:32px;}
}
@media (max-width:768px){
  nav.main-nav{display:none;}
  .header-actions .btn-outline{display:none;}
  .header-actions .btn-primary{display:none;}
  .hamburger{display:flex;}
  .section{padding:60px 0;}
  .page-banner{padding:48px 0 40px;}
  .services-grid{grid-template-columns:1fr;}
  .checklist-grid{grid-template-columns:1fr;}
  .trust-grid{grid-template-columns:repeat(2,1fr);}
  .info-cards{grid-template-columns:1fr 1fr;}
  .contact-row-grid{grid-template-columns:1fr;}
  .contact-info-card{padding:30px 24px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .timeline-track{flex-direction:column; gap:28px; align-items:flex-start;}
  .timeline-line, .timeline-line-fill{display:none;}
  .timeline-step{display:flex; align-items:center; gap:16px; text-align:left;}
  .timeline-dot{margin:0;}
  .service-pills{grid-template-columns:repeat(auto-fill, minmax(150px,1fr));}
}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important;}
}

/* TESTIMONIALS — luxury horizontal slider */
.testi-wrap{position:relative; display:flex; align-items:center; gap:16px;}
.testi-track{
  display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:12px 4px 30px; scrollbar-width:none; -ms-overflow-style:none;
}
.testi-track::-webkit-scrollbar{display:none;}
.testi-card{
  scroll-snap-align:start; flex:0 0 340px;
  background:linear-gradient(160deg, var(--navy), var(--blue-deep));
  border-radius:22px; padding:34px 30px 28px; position:relative; overflow:hidden;
  box-shadow:0 26px 44px -26px rgba(11,53,84,.55);
  border:1px solid rgba(201,162,39,.28);
  display:flex; flex-direction:column; gap:18px; color:#fff;
}
.testi-card::before{
  content:"\201C"; position:absolute; top:2px; right:24px; font-family:Georgia,serif;
  font-size:5.5rem; color:rgba(201,162,39,.16); line-height:1; pointer-events:none;
}
.testi-stars{color:#D9AE4A; letter-spacing:3px; font-size:1rem; position:relative; z-index:1;}
.testi-text{color:#dce8f1; font-size:.94rem; line-height:1.75; position:relative; z-index:1;}
.testi-foot{display:flex; align-items:center; gap:13px; margin-top:auto; padding-top:16px; border-top:1px solid rgba(255,255,255,.14);}
.testi-avatar{
  width:46px; height:46px; border-radius:50%; background:rgba(217,174,74,.14); border:1.5px solid #D9AE4A;
  color:#D9AE4A; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.92rem; flex-shrink:0;
}
.testi-name{font-weight:700; color:#fff; font-size:.92rem;}
.testi-role{color:#9fb4c4; font-size:.78rem; margin-top:2px;}
.testi-arrow{
  width:48px; height:48px; border-radius:50%; border:1px solid var(--line); background:#fff; color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-size:1.5rem; line-height:1; cursor:pointer; flex-shrink:0;
  transition:background .2s ease, color .2s ease, transform .2s ease; box-shadow:0 12px 22px -14px rgba(11,53,84,.4);
}
.testi-arrow:hover{background:var(--red); color:#fff; border-color:var(--red); transform:scale(1.06);}
@media (max-width:640px){
  .testi-arrow{display:none;}
  .testi-card{flex:0 0 82vw;}
}
