/* ============================================================
   Get It Rent — UI clone
   Palette sampled from the live site
   ============================================================ */

:root{
  --cream:#f6f5f2;
  --cream-2:#f8f8f2;
  --black:#121212;
  --ink:#1a1a1a;
  --muted:#5c5c5c;
  --line:#e4e2dc;
  --navy:#004050;
  --teal:#44d4d5;
  --teal-deep:#0b7c7d;
  --teal-ink:#08494a;
  --teal-soft:#d3efef;
  --white:#fff;
  --radius:22px;
  --radius-lg:34px;
  --maxw:1240px;
  --header-h:88px;
}

*,*::before,*::after{box-sizing:border-box}

html{scroll-behavior:smooth;scroll-padding-top:90px}

body{
  margin:0;
  font-family:"Urbanist",system-ui,-apple-system,"Segoe UI",sans-serif;
  background:var(--cream);
  color:var(--ink);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
ul{list-style:none;margin:0;padding:0}
h1,h2,h3,h4{margin:0;line-height:1.08;letter-spacing:-.02em;font-weight:700}
p{margin:0}

.container{width:min(100% - 40px,var(--maxw));margin-inline:auto}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 26px;border-radius:999px;font-weight:600;font-size:15px;
  transition:transform .25s ease,background .25s ease,color .25s ease,box-shadow .25s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{background:var(--black);color:#fff}
.btn-dark:hover{box-shadow:0 10px 24px rgba(0,0,0,.22)}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{box-shadow:0 10px 24px rgba(0,64,80,.4)}
.btn-ghost{border:1.5px solid rgba(0,0,0,.22);color:var(--black)}
.btn-ghost:hover{background:rgba(0,0,0,.05)}
.btn-block{width:100%;padding:16px}

/* ---------- headings helpers ---------- */
.eyebrow{
  display:inline-block;font-size:13px;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted);margin-bottom:14px;
  padding-left:26px;position:relative;
}
.eyebrow::before{
  content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:16px;height:2px;background:var(--teal);
}
.eyebrow.light{color:rgba(255,255,255,.7)}

.section-title{font-size:clamp(30px,4.2vw,52px);font-weight:700;max-width:16ch}
.section-title.light{color:#fff}
.section-sub{margin-top:18px;max-width:62ch;color:var(--muted);font-size:17px}
.section-sub.light{color:rgba(255,255,255,.72)}
.hl-accent{background:linear-gradient(transparent 62%,var(--teal) 62%);padding-inline:2px}
.hl-g{color:var(--teal-deep)}

/* ---------- reveal animation ---------- */
/* Only hide content when JS is confirmed running (html.js is set in <head>),
   so a script failure can never leave the page blank. */
.js .reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.3,1)}
.js .reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky;top:0;z-index:100;background:var(--cream);
  transition:box-shadow .3s ease,background .3s ease;
}
.site-header.scrolled{background:rgba(246,245,242,.92);backdrop-filter:blur(14px);box-shadow:0 1px 0 rgba(0,0,0,.07)}

.header-inner{display:flex;align-items:center;gap:28px;height:var(--header-h)}

.logo{display:flex;align-items:center;gap:2px}
.logo img{height:58px;width:auto;display:block}
.logo-text{font-size:24px;font-weight:700;letter-spacing:-.03em}
.logo-text.big{font-size:clamp(56px,13vw,180px);line-height:.9}
.logo-mark{width:26px;height:26px;margin-bottom:2px}
.logo-mark svg{width:100%;height:100%}

.nav{margin-left:auto}
.nav-list{display:flex;align-items:center;gap:4px}
.nav-item{position:relative}
.nav-link{
  display:inline-flex;align-items:center;gap:6px;padding:10px 16px;
  font-size:16.5px;font-weight:600;border-radius:10px;transition:background .2s ease;
}
.nav-link:hover{background:rgba(0,0,0,.05)}
.caret{width:7px;height:7px;border-right:1.6px solid currentColor;border-bottom:1.6px solid currentColor;transform:rotate(45deg) translateY(-2px);transition:transform .25s ease}
.nav-item.open .caret{transform:rotate(-135deg) translateY(-2px)}

.mega{
  position:absolute;top:calc(100% + 12px);left:50%;translate:-50% 0;
  display:grid;grid-template-columns:repeat(2,minmax(210px,1fr));gap:4px;
  background:#fff;border:1px solid var(--line);border-radius:20px;padding:14px;
  box-shadow:0 26px 60px rgba(0,0,0,.14);
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .22s ease,transform .22s ease,visibility .22s;
}
.mega-3{grid-template-columns:repeat(3,minmax(180px,1fr))}
.nav-item.open .mega{opacity:1;visibility:visible;transform:none}
.mega a{display:block;padding:11px 14px;border-radius:13px;transition:background .18s ease}
.mega a:hover{background:var(--cream)}
.mega strong{display:block;font-size:15px;font-weight:600}
.mega span{font-size:13px;color:var(--muted)}

.header-cta{padding:12px 24px}

.burger{display:none;flex-direction:column;gap:5px;padding:8px;margin-left:auto}
.burger span{width:22px;height:2px;background:var(--black);border-radius:2px;transition:transform .3s ease,opacity .2s ease}
.burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.active span:nth-child(2){opacity:0}
.burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{
  display:none;flex-direction:column;gap:2px;padding:0 20px;
  max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s ease;
  background:var(--cream);border-top:1px solid var(--line);
}
.mobile-nav.open{max-height:420px;padding:14px 20px 24px}
.mobile-nav a{padding:12px 4px;font-weight:500;border-bottom:1px solid var(--line)}
.mobile-nav .btn{margin-top:14px;border-bottom:0}

/* ============================================================
   HERO
   ============================================================ */
.hero{padding:clamp(40px,6vw,72px) 0 clamp(56px,7vw,96px)}
.hero-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:clamp(32px,5vw,70px);align-items:center}

