/* ==========================================================================
   Sri Arunachalam Industries (SAI) — Premium Engineering Website
   Design System — style.css
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root{
  --royal-blue:      #0b4ea2;
  --royal-blue-dark:  #062f63;
  --royal-blue-light: #2d72c9;
  --royal-blue-glow:  rgba(11,78,162,.45);
  --steel-grey:       #4b5563;
  --steel-grey-light: #8a94a3;
  --steel-grey-dark:  #1f2733;
  --ink:              #0c1420;
  --white:            #ffffff;
  --off-white:        #f5f8fc;
  --cloud:            #eef2f8;
  --line:             #e2e8f2;
  --amber:            #ff9d1f;
  --success:          #1fb976;

  --font-head: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(12,20,32,.06);
  --shadow-md: 0 10px 30px rgba(12,20,32,.10);
  --shadow-lg: 0 25px 60px rgba(12,20,32,.16);
  --shadow-blue: 0 15px 45px rgba(11,78,162,.28);

  --ease: cubic-bezier(.22,1,.36,1);
  --nav-h: 88px;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top: var(--nav-h); overflow-x:hidden; width:100%; }
html.no-scroll, body.no-scroll{ overflow:hidden; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
  max-width:100vw;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input,textarea,select{ font-family:inherit; font-size:1rem; }

h1,h2,h3,h4,h5{
  font-family: var(--font-head);
  font-weight:700;
  color: var(--ink);
  line-height:1.15;
  letter-spacing:-0.01em;
}

.container{ max-width: var(--container); margin:0 auto; padding:0 24px; width:100%; }
.container-lg{ max-width: 1440px; margin:0 auto; padding:0 24px; width:100%; }
@media(max-width:480px){
  .container, .container-lg{ padding:0 16px; }
}

section{ position:relative; }
.section-pad{ padding: 120px 0; }
.section-pad-sm{ padding: 80px 0; }
@media(max-width:900px){
  .section-pad{ padding: 84px 0; }
  .section-pad-sm{ padding: 56px 0; }
}

/* ---------- Eyebrow / Section Heading ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.78rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: var(--royal-blue); margin-bottom:18px;
}
.eyebrow::before{
  content:''; width:34px; height:2px; background: linear-gradient(90deg,var(--royal-blue),var(--amber));
  border-radius:2px;
}
.section-title{
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  margin-bottom:20px;
}
.section-title .accent{ color: var(--royal-blue); }
.section-sub{
  font-size:1.08rem; color: var(--steel-grey); max-width:640px; line-height:1.75;
}
.section-head{ margin-bottom:60px; }
.section-head.center{ text-align:center; margin-left:auto; margin-right:auto; }
.section-head.center .section-sub{ margin-left:auto; margin-right:auto; }

/* ---------- Buttons ---------- */
.btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 34px; border-radius: var(--radius-full);
  font-weight:600; font-size:.95rem; letter-spacing:.01em;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap; isolation:isolate; overflow:hidden;
}
.btn-primary{
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
  color:#fff; box-shadow: var(--shadow-blue);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow:0 20px 55px rgba(11,78,162,.4); }
.btn-outline{
  background: rgba(255,255,255,.06);
  border:1.5px solid rgba(255,255,255,.55); color:#fff; backdrop-filter: blur(6px);
}
.btn-outline:hover{ background:#fff; color:var(--royal-blue-dark); transform: translateY(-3px); }
.btn-outline.dark{ border-color: rgba(11,78,162,.35); color:var(--royal-blue); background:rgba(11,78,162,.05); }
.btn-outline.dark:hover{ background:var(--royal-blue); color:#fff; }
.btn-ghost{ color:var(--royal-blue); font-weight:700; gap:8px; }
.btn-ghost svg{ transition: transform .35s var(--ease); }
.btn-ghost:hover svg{ transform: translateX(6px); }
.btn-sm{ padding:11px 22px; font-size:.85rem; }
.btn-wa{ background: linear-gradient(135deg,#25D366,#128C7E); color:#fff; box-shadow:0 12px 30px rgba(37,211,102,.35); }
.btn-block{ width:100%; }

/* magnetic wrapper target */
.magnetic{ display:inline-block; }

/* ---------- Glass / Card surfaces ---------- */
.glass{
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.5);
}
.glass-dark{
  background: rgba(9,20,38,.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.12);
}
.card{
  background:#fff; border-radius: var(--radius-md);
  border:1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(11,78,162,.25); }

/* ---------- Steel / blueprint textures ---------- */
.steel-texture{
  background-image:
    linear-gradient(160deg, rgba(255,255,255,.5), rgba(255,255,255,0) 40%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 6px);
}
.blueprint-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.blueprint-bg canvas{ position:absolute; inset:0; width:100%; height:100%; opacity:.5; }

/* ---------- Preloader ---------- */
#preloader{
  position:fixed; inset:0; z-index:9999; background: var(--ink);
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:22px;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
#preloader.hide{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-mark{ width:78px; height:78px; position:relative; }
.loader-mark svg{ width:100%; height:100%; }
.loader-mark path{
  stroke: var(--royal-blue-light); stroke-width:2.4; fill:none;
  stroke-dasharray: 300; stroke-dashoffset:300;
  animation: draw 1.6s var(--ease) infinite;
}
@keyframes draw{ 0%{stroke-dashoffset:300;} 55%{stroke-dashoffset:0;} 100%{stroke-dashoffset:-300;} }
.loader-text{ color:#fff; font-family:var(--font-head); letter-spacing:.35em; font-size:.78rem; text-transform:uppercase; opacity:.8; }
.loader-bar{ width:180px; height:2px; background:rgba(255,255,255,.15); border-radius:2px; overflow:hidden; }
.loader-bar::after{
  content:''; display:block; height:100%; width:40%;
  background: linear-gradient(90deg, transparent, var(--royal-blue-light), transparent);
  animation: loaderslide 1.1s ease-in-out infinite;
}
@keyframes loaderslide{ 0%{ transform:translateX(-120%);} 100%{ transform:translateX(340%);} }

/* ---------- Scroll progress ---------- */
#scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%; z-index:1201;
  background: linear-gradient(90deg, var(--amber), var(--royal-blue-light));
  box-shadow:0 0 12px rgba(11,78,162,.6);
  transition: width .1s linear;
}

/* ---------- Cursor spotlight ---------- */
#cursor-spot{
  position:fixed; width:420px; height:420px; border-radius:50%; pointer-events:none; z-index:2;
  background: radial-gradient(circle, rgba(11,78,162,.10), transparent 70%);
  transform:translate(-50%,-50%); left:-999px; top:-999px;
  transition:left .12s linear, top .12s linear; display:none;
}
@media(hover:hover) and (pointer:fine){ #cursor-spot{ display:block; } }

/* ---------- Navbar ---------- */
#navbar{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height: var(--nav-h);
  display:flex; align-items:center;
  background: transparent;
  border-bottom:1px solid transparent;
  transition: background .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease), height .35s var(--ease);
}
#navbar.solid{
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom:1px solid var(--line);
  box-shadow: 0 8px 30px rgba(12,20,32,.06);
  height:76px;
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; width:100%; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:46px; width:auto; transition: filter .4s; }
#navbar.solid .brand img{ filter:none; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text b{ font-family:var(--font-head); font-size:1.05rem; color:#fff; letter-spacing:.01em; transition:color .4s; }
.brand-text span{ font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.65); transition:color .4s; }
#navbar.solid .brand-text b{ color: var(--ink); }
#navbar.solid .brand-text span{ color: var(--steel-grey); }

.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  padding:10px 16px; font-size:.92rem; font-weight:600; color:rgba(255,255,255,.88);
  border-radius: var(--radius-full); transition: color .35s, background .35s;
  position:relative;
}
#navbar.solid .nav-links a{ color: var(--steel-grey-dark); }
.nav-links a:hover, .nav-links a.active{ color:#fff; background: rgba(255,255,255,.14); }
#navbar.solid .nav-links a:hover, #navbar.solid .nav-links a.active{ color:var(--royal-blue); background: rgba(11,78,162,.08); }

.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-burger{
  display:none; width:44px; height:44px; border-radius:50%; align-items:center; justify-content:center;
  background: rgba(255,255,255,.14);
}
#navbar.solid .nav-burger{ background: rgba(11,78,162,.08); }
.nav-burger span, .nav-burger::before, .nav-burger::after{ display:none; }
.nav-burger svg{ width:20px; height:20px; stroke:#fff; }
#navbar.solid .nav-burger svg{ stroke: var(--ink); }

.nav-quote-mobile{ display:none; }

@media(max-width:1080px){
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:min(340px,86vw);
    background: var(--ink); flex-direction:column; align-items:flex-start; justify-content:flex-start;
    padding:110px 24px 30px; gap:4px; transform:translateX(100%);
    transition: transform .5s var(--ease); z-index:999;
    overflow-y:auto;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ width:100%; color:#fff; padding:14px 12px; font-size:1.05rem; }
  .nav-quote-mobile{
    display:flex; justify-content:center; margin-top:18px; padding:15px 12px;
    text-align:center; color:#fff;
  }
  .nav-cta .btn-outline{ display:none; }
  .nav-burger{ display:flex; flex-shrink:0; }
}

@media(max-width:420px){
  .brand-text span{ display:none; }
  .brand img{ height:38px; }
  .nav-inner{ gap:8px; }
}
#nav-overlay{ position:fixed; inset:0; background:rgba(6,12,22,.55); backdrop-filter:blur(3px); z-index:998; opacity:0; pointer-events:none; transition:opacity .4s; }
#nav-overlay.show{ opacity:1; pointer-events:auto; }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  padding-top: var(--nav-h); overflow:hidden; background: var(--ink);
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; opacity:.55; transform:scale(1.08); }
.hero-media::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(6,12,22,.75) 0%, rgba(6,15,30,.55) 40%, rgba(4,10,20,.92) 100%),
    linear-gradient(90deg, rgba(4,10,22,.92) 0%, rgba(4,10,22,.35) 55%, rgba(4,10,22,.75) 100%);
}
.hero-glow{ position:absolute; border-radius:50%; filter:blur(90px); z-index:0; opacity:.55; pointer-events:none; }
.hero-glow.one{ width:520px; height:520px; background: var(--royal-blue); top:-140px; right:-120px; }
.hero-glow.two{ width:420px; height:420px; background:#0a3a80; bottom:-160px; left:-100px; }

.hero-inner{ position:relative; z-index:2; width:100%; padding-top:90px; padding-bottom:70px; }
@media(max-width:760px){ .hero-inner{ padding-top:70px; padding-bottom:50px; } }
.hero-badge{
  display:inline-flex; align-items:center; gap:10px; padding:9px 18px;
  border-radius: var(--radius-full); background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  color:#dce6f7; font-size:.8rem; font-weight:600; letter-spacing:.05em; margin-bottom:26px;
}
.hero-badge .dot{ width:8px; height:8px; border-radius:50%; background: var(--amber); box-shadow:0 0 12px var(--amber); }
.hero h1{
  color:#fff; font-size: clamp(2.4rem, 5.4vw, 4.6rem); max-width:920px; margin-bottom:24px;
}
.hero h1 .line{ display:block; }
.hero h1 .accent{
  background: linear-gradient(100deg,#8fc2ff,#3d86e0 45%, var(--amber));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{ color:rgba(226,234,246,.86); font-size:1.15rem; max-width:640px; margin-bottom:44px; line-height:1.8; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom:70px; }
.hero-stats{ display:flex; flex-wrap:wrap; gap:0; border-top:1px solid rgba(255,255,255,.14); padding-top:34px; max-width:820px; }
.hero-stats .stat{ flex:1 1 150px; padding-right:24px; }
.hero-stats .stat b{ display:block; font-family:var(--font-head); font-size:2rem; color:#fff; }
.hero-stats .stat b .plus{ color: var(--amber); }
.hero-stats .stat span{ font-size:.82rem; color:rgba(226,234,246,.7); text-transform:uppercase; letter-spacing:.08em; }
/* page hero (inner pages) */
.page-hero{
  position:relative; padding: calc(var(--nav-h) + 90px) 0 90px; background: var(--ink); overflow:hidden;
}
.page-hero .hero-media img{ opacity:.35; }
.page-hero h1{ color:#fff; font-size:clamp(2.1rem,4.4vw,3.4rem); margin-bottom:16px; }
.breadcrumb{ display:flex; gap:8px; align-items:center; color:rgba(226,234,246,.7); font-size:.86rem; margin-bottom:20px; }
.breadcrumb a{ color:rgba(226,234,246,.9); }
.breadcrumb a:hover{ color:#fff; }
.page-hero .hero-sub{ margin-bottom:0; }

/* ---------- Marquee client strip ---------- */
.marquee-strip{ padding:30px 0; background: var(--off-white); border-top:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; }
.marquee-track{ display:flex; gap:70px; width:max-content; animation: marquee 28s linear infinite; }
.marquee-track span{ font-family:var(--font-head); font-weight:700; font-size:1.05rem; color: var(--steel-grey-light); white-space:nowrap; letter-spacing:.02em; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ---------- About ---------- */
.about-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:70px; align-items:center; }
@media(max-width:960px){ .about-grid{ grid-template-columns:1fr; gap:40px; } }
.about-grid.about-grid-solo{ grid-template-columns:1fr; }
.about-media{ position:relative; }
.about-media .frame{
  position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lg);
  aspect-ratio:4/5;
}
.about-media.media-wide .frame{ aspect-ratio:3/2; }
.about-media .frame img{ width:100%; height:100%; object-fit:cover; }
.about-media .badge-since{
  position:absolute; left:-24px; bottom:34px; background:#fff; border-radius:50%;
  width:132px; height:132px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg); border:6px solid var(--royal-blue);
  text-align:center;
}
.about-media .badge-since b{ font-family:var(--font-head); font-size:1.5rem; color:var(--royal-blue); }
.about-media .badge-since span{ font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; color:var(--steel-grey); }
.about-media .float-card{
  position:absolute; right:-20px; top:26px; padding:16px 20px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); display:flex; align-items:center; gap:12px; max-width:230px;
}
.about-media .float-card .ic{ width:42px; height:42px; border-radius:50%; background: linear-gradient(135deg,var(--royal-blue),var(--royal-blue-light)); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.about-media .float-card .ic svg{ width:20px; height:20px; stroke:#fff; }
.about-media .float-card b{ display:block; font-size:.85rem; }
.about-media .float-card span{ font-size:.74rem; color:var(--steel-grey); }
@media(max-width:1024px){ .about-media .badge-since,.about-media .float-card{ display:none; } }

/* Dual-image showcase (e.g. Industrial Automation: PLC panel + HMI) */
.dual-frame{
  display:grid; grid-template-columns:1fr 1fr; gap:18px; width:100%; align-items:stretch;
}
.dual-frame .frame{
  aspect-ratio:4/3; margin:0; border-radius:var(--radius-md); box-shadow:var(--shadow-md);
}
@media(max-width:600px){
  .dual-frame{ gap:12px; }
}

.founder-line{ display:flex; align-items:center; gap:14px; margin:22px 0 26px; padding:16px 18px; background:var(--off-white); border-radius: var(--radius-md); border:1px solid var(--line); }
.founder-line .av{ width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,var(--royal-blue),var(--royal-blue-dark)); display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--font-head); font-weight:700; }
.founder-line b{ display:block; font-size:.95rem; }
.founder-line span{ font-size:.8rem; color:var(--steel-grey); }

.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:40px; }
.stat-grid.stat-grid-3{ grid-template-columns:repeat(3,1fr); }
@media(max-width:760px){ .stat-grid{ grid-template-columns:repeat(2,1fr); } }
.stat-box{ text-align:center; padding:26px 12px; border-radius: var(--radius-md); background:var(--off-white); border:1px solid var(--line); }
.stat-box b{ display:block; font-family:var(--font-head); font-size:2.2rem; color:var(--royal-blue); }
.stat-box span{ font-size:.78rem; color:var(--steel-grey); text-transform:uppercase; letter-spacing:.06em; }

.frame-blank{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; text-align:center;
  background:linear-gradient(135deg,var(--off-white),#e7edf5); color:var(--steel-grey);
}
.frame-blank svg{ opacity:.45; }
.frame-blank span{ font-size:.85rem; font-weight:600; letter-spacing:.02em; max-width:220px; }
.about-media .frame.frame-blank{ aspect-ratio:1/1; max-width:320px; margin:0 auto; }

/* Vision / Mission */
.vm-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
@media(max-width:760px){ .vm-grid{ grid-template-columns:1fr; } }
.vm-card{ position:relative; padding:44px 38px; border-radius: var(--radius-lg); overflow:hidden; color:#fff; min-height:260px; display:flex; flex-direction:column; justify-content:flex-end; }
.vm-card.vision{ background: linear-gradient(150deg, var(--royal-blue-dark), var(--royal-blue)); }
.vm-card.mission{ background: linear-gradient(150deg, #10151f, var(--steel-grey-dark)); }
.vm-card .ic{ position:absolute; top:32px; right:32px; opacity:.16; }
.vm-card .ic svg{ width:80px; height:80px; stroke:#fff; }
.vm-card h3{ color:#fff; font-size:1.5rem; margin-bottom:12px; }
.vm-card p{ color:rgba(255,255,255,.82); line-height:1.75; }

/* ---------- Timeline ---------- */
.timeline{ position:relative; max-width:900px; margin:0 auto; }
.timeline::before{ content:''; position:absolute; left:20px; top:6px; bottom:6px; width:2px; background: linear-gradient(180deg, var(--royal-blue), var(--line)); }
.tl-item{ position:relative; padding-left:64px; margin-bottom:44px; }
.tl-item:last-child{ margin-bottom:0; }
.tl-item .dot{ position:absolute; left:10px; top:4px; width:22px; height:22px; border-radius:50%; background:#fff; border:4px solid var(--royal-blue); box-shadow:0 0 0 6px rgba(11,78,162,.1); }
.tl-item b{ display:block; font-family:var(--font-head); color:var(--royal-blue); font-size:.85rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:6px; }
.tl-item h4{ font-size:1.2rem; margin-bottom:8px; }
.tl-item p{ color:var(--steel-grey); }

/* ---------- Services ---------- */
.service-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
@media(max-width:980px){
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .svc-card{ aspect-ratio:4/5.4; }
  .svc-body p{ max-height:220px; opacity:1; margin-bottom:14px; }
}
@media(max-width:640px){
  .service-grid{ grid-template-columns:1fr; }
  .svc-card{ aspect-ratio:5/4.6; }
}
.svc-card{
  position:relative; border-radius: var(--radius-lg); overflow:hidden; background:#0d1a2b; isolation:isolate;
  aspect-ratio:4/4.9; box-shadow: var(--shadow-md);
}
/* Landscape variant (homepage "What We Build") — clear, wide photos, click to enlarge */
.service-grid-landscape .svc-card{ aspect-ratio:3/2; cursor:pointer; }
.service-grid-landscape .svc-card .svc-zoom{
  position:absolute; bottom:24px; right:24px; z-index:2; width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.14); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.28);
  display:flex; align-items:center; justify-content:center; opacity:0; transform:translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.service-grid-landscape .svc-card .svc-zoom svg{ width:17px; height:17px; stroke:#fff; }
.service-grid-landscape .svc-card:hover .svc-zoom{ opacity:1; transform:translateY(0); }
@media(max-width:980px){ .service-grid-landscape .svc-card{ aspect-ratio:3/2.1; } }
@media(max-width:640px){ .service-grid-landscape .svc-card{ aspect-ratio:16/11; } }
.svc-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform 1.1s var(--ease), filter .6s; z-index:0; }
.svc-card::before{
  content:''; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(6,12,24,.15) 0%, rgba(6,12,24,.55) 55%, rgba(4,9,18,.95) 100%);
  transition: background .5s;
}
.svc-card::after{
  content:''; position:absolute; inset:0; z-index:1; opacity:0; transition:opacity .5s;
  background: radial-gradient(circle at 30% 20%, rgba(61,134,224,.55), transparent 60%);
  mix-blend-mode:screen;
}
.svc-card:hover img{ transform:scale(1.12); }
.svc-card:hover::after{ opacity:1; }
.svc-num{ position:absolute; top:24px; right:26px; z-index:2; font-family:var(--font-head); font-size:.8rem; color:rgba(255,255,255,.55); letter-spacing:.1em; }
.svc-ic{ position:absolute; top:26px; left:26px; z-index:2; width:54px; height:54px; border-radius:16px; background:rgba(255,255,255,.12); backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.25); }
.svc-ic svg{ width:26px; height:26px; stroke:#fff; }
.svc-body{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding:28px 26px; }
.svc-body h3{ color:#fff; font-size:1.28rem; margin-bottom:10px; }
.svc-body p{ color:rgba(226,234,246,.78); font-size:.9rem; line-height:1.6; max-height:0; opacity:0; overflow:hidden; transition: max-height .5s var(--ease), opacity .5s var(--ease), margin .5s; }
.svc-card:hover .svc-body p{ max-height:120px; opacity:1; margin-bottom:14px; }
.svc-link{ display:inline-flex; align-items:center; gap:8px; color:#fff; font-weight:700; font-size:.86rem; }
.svc-link svg{ width:16px; height:16px; transition:transform .35s var(--ease); }
.svc-card:hover .svc-link svg{ transform:translateX(5px); }

/* ---------- Why choose us ---------- */
.wcu-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media(max-width:980px){ .wcu-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .wcu-grid{ grid-template-columns:1fr; } }
.wcu-card{ padding:34px 26px; border-radius: var(--radius-md); background:#fff; border:1px solid var(--line); position:relative; overflow:hidden; }
.wcu-card::before{ content:''; position:absolute; left:0; top:0; height:4px; width:0%; background:linear-gradient(90deg,var(--royal-blue),var(--amber)); transition:width .6s var(--ease); }
.wcu-card:hover::before{ width:100%; }
.wcu-ic{ width:58px; height:58px; border-radius:16px; background: linear-gradient(135deg, rgba(11,78,162,.12), rgba(11,78,162,.04)); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.wcu-ic svg{ width:28px; height:28px; stroke:var(--royal-blue); }
.wcu-card h4{ font-size:1.08rem; margin-bottom:10px; }
.wcu-card p{ color:var(--steel-grey); font-size:.92rem; }

/* ---------- Projects / filters ---------- */
.filter-bar{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:46px; }
.filter-btn{
  padding:11px 22px; border-radius: var(--radius-full); border:1.5px solid var(--line); font-weight:600; font-size:.88rem;
  color: var(--steel-grey); transition: all .35s var(--ease);
}
.filter-btn:hover{ border-color: var(--royal-blue); color: var(--royal-blue); }
.filter-btn.active{ background: var(--royal-blue); border-color:var(--royal-blue); color:#fff; box-shadow: var(--shadow-blue); }

.project-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media(max-width:980px){ .project-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px){ .project-grid{ grid-template-columns:1fr; } }
.proj-card{ border-radius: var(--radius-md); overflow:hidden; position:relative; cursor:pointer; box-shadow: var(--shadow-sm); background:#0d1a2b; }
.proj-card .ph{ aspect-ratio:5/4; overflow:hidden; }
.proj-card img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.proj-card:hover img{ transform:scale(1.08); }
.proj-card .tag{ position:absolute; top:16px; left:16px; padding:6px 14px; border-radius: var(--radius-full); background:rgba(255,255,255,.9); font-size:.72rem; font-weight:700; color:var(--royal-blue); text-transform:uppercase; letter-spacing:.04em; }
.proj-card .info{ position:absolute; left:0; right:0; bottom:0; padding:20px; background:linear-gradient(180deg, transparent, rgba(4,9,18,.92)); }
.proj-card .info h4{ color:#fff; font-size:1.02rem; }
.proj-card .info span{ color:rgba(226,234,246,.75); font-size:.78rem; }
.proj-card.hide{ display:none; }

/* ---------- Gallery masonry ---------- */
.masonry{ column-count:4; column-gap:18px; }
@media(max-width:1100px){ .masonry{ column-count:3; } }
@media(max-width:760px){ .masonry{ column-count:2; } }
@media(max-width:460px){ .masonry{ column-count:1; } }
.masonry .item{ break-inside:avoid; margin-bottom:18px; border-radius: var(--radius-md); overflow:hidden; position:relative; cursor:zoom-in; box-shadow: var(--shadow-sm); }
.masonry .item img{ width:100%; display:block; transition: transform .7s var(--ease), filter .5s; }
.masonry .item:hover img{ transform:scale(1.06); }
.masonry .item .cap{ position:absolute; left:0; right:0; bottom:0; padding:14px 16px; background:linear-gradient(180deg,transparent,rgba(4,9,18,.85)); opacity:0; transition:opacity .4s; }
.masonry .item:hover .cap{ opacity:1; }
.masonry .item .cap span{ color:#fff; font-size:.8rem; font-weight:600; }

/* lightbox */
#lightbox{ position:fixed; inset:0; z-index:1300; background:rgba(4,9,18,.94); display:none; align-items:center; justify-content:center; padding:40px; }
#lightbox.open{ display:flex; }
#lightbox img{ max-width:min(1100px,92vw); max-height:86vh; border-radius:12px; box-shadow:0 30px 80px rgba(0,0,0,.5); }
#lightbox .lb-close, #lightbox .lb-nav{ position:absolute; width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; color:#fff; transition:.3s; }
#lightbox .lb-close:hover, #lightbox .lb-nav:hover{ background:var(--royal-blue); }
#lightbox .lb-close{ top:28px; right:28px; }
#lightbox .lb-nav.prev{ left:28px; top:50%; transform:translateY(-50%); }
#lightbox .lb-nav.next{ right:28px; top:50%; transform:translateY(-50%); }
#lightbox .lb-cap{ position:absolute; bottom:28px; left:0; right:0; text-align:center; color:rgba(255,255,255,.75); font-size:.86rem; }
@media(max-width:640px){ #lightbox .lb-nav{ width:42px; height:42px; } }

/* ---------- FAQ ---------- */
.faq-list{ max-width:840px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ border:1px solid var(--line); border-radius: var(--radius-md); overflow:hidden; background:#fff; }
.faq-q{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px 26px; font-weight:700; font-size:1rem; }
.faq-q .plus{ width:30px; height:30px; border-radius:50%; background: var(--off-white); display:flex; align-items:center; justify-content:center; flex-shrink:0; position:relative; transition:transform .4s var(--ease), background .4s; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--royal-blue); border-radius:2px; transition:transform .35s; }
.faq-q .plus::before{ width:12px; height:2px; }
.faq-q .plus::after{ width:2px; height:12px; }
.faq-item.open .faq-q .plus{ background:var(--royal-blue); transform:rotate(180deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after{ background:#fff; }
.faq-item.open .faq-q .plus::after{ transform:scaleY(0); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .5s var(--ease); }
.faq-a p{ padding:0 26px 24px; color:var(--steel-grey); line-height:1.75; }

/* ---------- Testimonials ---------- */
.testi-track-wrap{ overflow:hidden; }
.testi-track{ display:flex; gap:26px; transition: transform .7s var(--ease); }
.testi-card{ flex:0 0 100%; max-width:100%; padding:44px; border-radius: var(--radius-lg); background: var(--off-white); border:1px solid var(--line); }
@media(min-width:820px){ .testi-card{ flex:0 0 calc(50% - 13px); max-width:calc(50% - 13px); } }
.testi-stars{ display:flex; gap:4px; margin-bottom:20px; }
.testi-stars svg{ width:18px; height:18px; fill:var(--amber); stroke:none; }
.testi-card p{ font-size:1.05rem; line-height:1.8; color:var(--ink); margin-bottom:26px; }
.testi-person{ display:flex; align-items:center; gap:14px; }
.testi-person .av{ width:50px; height:50px; border-radius:50%; background:linear-gradient(135deg,var(--royal-blue),var(--royal-blue-dark)); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-family:var(--font-head); }
.testi-person b{ display:block; font-size:.95rem; }
.testi-person span{ font-size:.8rem; color:var(--steel-grey); }
.testi-dots{ display:flex; gap:9px; justify-content:center; margin-top:36px; }
.testi-dots button{ width:9px; height:9px; border-radius:50%; background: var(--line); transition:.35s; }
.testi-dots button.active{ width:26px; border-radius:5px; background: var(--royal-blue); }

/* ---------- CTA band ---------- */
.cta-band{ position:relative; padding:90px 0; overflow:hidden; background: linear-gradient(120deg, var(--royal-blue-dark), var(--royal-blue) 60%, #0a3a80); }
.cta-band::before{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 55%); }
.cta-inner{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-inner h2{ color:#fff; font-size:clamp(1.6rem,3vw,2.4rem); max-width:600px; }
.cta-inner p{ color:rgba(255,255,255,.8); margin-top:10px; }
.cta-actions{ display:flex; gap:16px; flex-wrap:wrap; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:40px; align-items:start; }
@media(max-width:980px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-card{ background: var(--ink); border-radius: var(--radius-lg); padding:44px; color:#fff; position:relative; overflow:hidden; }
.contact-info-card::before{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 10% 0%, rgba(11,78,162,.5), transparent 60%); }
.contact-row{ position:relative; z-index:1; display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.contact-row:last-child{ border-bottom:none; }
.contact-row .ic{ width:46px; height:46px; border-radius:14px; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-row .ic svg{ width:20px; height:20px; stroke:#fff; }
.contact-row b{ display:block; font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color:rgba(226,234,246,.6); margin-bottom:4px; }
.contact-row a, .contact-row span{ font-size:1rem; color:#fff; }
.map-frame{ margin-top:26px; border-radius: var(--radius-md); overflow:hidden; height:260px; border:1px solid rgba(255,255,255,.12); position:relative; z-index:1; }
.map-frame iframe{ width:100%; height:100%; border:0; filter:grayscale(.2) contrast(1.05); }

.form-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding:40px; box-shadow: var(--shadow-md); }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:.82rem; font-weight:700; margin-bottom:8px; color: var(--steel-grey-dark); }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border-radius:10px; border:1.5px solid var(--line); background: var(--off-white);
  transition: border-color .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--royal-blue); background:#fff; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.file-drop{ border:1.5px dashed var(--line); border-radius:10px; padding:20px; text-align:center; font-size:.86rem; color:var(--steel-grey); background:var(--off-white); cursor:pointer; transition:.3s; }
.file-drop:hover{ border-color:var(--royal-blue); color:var(--royal-blue); }
.form-note{ font-size:.78rem; color:var(--steel-grey-light); margin-top:14px; text-align:center; }
.form-success{ display:none; text-align:center; padding:40px 10px; }
.form-success.show{ display:block; }
.form-success .ic{ width:70px; height:70px; border-radius:50%; background:rgba(31,185,118,.12); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.form-success .ic svg{ width:32px; height:32px; stroke:var(--success); }

/* ---------- Footer ---------- */
footer{ background: var(--ink); color:rgba(226,234,246,.75); position:relative; overflow:hidden; }
footer::before{ content:''; position:absolute; inset:0; background: radial-gradient(circle at 15% 0%, rgba(11,78,162,.28), transparent 55%); pointer-events:none; }
.footer-top{ position:relative; z-index:1; padding:90px 0 60px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:44px; }
@media(max-width:980px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .footer-top{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-brand .logo-chip{ background:#fff; border-radius:14px; padding:8px; width:56px; height:56px; display:flex; align-items:center; justify-content:center; }
.footer-brand .logo-chip img{ width:100%; }
.footer-brand b{ color:#fff; font-family:var(--font-head); font-size:1.15rem; }
.footer-brand span{ display:block; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(226,234,246,.55); }
footer h5{ color:#fff; font-size:.92rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:22px; }
.footer-links li{ margin-bottom:12px; }
.footer-links a{ font-size:.92rem; color:rgba(226,234,246,.7); transition:.3s; }
.footer-links a:hover{ color:#fff; padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; margin-bottom:16px; font-size:.9rem; align-items:flex-start; }
.footer-contact svg{ width:18px; height:18px; stroke:var(--royal-blue-light); flex-shrink:0; margin-top:2px; }
.social-row{ display:flex; gap:10px; margin-top:22px; }
.social-row a{ width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:.35s; }
.social-row a:hover{ background: var(--royal-blue); transform:translateY(-3px); }
.social-row svg{ width:17px; height:17px; stroke:#fff; }
.footer-bottom{ position:relative; z-index:1; border-top:1px solid rgba(255,255,255,.1); padding:24px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:.82rem; }
.footer-bottom a{ color:rgba(226,234,246,.75); }
.footer-bottom a:hover{ color:#fff; }

/* ---------- Floating action buttons ---------- */
.fab-stack{ position:fixed; right:26px; bottom:26px; z-index:900; display:flex; flex-direction:column; gap:14px; align-items:flex-end; }
.fab{
  width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg); position:relative; transition: transform .4s var(--ease);
}
.fab:hover{ transform: scale(1.08) translateY(-2px); }
.fab svg{ width:26px; height:26px; }
.fab-wa{ background: linear-gradient(135deg,#25D366,#128C7E); }
.fab-wa svg{ fill:#fff; stroke:none; }
.fab-call{ background: linear-gradient(135deg,var(--royal-blue),var(--royal-blue-dark)); }
.fab-call svg{ stroke:#fff; }
.fab-top{ background:#fff; border:1px solid var(--line); opacity:0; pointer-events:none; transform:translateY(10px); }
.fab-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.fab-top svg{ stroke: var(--royal-blue); }
.fab-ping{ position:absolute; inset:-6px; border-radius:50%; border:2px solid #25D366; opacity:.6; animation:ping 2.2s ease-out infinite; }
@keyframes ping{ 0%{ transform:scale(.85); opacity:.7;} 100%{ transform:scale(1.5); opacity:0;} }

@media(max-width:480px){
  .fab-stack{ right:14px; bottom:14px; gap:10px; }
  .fab{ width:48px; height:48px; }
  .fab svg{ width:21px; height:21px; }
}

/* ---------- Quote popup modal ---------- */
.modal-overlay{ position:fixed; inset:0; background:rgba(4,9,18,.72); backdrop-filter:blur(4px); z-index:1400; display:none; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open{ display:flex; }
.modal-box{
  width:100%; max-width:460px; background:rgba(255,255,255,.92); backdrop-filter:blur(20px);
  border-radius: var(--radius-lg); padding:38px; position:relative; box-shadow:0 40px 100px rgba(0,0,0,.4);
  border:1px solid rgba(255,255,255,.6); max-height:90vh; overflow:auto;
}
.modal-close{ position:absolute; top:18px; right:18px; width:38px; height:38px; border-radius:50%; background: var(--off-white); display:flex; align-items:center; justify-content:center; }
.modal-close svg{ width:16px; height:16px; }
.modal-box h3{ font-size:1.5rem; margin-bottom:6px; padding-right:30px; }
.modal-box .sub{ color:var(--steel-grey); font-size:.9rem; margin-bottom:26px; }

/* ---------- Chatbot ---------- */
#chat-launcher{ background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark)); }
#chat-launcher svg{ stroke:#fff; }
#chat-window{
  position:fixed; right:26px; bottom:100px; width:360px; max-width:92vw; height:520px; max-height:74vh;
  background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index:901;
  display:flex; flex-direction:column; overflow:hidden; opacity:0; transform:translateY(24px) scale(.96); pointer-events:none;
  transition: all .4s var(--ease); border:1px solid var(--line);
}
#chat-window.open{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
@media(max-width:480px){
  #chat-window{
    right:10px; left:10px; bottom:10px; width:auto; max-width:none;
    height:min(560px,80vh); max-height:80vh;
  }
}
.chat-head{ background: linear-gradient(120deg, var(--royal-blue-dark), var(--royal-blue)); padding:18px 20px; display:flex; align-items:center; gap:12px; color:#fff; }
.chat-head .av{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; }
.chat-head b{ display:block; font-size:.92rem; }
.chat-head span{ font-size:.72rem; color:rgba(255,255,255,.75); display:flex; align-items:center; gap:6px; }
.chat-head span::before{ content:''; width:7px; height:7px; border-radius:50%; background:#3ddc84; }
.chat-close{ margin-left:auto; width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; }
.chat-close svg{ width:14px; height:14px; stroke:#fff; }
.chat-body{ flex:1; overflow-y:auto; padding:18px; display:flex; flex-direction:column; gap:12px; background: var(--off-white); }
.msg{ max-width:82%; padding:11px 15px; border-radius:16px; font-size:.87rem; line-height:1.55; }
.msg.bot{ background:#fff; border:1px solid var(--line); align-self:flex-start; border-bottom-left-radius:4px; }
.msg.user{ background: var(--royal-blue); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
.chat-quick{ display:flex; flex-wrap:wrap; gap:8px; padding:0 18px 14px; }
.chip{ padding:8px 14px; border-radius: var(--radius-full); background:#fff; border:1px solid var(--line); font-size:.78rem; font-weight:600; color:var(--royal-blue); transition:.3s; }
.chip:hover{ background:var(--royal-blue); color:#fff; }
.chat-input-row{ display:flex; gap:8px; padding:14px; border-top:1px solid var(--line); background:#fff; }
.chat-input-row input{ flex:1; border:1.5px solid var(--line); border-radius: var(--radius-full); padding:11px 16px; font-size:.86rem; }
.chat-input-row input:focus{ outline:none; border-color: var(--royal-blue); }
.chat-send{ width:42px; height:42px; border-radius:50%; background: var(--royal-blue); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.chat-send svg{ width:17px; height:17px; stroke:#fff; }
.typing{ display:flex; gap:4px; padding:11px 15px; }
.typing span{ width:6px; height:6px; border-radius:50%; background:var(--steel-grey-light); animation: typingBounce 1.2s infinite; }
.typing span:nth-child(2){ animation-delay:.2s; }
.typing span:nth-child(3){ animation-delay:.4s; }
@keyframes typingBounce{ 0%,60%,100%{ transform:translateY(0);} 30%{ transform:translateY(-5px);} }

/* ---------- Reveal animations ---------- */
[data-reveal]{ opacity:0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in{ opacity:1; transform:none; }
[data-reveal="fade"]{ transform:none; }
[data-reveal="left"]{ transform: translateX(-46px); }
[data-reveal="left"].in{ transform:none; }
[data-reveal="right"]{ transform: translateX(46px); }
[data-reveal="right"].in{ transform:none; }
[data-reveal="scale"]{ transform: scale(.9); }
[data-reveal="scale"].in{ transform:scale(1); }
[data-stagger] > *{ transition-delay: calc(var(--i,0) * 90ms); }

@keyframes floaty{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }
.floaty{ animation: floaty 5s ease-in-out infinite; }

/* utility */
.text-center{ text-align:center; }
.mt-0{ margin-top:0 !important; }
.mx-auto{ margin-left:auto; margin-right:auto; }
.tag-pill{ display:inline-block; padding:6px 16px; border-radius:var(--radius-full); background:rgba(11,78,162,.08); color:var(--royal-blue); font-size:.76rem; font-weight:700; letter-spacing:.05em; text-transform:uppercase; }
::selection{ background: var(--royal-blue); color:#fff; }

/* scrollbar */
::-webkit-scrollbar{ width:9px; }
::-webkit-scrollbar-track{ background: var(--off-white); }
::-webkit-scrollbar-thumb{ background: var(--steel-grey-light); border-radius:5px; }
::-webkit-scrollbar-thumb:hover{ background: var(--royal-blue); }

@media(min-width:2200px){ .container{ max-width:1560px; } body{ font-size:1.06rem; } }

/* ---------- Mobile spacing & overflow hardening ---------- */
@media(max-width:560px){
  .form-card{ padding:26px 20px; }
  .modal-box{ padding:26px 22px; }
  .contact-info-card{ padding:28px 22px; }
  .vm-card{ padding:30px 24px; min-height:auto; }
  .testi-card{ padding:28px 22px; }
  .cta-inner{ text-align:center; justify-content:center; }
  .cta-inner h2{ margin:0 auto; }
  .hero-cta{ gap:12px; }
  .hero-cta .btn{ padding:14px 24px; font-size:.88rem; }
  .about-media .frame{ aspect-ratio:5/4.2; }
  .founder-line{ flex-wrap:wrap; }
  .field-row{ gap:0; }
  .svc-num{ display:none; }
}
iframe, embed, object{ max-width:100%; }
table{ display:block; overflow-x:auto; max-width:100%; }