.hero h1{font-size:clamp(38px,5.6vw,68px);font-weight:700;letter-spacing:-.035em}
.hero h1 mark{
  background:var(--teal);color:var(--black);padding:0 12px 4px;
  border-radius:6px;box-decoration-break:clone;-webkit-box-decoration-break:clone;
}
.hero-copy p{margin-top:26px;max-width:46ch;color:#3d3d3d;font-size:16px}
.hero-actions{display:flex;gap:12px;margin-top:34px;flex-wrap:wrap}

.hero-media{position:relative}
/* soft brand slab offset behind the photo */
.hero-media::before{
  content:"";position:absolute;z-index:0;right:-18px;bottom:-18px;
  width:64%;height:60%;background:var(--teal-soft);border-radius:var(--radius-lg);
}
/* thin accent rule tucked behind the top-left corner */
.hero-media::after{
  content:"";position:absolute;z-index:0;left:-14px;top:26px;
  width:6px;height:112px;background:var(--teal);border-radius:6px;
}
.hero-photo{
  position:relative;z-index:1;border-radius:var(--radius-lg);
  overflow:hidden;aspect-ratio:4/3;background:#ddd8cf;
  box-shadow:0 26px 56px rgba(0,0,0,.16);
}
.hero-photo img{width:100%;height:100%;object-fit:cover}

.hero-badge{
  position:absolute;z-index:2;left:-26px;bottom:32px;
  display:flex;align-items:center;gap:14px;
  background:#fff;border:1px solid var(--line);border-radius:20px;
  padding:16px 22px;box-shadow:0 18px 40px rgba(0,0,0,.16);
}
.hero-badge b{font-size:32px;font-weight:700;letter-spacing:-.03em;line-height:1;color:var(--teal-deep)}
.hero-badge span{font-size:13.5px;font-weight:600;line-height:1.35;color:var(--muted)}

/* ============================================================
   STATS (dark)
   ============================================================ */
.stats{background:var(--black);color:#fff;padding:clamp(64px,9vw,120px) 0;border-radius:36px 36px 0 0}
.stats-title{font-size:clamp(30px,4.4vw,56px);max-width:20ch;font-weight:700}
.stats-title em{font-style:normal;color:var(--teal)}
.stats-sub{margin-top:22px;max-width:70ch;color:rgba(255,255,255,.68);font-size:17px}

.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
  margin-top:clamp(44px,6vw,76px);
  border-top:1px solid rgba(255,255,255,.14);padding-top:44px;
}
.stat{display:flex;flex-direction:column;gap:6px}
.stat-num{font-size:clamp(38px,5vw,64px);font-weight:700;letter-spacing:-.03em;color:var(--teal)}
.stat-label{color:rgba(255,255,255,.62);font-size:15px}

.partners{margin-top:clamp(48px,6vw,80px)}
.partners-title{font-size:13px;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:22px}
.marquee{overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.marquee-track{display:flex;gap:56px;width:max-content;animation:scroll-x 28s linear infinite}
.marquee:hover .marquee-track{animation-play-state:paused}
.marquee-track span{
  font-size:26px;font-weight:700;letter-spacing:-.02em;
  color:rgba(255,255,255,.34);white-space:nowrap;transition:color .25s ease;
}
.marquee-track span:hover{color:#fff}
@keyframes scroll-x{to{transform:translateX(-50%)}}

/* ============================================================
   PRODUCTS (flagship platforms — visually separate from CATEGORIES below)
   ============================================================ */
.products-section{padding:clamp(64px,9vw,120px) 0;background:var(--cream-2)}

.cat-grid.product-grid{grid-template-columns:repeat(2,1fr)}
.product-grid .cat-card{
  background:#fff;border:1px solid var(--line);min-height:0;
  padding:0;gap:0;flex-direction:row;align-items:stretch;
}
.product-grid .cat-card:hover{box-shadow:0 24px 50px rgba(0,0,0,.09);border-color:var(--teal)}
.product-grid .cat-logo{
  display:flex;align-items:center;justify-content:center;flex:0 0 220px;
  background:#fff;border-bottom:0;border-right:1px solid var(--line);
  padding:24px;min-height:0;
}
.product-grid .cat-logo img{max-height:104px;max-width:100%;width:auto;object-fit:contain}
.product-grid .cat-body{padding:26px;gap:12px}
.product-grid .link-arrow{
  align-self:flex-start;margin-top:4px;padding:10px 20px;border-radius:999px;
  background:var(--black);color:#fff;border:1.5px solid var(--black);
  transition:box-shadow .25s ease,transform .25s ease;
}
.product-grid .link-arrow:hover{box-shadow:0 10px 24px rgba(0,0,0,.22);transform:translateY(-2px)}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories{background:var(--black);color:#fff;padding:clamp(56px,8vw,110px) 0 clamp(70px,9vw,130px)}
.categories .eyebrow{color:rgba(255,255,255,.7)}
.categories .section-title{color:#fff}
.categories .section-sub{color:rgba(255,255,255,.68)}

.cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:clamp(38px,5vw,64px)}
.cat-card{
  background:var(--cream);color:var(--black);border-radius:var(--radius);
  padding:26px;display:flex;flex-direction:column;gap:12px;min-height:230px;
  transition:transform .35s cubic-bezier(.2,.7,.3,1),background .35s ease;
  position:relative;overflow:hidden;
}
.cat-card::after{
  content:"";position:absolute;right:-70px;bottom:-70px;width:220px;height:220px;
  border-radius:50%;background:var(--teal);opacity:0;transition:opacity .35s ease,transform .35s ease;
  transform:scale(.6);
}
.cat-card:hover{transform:translateY(-8px)}
.cat-card:hover::after{opacity:.35;transform:scale(1)}
.cat-icon{
  width:52px;height:52px;border-radius:15px;background:#fff;
  display:grid;place-items:center;box-shadow:0 4px 14px rgba(0,0,0,.06);
}
.cat-icon svg{width:26px;height:26px;stroke:var(--black);stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round}
.cat-body{display:flex;flex-direction:column;gap:12px;flex:1}
.cat-card h3{font-size:21px;font-weight:700;margin-top:4px}
.cat-body p{font-size:14.5px;color:var(--muted);flex:1}
.link-arrow{
  display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:14.5px;
  color:var(--black);position:relative;
}
.link-arrow::after{content:"→";transition:transform .25s ease}
.link-arrow:hover::after{transform:translateX(5px)}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why{padding:clamp(64px,9vw,120px) 0;background:var(--cream)}
.why-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(30px,5vw,72px);align-items:start}

.accordion{margin-top:40px;border-top:1px solid var(--line)}
.acc-item{border-bottom:1px solid var(--line)}
.acc-head{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:22px 0;text-align:left;font-size:clamp(18px,2vw,23px);font-weight:600;
}
.acc-icon{position:relative;width:26px;height:26px;border-radius:50%;background:var(--black);flex:none}
.acc-icon::before,.acc-icon::after{
  content:"";position:absolute;left:50%;top:50%;background:#fff;border-radius:2px;
  transform:translate(-50%,-50%);transition:transform .3s ease,opacity .3s ease;
}
.acc-icon::before{width:11px;height:1.8px}
.acc-icon::after{width:1.8px;height:11px}
.acc-item.open .acc-icon{background:var(--teal)}
.acc-item.open .acc-icon::after{transform:translate(-50%,-50%) rotate(90deg);opacity:0}
.acc-body{max-height:0;overflow:hidden;transition:max-height .45s cubic-bezier(.2,.7,.3,1)}
.acc-body p{padding-bottom:24px;color:var(--muted);max-width:60ch}

.why-kicker{font-size:clamp(20px,2.4vw,28px);font-weight:600;margin-bottom:20px}
.why-cards{display:grid;gap:16px}
.why-card{border-radius:var(--radius);padding:28px;transition:transform .3s ease}
.why-card:hover{transform:translateY(-4px)}
.why-card h3{font-size:21px;margin-bottom:8px}
.why-card p{color:var(--muted);font-size:15px}
.why-card.cream{background:var(--teal-soft)}
.why-card.cream p{color:#12504e}
.why-card.navy{background:var(--navy);color:#fff}
.why-card.navy .big{display:block;font-size:clamp(42px,5vw,62px);font-weight:700;letter-spacing:-.03em;line-height:1}
.why-card.navy p{color:rgba(255,255,255,.82);font-weight:600;margin-top:6px}
.why-card.white{background:#fff;border:1px solid var(--line)}
.stars{color:var(--navy);letter-spacing:3px;font-size:19px;margin-bottom:8px}
.rating{font-weight:700;color:var(--black) !important;font-size:17px !important}

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions{padding:clamp(64px,9vw,120px) 0;background:var(--cream-2)}
.sol-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:clamp(38px,5vw,62px)}
.sol-card{
  background:#fff;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);
  display:flex;flex-direction:column;transition:transform .35s cubic-bezier(.2,.7,.3,1),box-shadow .35s ease;
}
.sol-card:hover{transform:translateY(-8px);box-shadow:0 24px 50px rgba(0,0,0,.1)}
.sol-img{height:210px;background-size:cover;background-position:center;background-color:#ddd8cf}
.sol-body{padding:26px;display:flex;flex-direction:column;gap:12px;flex:1}
.sol-body h3{font-size:23px}
.sol-body p{color:var(--muted);font-size:15px;flex:1}

/* ============================================================
   CUSTOMER STORIES
   ============================================================ */
.stories{background:var(--black);color:#fff;padding:clamp(64px,9vw,120px) 0;border-radius:36px}
.stories-head{display:flex;justify-content:space-between;align-items:flex-end;gap:30px;flex-wrap:wrap}
/* ============================================================
   DRONE
   ============================================================ */
.drone{padding:clamp(56px,8vw,110px) 0}
.drone-inner{
  background:var(--black);color:#fff;border-radius:var(--radius-lg);
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,4vw,56px);
  padding:clamp(30px,4vw,56px);align-items:center;overflow:hidden;
}
.drone-copy h2{font-size:clamp(27px,3.4vw,42px);max-width:16ch;margin-bottom:18px}
.drone-sub{color:rgba(255,255,255,.7);max-width:52ch;margin-bottom:28px}
.drone-media{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3;background:#222}
.drone-media img{width:100%;height:100%;object-fit:cover}

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights{padding:clamp(56px,8vw,110px) 0}
.insights-head{display:flex;justify-content:space-between;align-items:flex-end;gap:30px;flex-wrap:wrap}
.insight-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:clamp(36px,5vw,58px)}
.insight-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  overflow:hidden;display:grid;grid-template-columns:.85fr 1.15fr;
  transition:transform .35s cubic-bezier(.2,.7,.3,1),box-shadow .35s ease;
}
.insight-card:hover{transform:translateY(-6px);box-shadow:0 22px 46px rgba(0,0,0,.1)}
.insight-img{background-size:cover;background-position:center;min-height:220px;background-color:#ddd8cf}
.insight-body{padding:26px;display:flex;flex-direction:column;gap:10px;justify-content:center}
.insight-body h3{font-size:20px;line-height:1.25}
.insight-body p{color:var(--muted);font-size:14.5px}
.insight-body .link-arrow{margin-top:auto;padding-top:8px}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{padding:clamp(56px,8vw,110px) 0}
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(32px,5vw,72px);align-items:start}

.contact-list{margin-top:42px;display:grid;gap:26px}
.contact-list li{display:flex;gap:16px}
.ci{
  width:44px;height:44px;flex:none;border-radius:14px;background:var(--navy);
  display:grid;place-items:center;font-size:19px;
}
.contact-list strong{display:block;font-size:13px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-bottom:6px;font-weight:600}
.contact-list p{font-size:16.5px;font-weight:500;max-width:36ch}
.contact-list a:hover{color:var(--teal-deep)}

.contact-form{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(24px,3vw,38px)}
.fields{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.field{display:flex;flex-direction:column;gap:7px}
.field.full{grid-column:1/-1}
.field label{font-size:13.5px;font-weight:600;color:#333}
.field input,.field select,.field textarea{
  font:inherit;font-size:15px;padding:12px 14px;border:1px solid var(--line);
  border-radius:12px;background:var(--cream);color:var(--ink);
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
  width:100%;
}
.field textarea{resize:vertical;min-height:110px}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--teal);background:#fff;box-shadow:0 0 0 3px rgba(68,212,213,.30);
}
.field input::placeholder,.field textarea::placeholder{color:#a8a5a0}

.consent{display:flex;gap:11px;align-items:flex-start;margin:22px 0;font-size:13.5px;color:var(--muted)}
.consent input{margin-top:3px;accent-color:var(--teal-deep);width:16px;height:16px;flex:none}
.form-note{margin-top:14px;font-size:14px;color:var(--teal-deep);font-weight:600;text-align:center;line-height:1.5}
.form-note.sending{color:var(--muted)}
.form-note.success{color:var(--teal-deep)}
.form-note.error{color:#c0392b}

/* Honeypot — off-screen for people, still fillable by bots.
   Never use display:none; some bots skip hidden fields. */
.hp{position:absolute!important;left:-9999px!important;top:auto;width:1px;height:1px;overflow:hidden}

.btn[disabled]{opacity:.6;cursor:not-allowed;transform:none}
.btn[disabled]:hover{transform:none;box-shadow:none}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  position:relative;background:var(--black);color:#fff;
  padding:clamp(56px,7vw,90px) 0 64px;border-radius:36px 36px 0 0;overflow:hidden;
}
.footer-watermark{
  position:absolute;left:0;right:0;bottom:-.1em;text-align:center;
  font-size:clamp(90px,16vw,260px);font-weight:800;letter-spacing:-.03em;line-height:1;
  background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.03));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  white-space:nowrap;user-select:none;pointer-events:none;z-index:0;
}
.footer-top,.footer-bottom{position:relative;z-index:1}
.footer-top{display:grid;grid-template-columns:.9fr 1.7fr;gap:clamp(48px,7vw,100px)}
.footer-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.fcol h4{font-size:15px;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);margin-bottom:18px;font-weight:600}
.fcol a{display:block;padding:6px 0;font-size:15.5px;color:rgba(255,255,255,.65);transition:color .2s ease,transform .2s ease}
.fcol a:hover{color:#fff;transform:translateX(3px)}

.footer-brand-col{display:flex;flex-direction:column;align-items:flex-start;gap:22px}
.footer-logo-wrap{display:inline-flex;align-items:center}
.footer-logo-wrap img{height:76px;width:auto;display:block}
.footer-brand-col p{color:rgba(255,255,255,.62);font-size:15.5px;line-height:1.65;max-width:38ch}

.footer-bottom{
  margin-top:52px;padding-top:30px;border-top:1px solid rgba(255,255,255,.12);
  display:flex;justify-content:space-between;align-items:center;gap:18px;flex-wrap:wrap;
  font-size:14px;color:rgba(255,255,255,.55);
}
.legal{display:flex;gap:24px;flex-wrap:wrap}
.legal a:hover{color:#fff}

/* ---------- floating CTA ---------- */
.fab{
  position:fixed;right:20px;bottom:20px;z-index:90;
  background:var(--teal);color:var(--black);font-weight:600;font-size:14.5px;
  padding:14px 24px;border-radius:999px;box-shadow:0 12px 30px rgba(68,212,213,.45);
  opacity:0;pointer-events:none;transform:translateY(16px);
  transition:opacity .35s ease,transform .35s ease;
}
.fab.show{opacity:1;pointer-events:auto;transform:none}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .nav{display:none}
  .header-cta{display:none}
  .burger{display:flex}
  .mobile-nav{display:flex}
  .hero-grid{grid-template-columns:1fr}
  .why-grid,.contact-grid,.footer-top{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:repeat(3,1fr)}
  .cat-grid,.sol-grid{grid-template-columns:repeat(2,1fr)}
  .cat-grid.product-grid{grid-template-columns:repeat(2,1fr)}
  .insight-grid{grid-template-columns:1fr}
  .drone-inner{grid-template-columns:1fr}
}

@media (max-width:720px){
  :root{--radius-lg:26px}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:28px}
  .cat-grid,.sol-grid{grid-template-columns:1fr}
  .cat-grid.product-grid{grid-template-columns:1fr}
  .product-grid .cat-card{flex-direction:column}
  .product-grid .cat-logo{flex:none;border-right:0;border-bottom:1px solid var(--line);min-height:96px}
  .footer-cols{grid-template-columns:repeat(2,1fr)}
  .fields{grid-template-columns:1fr}
  .insight-card{grid-template-columns:1fr}
  .hero-badge{left:14px;bottom:14px;padding:12px 16px;gap:11px}
  .hero-badge b{font-size:26px}
  .hero-media::after{display:none}
  .stories-head,.insights-head{flex-direction:column;align-items:flex-start}
  .footer-bottom{flex-direction:column}
  .fab{right:14px;bottom:14px;padding:12px 20px}
}

/* ============================================================
   ADDITIONS — pipeline, process, numbers, team, legal page
   ============================================================ */

/* ---------- feature chips on build cards ---------- */
.cat-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:2px}
.cat-tag{
  font-size:11.5px;font-weight:600;letter-spacing:.02em;padding:4px 10px;
  border-radius:999px;background:rgba(0,0,0,.06);color:#3d3d3d;
}

/* ---------- 48-hour pipeline ---------- */
.pipeline{padding:clamp(56px,8vw,110px) 0;background:var(--cream-2)}

/* ---------- process strip ---------- */
.process{margin-top:clamp(40px,5vw,64px)}
.process-title{
  font-size:12.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--muted);margin-bottom:20px;
}
.process-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.process-step{
  background:#fff;border:1px solid var(--line);border-radius:18px;padding:22px;
  display:flex;flex-direction:column;gap:8px;position:relative;
}
.process-step .n{
  width:34px;height:34px;border-radius:50%;background:var(--black);color:#fff;
  display:grid;place-items:center;font-size:13.5px;font-weight:700;
}
.process-step:nth-child(3) .n{background:var(--teal);color:var(--black)}
.process-step h4{font-size:17px}
.process-step p{font-size:14px;color:var(--muted)}

/* ---------- by the numbers ---------- */
.numbers{background:var(--navy);color:#fff;padding:clamp(48px,6vw,84px) 0}
.numbers .eyebrow{color:rgba(255,255,255,.72)}
.numbers .eyebrow::before{background:var(--teal)}
.numbers .section-title{max-width:24ch}
.num-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  margin-top:clamp(30px,4vw,48px);border-top:1px solid rgba(0,0,0,.18);padding-top:36px;
}
.num-item span{display:block;font-size:clamp(34px,4.4vw,56px);font-weight:700;letter-spacing:-.03em;line-height:1}
.num-item p{margin-top:8px;font-size:15px;font-weight:600;color:rgba(255,255,255,.78)}

/* ---------- leadership team ---------- */
.team{padding:clamp(56px,8vw,110px) 0;background:var(--cream)}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:clamp(36px,5vw,58px)}
.member{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px;
  display:flex;flex-direction:column;gap:12px;
  transition:transform .35s cubic-bezier(.2,.7,.3,1),box-shadow .35s ease;
}
.member:hover{transform:translateY(-6px);box-shadow:0 20px 44px rgba(0,0,0,.09)}
.avatar{
  align-self:center;width:128px;height:128px;border-radius:50%;display:grid;place-items:center;overflow:hidden;
  font-size:27px;font-weight:700;letter-spacing:-.02em;background:var(--teal);color:var(--black);
}
.avatar img{width:100%;height:100%;object-fit:cover}
.member:nth-child(2) .avatar{background:var(--navy);color:#fff}
.member:nth-child(3) .avatar{background:var(--black);color:#fff}
.member:nth-child(4) .avatar{background:var(--teal-soft);color:#0a4a4a}
.member h3{font-size:20px;text-align:center}
.member-role{
  font-size:11.5px;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:var(--muted);
  text-align:center;
}
.member-points{display:flex;flex-direction:column;gap:8px;margin-top:2px}
.member-points li{
  font-size:14px;color:var(--muted);padding-left:18px;position:relative;line-height:1.45;
}
.member-points li::before{
  content:"";position:absolute;left:0;top:8px;width:7px;height:7px;border-radius:50%;background:var(--teal);
}

/* ---------- footer company line ---------- */
.footer-legalinfo{
  margin-top:14px;font-size:12.5px;color:rgba(255,255,255,.4);line-height:1.7;
}

/* ---------- legal / privacy page ---------- */
.legal-hero{padding:clamp(48px,6vw,84px) 0 clamp(24px,3vw,40px)}
.legal-hero h1{font-size:clamp(34px,5vw,58px)}
.legal-meta{margin-top:14px;color:var(--muted);font-size:15px}
.legal-body{padding-bottom:clamp(56px,8vw,110px)}
.legal-wrap{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:clamp(26px,4vw,56px);max-width:900px;margin-inline:auto;
}
.legal-wrap > p{color:#3d3d3d;font-size:16px;margin-bottom:18px}
.legal-wrap h2{
  font-size:clamp(20px,2.3vw,26px);margin:38px 0 14px;padding-top:26px;
  border-top:1px solid var(--line);display:flex;gap:12px;align-items:baseline;
}
.legal-wrap h2:first-of-type{border-top:0;padding-top:0;margin-top:26px}
.legal-wrap h2 i{font-style:normal;color:var(--teal-deep);font-size:15px;font-weight:700}
.legal-wrap h3{font-size:17.5px;margin:22px 0 10px}
.legal-wrap ul{display:grid;gap:9px;margin:12px 0 18px}
.legal-wrap ul li{position:relative;padding-left:20px;color:var(--muted);font-size:15.5px}
.legal-wrap ul li::before{
  content:"";position:absolute;left:0;top:9px;width:7px;height:7px;border-radius:50%;background:var(--teal);
}
.legal-wrap ul li strong{color:var(--ink)}
.legal-card{
  background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);
  padding:24px;margin:18px 0;
}
.legal-card p{font-size:15.5px;color:#3d3d3d;margin-bottom:6px}
.legal-card p:last-child{margin-bottom:0}
.legal-foot{
  margin-top:34px;padding-top:22px;border-top:1px solid var(--line);
  font-size:13.5px;color:var(--muted);line-height:1.8;
}

/* ---------- responsive for additions ---------- */
@media (max-width:1080px){
  .process-strip{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .iso-block{grid-template-columns:1fr}
  .num-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .process-strip,.team-grid{grid-template-columns:1fr}
  .num-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .iso-meta strong{min-width:0}
  .iso-meta div{flex-direction:column;gap:2px}
}

/* ============================================================
   MULTI-PAGE — active nav, page heroes, shared page blocks
   ============================================================ */

/* ---------- active nav state ---------- */
.nav-link.active{font-weight:700}
.nav-link.active::after{
  content:"";position:absolute;left:14px;right:14px;bottom:1px;height:2px;
  background:var(--teal);border-radius:2px;
}
.nav-item .nav-link{position:relative}
.mobile-nav a.active{color:var(--teal-deep);font-weight:700}

/* ---------- inner page hero ---------- */
.page-hero{padding:clamp(42px,6vw,84px) 0 clamp(28px,4vw,50px);background:var(--cream)}
.page-hero h1{font-size:clamp(34px,5.2vw,62px);max-width:19ch;letter-spacing:-.032em}
.page-hero h1 mark{
  background:var(--teal);color:var(--black);padding:0 10px 3px;border-radius:6px;
  box-decoration-break:clone;-webkit-box-decoration-break:clone;
}
.page-hero .lead{margin-top:20px;max-width:64ch;color:#3d3d3d;font-size:17px}
.page-hero .hero-actions{margin-top:30px}

/* ---------- friction pills (dark bands) ---------- */
.friction{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.friction span{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);color:#fff;
  border-radius:999px;padding:9px 16px;font-size:14.5px;font-weight:500;
}

/* ---------- emphasis callout ---------- */
.callout{
  margin-top:26px;background:var(--black);color:#fff;border-radius:var(--radius);
  padding:26px 30px;
}
.callout p{font-size:clamp(17px,2vw,22px);font-weight:600;line-height:1.35}

/* a pipeline section used only to house a standalone callout banner
   (no heading/content above it) doesn't need the full section padding */
.pipeline.callout-only{padding:32px 0}
.pipeline.callout-only .callout{margin-top:0}

/* ---------- centred mini CTA ---------- */
.mini-cta{background:var(--cream-2);padding:clamp(44px,6vw,84px) 0}
.mini-cta-inner{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:clamp(28px,4vw,54px);text-align:center;
}
.mini-cta-inner h2{font-size:clamp(24px,3.2vw,40px);margin-bottom:12px}
.mini-cta-inner p{color:var(--muted);max-width:58ch;margin:0 auto 26px;font-size:16.5px}
.mini-cta-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ---------- social buttons ---------- */
.socials{display:flex;gap:12px;margin-top:26px;flex-wrap:wrap}
.socials a{
  padding:11px 20px;border-radius:999px;border:1px solid var(--line);background:#fff;
  font-weight:600;font-size:14.5px;transition:transform .25s ease,border-color .25s ease;
}
.socials a:hover{transform:translateY(-2px);border-color:var(--teal-deep);color:var(--teal-deep)}

/* ---------- page-level stat row ---------- */
.pagestats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
  margin-top:clamp(30px,4vw,46px);
}
.pagestats div{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px;
}
.pagestats span{display:block;font-size:clamp(30px,3.6vw,46px);font-weight:700;letter-spacing:-.03em;line-height:1;color:var(--teal-deep)}
.pagestats div:nth-child(2) span{color:var(--black)}
.pagestats div:nth-child(3) span{color:var(--black)}
.pagestats p{margin-top:8px;font-size:15px;color:var(--muted);font-weight:500}

@media (max-width:1080px){
  .pagestats{grid-template-columns:1fr}
}

/* ============================================================
   Brand teal on dark backgrounds — the deep tone lacks contrast
   against #121212, so accents there use the brighter sampled tone.
   ============================================================ */
.stats .stat-num{color:var(--teal)}
.stories .hl-g,
.categories .hl-g,
.drone .hl-g,
.stats .hl-g,
.iso-section .hl-g{color:var(--teal)}
.fcol a:hover{color:var(--teal)}
/* On dark sections the highlighter tint sits behind white text, so the
   accent becomes coloured text instead of a background wash. */
.categories .hl-accent,
.stats .hl-accent,
.stories .hl-accent,
.drone .hl-accent{background:none;color:var(--teal)}

/* The open accordion icon fills with the brand teal, so its plus/minus
   bars flip to dark to stay visible. */
.acc-item.open .acc-icon::before,
.acc-item.open .acc-icon::after{background:var(--black)}

/* ============================================================
   Sticky philosophy cards
   The right column tracks the accordion as it scrolls. Gated on a
   viewport tall enough to hold the column (otherwise its lower half
   would be unreachable), and off once the grid stacks to one column.
   ============================================================ */
@media (min-width:1081px) and (min-height:720px){
  .why-right,
  .contact-form{position:sticky;top:calc(var(--header-h) + 24px);align-self:start}
}

/* Font Awesome marks in the contact icons and social buttons */
.ci i{color:#fff;font-size:17px;line-height:1}
.socials a{display:inline-flex;align-items:center;gap:9px}
.socials a i{font-size:15px;line-height:1}

/* Social links pick up their own brand colour on hover.
   Explicit .ig/.fb/.yt classes rather than :has(), so this works
   regardless of :has() support. */
.socials a.ig:hover,
.socials a.fb:hover,
.socials a.yt:hover{background:#fff}
.socials a.ig:hover{border-color:#dc2743;color:#dc2743;box-shadow:0 8px 20px rgba(220,39,67,.22)}
.socials a.fb:hover{border-color:#1877f2;color:#1877f2;box-shadow:0 8px 20px rgba(24,119,242,.22)}
.socials a.yt:hover{border-color:#ff0000;color:#ff0000;box-shadow:0 8px 20px rgba(255,0,0,.20)}

.socials a.fb:hover i{color:#1877f2}
.socials a.yt:hover i{color:#ff0000}
/* Instagram is a gradient, so it paints the glyph itself */
.socials a.ig:hover i{
  background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
}

/* ============================================================
   Philosophy — numbered cards stacked in the left column,
   beside the sticky panel.
   ============================================================ */
.phil-list{display:grid;gap:20px;margin-top:clamp(32px,4vw,44px)}
.phil-card{
  position:relative;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:30px 28px 26px;
  transition:transform .35s cubic-bezier(.2,.7,.3,1),box-shadow .35s ease;
}
.phil-card:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(0,0,0,.09)}
.phil-num{
  position:absolute;top:-15px;left:26px;width:36px;height:36px;border-radius:50%;
  background:var(--black);color:var(--teal);display:grid;place-items:center;
  font-size:12.5px;font-weight:700;letter-spacing:.04em;
}
.phil-card h3{font-size:clamp(19px,2vw,22px);font-weight:700;letter-spacing:-.02em;margin-bottom:8px}

.phil-card p{color:var(--muted);font-size:15px}

/* ------------------------------------------------------------
   Auto-rotating phrase in the first philosophy card.
   A masked window with a stack of lines sliding up; the first
   line repeats at the end so the loop has no visible jump.
   ------------------------------------------------------------ */
.wordflip{
  display:inline-block;overflow:hidden;
  height:1.2em;vertical-align:bottom;
  /* the 1.2em window sits slightly proud of the h3 baseline; nudge it back */
  position:relative;top:.06em;
}
.wordflip-track{display:block;animation:wordflip 9s cubic-bezier(.65,0,.2,1) infinite}
.wordflip-track > span{
  display:block;height:1.2em;line-height:1.2em;
  color:var(--teal-deep);white-space:nowrap;
}
@keyframes wordflip{
  0%,      28%    {transform:translateY(0)}
  33.33%,  61.33% {transform:translateY(-1.2em)}
  66.66%,  94.66% {transform:translateY(-2.4em)}
  100%            {transform:translateY(-3.6em)}
}
/* Hold on the first phrase when motion is not welcome */
@media (prefers-reduced-motion:reduce){
  .wordflip-track{animation:none}
}

/* ------------------------------------------------------------
   Centred page heroes across every inner page.
   The eyebrow gets a rule on both sides so it stays balanced
   once it is no longer flush left.
   ------------------------------------------------------------ */
.page-hero .container,
.legal-hero .container{text-align:center}

.page-hero h1,
.legal-hero h1,
.page-hero .lead,
.legal-hero .legal-meta{margin-inline:auto}

.page-hero .hero-actions{justify-content:center}

.page-hero .eyebrow,
.legal-hero .eyebrow{
  padding-left:0;display:inline-flex;align-items:center;gap:14px;
}
.page-hero .eyebrow::before,
.legal-hero .eyebrow::before,
.page-hero .eyebrow::after,
.legal-hero .eyebrow::after{
  content:"";position:static;transform:none;display:block;
  width:26px;height:2px;background:var(--teal);
}

/* ------------------------------------------------------------
   Centred section headings.
   Applies to full-width sections only — the heading blocks that
   span the container. Two-column sections keep left-aligned
   headings so they stay tied to their column.
   ------------------------------------------------------------ */
.stats > .container > .stats-title,
.stats > .container > .stats-sub,
.categories > .container > .section-title,
.categories > .container > .section-sub,
.products-section > .container > .section-title,
.products-section > .container > .section-sub,
.solutions > .container > .section-title,
.solutions > .container > .section-sub,
.pipeline > .container > .section-title,
.pipeline > .container > .section-sub,
.numbers > .container > .section-title,
.numbers > .container > .section-sub,
.iso-section > .container > .section-title,
.iso-section > .container > .section-sub,
.gallery > .container > .section-title,
.gallery > .container > .section-sub,
.team > .container > .section-title,
.team > .container > .section-sub,
.stories-head .section-title,
.stories-head .section-sub,
.insights-head .section-title,
.insights-head .section-sub{
  text-align:center;margin-inline:auto;
}

.stats > .container > .partners-title{text-align:center}

/* the head rows are flex with the heading and a button side by side —
   stack and centre them instead */
.stories-head,
.insights-head{flex-direction:column;align-items:center;text-align:center}

/* centred eyebrows get a rule on both sides */
.categories > .container > .eyebrow,
.products-section > .container > .eyebrow,
.solutions > .container > .eyebrow,
.pipeline > .container > .eyebrow,
.numbers > .container > .eyebrow,
.iso-section > .container > .eyebrow,
.gallery > .container > .eyebrow,
.team > .container > .eyebrow,
.stories-head .eyebrow,
.insights-head .eyebrow{
  display:flex;width:fit-content;margin-inline:auto;
  padding-left:0;align-items:center;gap:14px;
}
.categories > .container > .eyebrow::before,
.products-section > .container > .eyebrow::before,
.solutions > .container > .eyebrow::before,
.pipeline > .container > .eyebrow::before,
.numbers > .container > .eyebrow::before,
.iso-section > .container > .eyebrow::before,
.gallery > .container > .eyebrow::before,
.team > .container > .eyebrow::before,
.stories-head .eyebrow::before,
.insights-head .eyebrow::before,
.categories > .container > .eyebrow::after,
.products-section > .container > .eyebrow::after,
.solutions > .container > .eyebrow::after,
.pipeline > .container > .eyebrow::after,
.numbers > .container > .eyebrow::after,
.iso-section > .container > .eyebrow::after,
.gallery > .container > .eyebrow::after,
.team > .container > .eyebrow::after,
.stories-head .eyebrow::after,
.insights-head .eyebrow::after{
  content:"";position:static;transform:none;display:block;
  width:26px;height:2px;background:var(--teal);
}

/* ------------------------------------------------------------
   Team group photo — plain image, no overlay dressing.
   ------------------------------------------------------------ */
.team-photo{
  position:relative;margin:clamp(38px,5vw,60px) 0 0;
  border-radius:var(--radius-lg);overflow:hidden;
}
.team-photo img{
  display:block;width:100%;height:auto;
  aspect-ratio:16/9;object-fit:cover;background:#ddd8cf;
}
/* ------------------------------------------------------------
   Gallery section + click-to-zoom lightbox
   ------------------------------------------------------------ */
.gallery{padding:clamp(56px,8vw,110px) 0;background:var(--cream-2)}
.gallery .team-photo{margin-top:clamp(34px,4.5vw,54px)}

.team-photo img[data-zoom]{cursor:zoom-in}
.team-photo img[data-zoom]:focus-visible{outline:3px solid var(--teal);outline-offset:4px}


/* --- lightbox --- */
.lightbox{
  position:fixed;inset:0;z-index:200;display:none;
  align-items:center;justify-content:center;
  padding:clamp(16px,4vw,56px);
  background:rgba(4,20,24,.93);
}
.lightbox.open{display:flex;animation:lightboxIn .22s ease}
.lightbox img{
  max-width:100%;max-height:100%;
  border-radius:14px;box-shadow:0 30px 80px rgba(0,0,0,.55);
}
.lightbox-close{
  position:absolute;top:clamp(14px,2vw,26px);right:clamp(14px,2vw,26px);
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.14);color:#fff;
  font-size:24px;line-height:1;display:grid;place-items:center;
  transition:background .2s ease,transform .2s ease;
}
.lightbox-close:hover{background:rgba(255,255,255,.28);transform:scale(1.06)}
.lightbox-close:focus-visible{outline:3px solid var(--teal);outline-offset:3px}

@keyframes lightboxIn{from{opacity:0}to{opacity:1}}
@media (prefers-reduced-motion:reduce){
  .lightbox.open{animation:none}
}

/* ============================================================
   ISO certificate section — on the site's light theme
   ============================================================ */
.iso-section{background:var(--black);color:#fff;padding:clamp(56px,8vw,110px) 0}

.iso-card{
  margin:clamp(34px,4.5vw,54px) auto 0;max-width:960px;
  display:grid;grid-template-columns:auto 1fr;
  gap:clamp(24px,4vw,48px);align-items:center;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.13);
  border-radius:var(--radius-lg);padding:clamp(22px,3vw,34px);
  transition:transform .35s cubic-bezier(.2,.7,.3,1),background .35s ease;
}
.iso-card:hover{transform:translateY(-4px);background:rgba(255,255,255,.08)}

/* --- certificate thumbnail, action sitting over it --- */
.iso-thumb{
  position:relative;width:clamp(186px,20vw,228px);
  border:1px solid rgba(255,255,255,.15);border-radius:var(--radius);
  overflow:hidden;background:#fff;
}
.iso-thumb .iso-doc-frame{
  display:block;width:100%;aspect-ratio:1/1.35;border:0;background:#fff;
}
.iso-view{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  z-index:2;white-space:nowrap;padding:11px 18px;font-size:14px;gap:7px;
}
.iso-view:hover{transform:translate(-50%,-50%) translateY(-2px)}

.btn-teal{background:var(--teal);color:var(--black)}
.btn-teal:hover{box-shadow:0 10px 26px rgba(68,212,213,.4)}
.btn-ico{
  width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;
}

/* --- details --- */
.iso-details h3{font-size:clamp(21px,2.6vw,30px);font-weight:700;letter-spacing:-.02em;color:#fff}
.iso-standard{color:var(--teal);font-weight:600;font-size:16px;margin-top:6px}

.iso-facts{display:grid;gap:11px;margin-top:22px}
.iso-facts li{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.7);font-size:15px}
.iso-facts li strong{color:#fff;font-weight:600}
.iso-facts svg{
  width:17px;height:17px;flex:none;fill:none;stroke:var(--teal);
  stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;
}

.iso-pillars{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.iso-pillars span{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(68,212,213,.08);border:1px solid rgba(68,212,213,.24);
  color:var(--teal);border-radius:10px;padding:9px 14px;
  font-size:13.5px;font-weight:600;
}
.iso-pillars svg{
  width:15px;height:15px;flex:none;fill:none;stroke:currentColor;
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}

/* shown when the browser will not render an inline PDF */
.iso-doc-fallback{
  height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:10px;padding:20px;text-align:center;color:var(--muted);font-size:13px;
}
.iso-doc-fallback svg{
  width:34px;height:34px;fill:none;stroke:var(--teal-deep);stroke-width:1.6;
  stroke-linecap:round;stroke-linejoin:round;
}

@media (max-width:720px){
  .iso-card{grid-template-columns:1fr;justify-items:center;text-align:center}
  .iso-facts li{justify-content:center}
  .iso-pillars{justify-content:center}
}

/* ISO header sits on the dark surface */
.iso-section > .container > .eyebrow{color:rgba(255,255,255,.7)}
.iso-section > .container > .section-sub{color:rgba(255,255,255,.68)}

/* ============================================================
   RESPONSIVE POLISH
   Layout already collapses correctly at every width; these fix
   touch-target sizes, the iOS focus-zoom, and a couple of grids
   that stayed too dense on tablets.
   ============================================================ */

/* iOS inflates text when a phone is rotated to landscape */
html{-webkit-text-size-adjust:100%}

/* --- the burger was a 32px target; lift it to the 44px minimum --- */
.burger{
  min-width:44px;min-height:44px;
  align-items:center;justify-content:center;padding:0;
}

/* --- tablets: four stat columns at 768px were only 163px wide --- */
@media (max-width:900px){
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:30px}
}

/* --- three service cards left an orphan on the second row --- */
@media (max-width:1080px) and (min-width:721px){
  .sol-grid > :last-child{grid-column:1 / -1}
}

@media (max-width:720px){
  /* Any form control under 16px makes iOS Safari zoom the page on
     focus, which the user then has to pinch back. */
  .field input,
  .field select,
  .field textarea,
  .news-form input{font-size:16px}

  /* roomier tap areas in the drawer */
  .mobile-nav a{min-height:48px;display:flex;align-items:center}
  .mobile-nav.open{max-height:560px}

  /* dense link lists: clears the 24px AA minimum without making
     the footer enormous */
  .fcol a{padding:9px 0}
  .legal a{padding:6px 0;display:inline-block}
  .link-arrow{padding:7px 0}

  /* slightly tighter gutters buy back width on small phones */
  .container{width:min(100% - 32px,var(--maxw))}

  /* the 128px portrait crowds a phone-width card */
  .avatar{width:104px;height:104px;font-size:23px}
}

/* --- very small phones --- */
@media (max-width:380px){
  .logo img{height:48px}
  :root{--header-h:76px}
  .hero-actions .btn,
  .mini-cta-actions .btn{width:100%;justify-content:center}
}