/* ===========================================================
   CTH Main Website — site-v2 stylesheet
   Structural pattern borrowed from /pocketalk/pocketalk/ template:
   - Full-page mandatory scroll-snap on desktop (like pocketalk's home page)
   - Sub-nav pill bar resting at the hero's bottom edge, docking under
     the header on scroll (adapted from pocketalk's sticky .faq-catnav),
     Crestec blue #6b8bc7
   - Flat header nav, language dropdown, teaser sections linking out to
     subpages, dot-nav, sitemap-style footer.
   Prototype build — see README for what is placeholder content.
   =========================================================== */

:root{
  --navy:#1B2A4A;
  --crestec:#6b8bc7; /* Crestec logo blue — primary text-accent color */
  --blue:#3E6DA3;
  --blue-light:#6699CC;
  --cyan:#00AEEF;
  --magenta:#EC008C;
  --yellow:#FFD400;
  --bg-light:#F3F6FA;
  --white:#FFFFFF;
  --text:#1B2A4A;
  --muted:#5B6B82;
  --border:#E4E9F1;
  --card-radius:14px;
  --max-w:1180px;
  --hdr-h:68px;
  --subnav-blue:#6b8bc7;
  --subnav-h:58px;
}

*,*::before,*::after{ box-sizing:border-box; }
a{ color:var(--crestec); text-decoration:none; }
a:hover{ color:var(--blue); }
img{ max-width:100%; display:block; }
body{
  margin:0;
  font-family:"Poppins", Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
h1,h2,h3{ font-family:"Poppins", Arial, sans-serif; font-weight:700; line-height:1.2; margin:0 0 .5em; color:var(--navy); }
h1{ font-size:clamp(1.9rem,4vw,2.9rem); }
h2{ font-size:clamp(1.4rem,3vw,2rem); }
h3{ font-size:1.05rem; }
p{ margin:0 0 .8em; }
.container{ max-width:var(--max-w); margin:0 auto; padding:0 24px; width:100%; }
.muted{ color:var(--muted); }
.eyebrow{ color:var(--crestec); font-weight:700; letter-spacing:.08em; font-size:.78rem; text-transform:uppercase; margin-bottom:.4em; }

/* ---------- SCROLL-SNAP CONTAINER (desktop) ---------- */
html,body{ height:100%; overflow:hidden; }
#scroller{
  height:100vh; overflow-y:scroll; overflow-x:hidden;
  scroll-snap-type:y mandatory;
  scroll-behavior:smooth;
}
#scroller::-webkit-scrollbar{ display:none; }
#scroller{ -ms-overflow-style:none; scrollbar-width:none; }

.snap{
  scroll-snap-align:start;
  scroll-snap-stop:always;
  height:100vh;
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow-y:auto; overflow-x:hidden;
  flex-shrink:0; padding:calc(var(--hdr-h) + 20px) 0 24px;
}
/* Non-hero sections sit under BOTH the header and the docked sub-nav —
   reserve space for the pair, same as pocketalk FAQ's
   scroll-margin-top:calc(var(--hdr) + 90px) trick. */
.snap:not(.hero){ padding-top:calc(var(--hdr-h) + var(--subnav-h) + 16px); }
/* Flexbox centering clips the TOP of content taller than the section
   (padding-top alone can't fix that). margin:auto on the flex child is
   the safe-centering fix: it centers when there's room, and collapses
   to 0 when content overflows so the top stays reachable. */
.snap > .container{ margin-top:auto; margin-bottom:auto; }
.section-light{ background:var(--bg-light); }
.section-navy{ background:var(--navy); color:var(--white); }
.section-navy h1,.section-navy h2,.section-navy h3{ color:var(--white); }
.section-navy .muted{ color:#AFC3DE; }
.section-inner{ position:relative; z-index:1; }
.section-head{ margin-bottom:28px; }
.section-head.center{ text-align:center; }
.section-more{ margin-top:22px; }
.section-more.center{ text-align:center; }
.link-arrow{ font-weight:700; font-size:.88rem; display:inline-flex; align-items:center; gap:6px; transition:gap .2s; }
.link-arrow:hover{ gap:10px; }

/* ---------- Header: flat nav + language switcher ---------- */
.hdr{
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--border);
  height:var(--hdr-h);
}
.hdr-inner{
  max-width:var(--max-w); margin:0 auto; padding:0 24px; height:100%;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.hdr-logo img{ height:26px; display:block; }
.hdr-nav{ display:flex; align-items:center; gap:4px; }
.hdr-nav a{
  padding:8px 12px; border-radius:8px; font-size:.85rem; font-weight:600;
  color:var(--navy); white-space:nowrap; transition:background .2s,color .2s;
}
.hdr-nav a:hover{ background:var(--bg-light); color:var(--navy); }
.hdr-right{ display:flex; align-items:center; gap:10px; }

.lang-wrap{ position:relative; }
.lang-btn{
  display:flex; align-items:center; gap:5px; background:var(--bg-light);
  border:1px solid var(--border); color:var(--navy); font-size:.8rem; font-weight:700;
  padding:7px 12px; border-radius:8px; cursor:pointer;
}
.lang-dropdown{
  display:none; position:absolute; top:calc(100% + 8px); right:0;
  background:var(--white); border:1px solid var(--border); border-radius:10px;
  box-shadow:0 8px 32px rgba(27,42,74,.14); overflow:hidden; min-width:150px;
}
.lang-wrap.open .lang-dropdown{ display:block; }
.lang-dropdown a{
  display:flex; align-items:center; gap:8px; padding:10px 16px;
  font-size:.85rem; font-weight:600; color:var(--text);
}
.lang-dropdown a:hover{ background:var(--bg-light); color:var(--text); }
.lang-dropdown .lang-current{ background:var(--bg-light); }

.btn-hdr{
  padding:9px 18px; border-radius:8px; background:var(--crestec); color:var(--white);
  font-weight:700; font-size:.85rem; white-space:nowrap;
}
.btn-hdr:hover{ background:var(--navy); color:var(--white); }
.btn-hdr-mobile{ display:none; } /* only shown inside the mobile dropdown nav, see @media below */

.hamburger{ display:none; flex-direction:column; gap:5px; width:34px; height:34px; padding:4px; cursor:pointer; }
.hamburger span{ display:block; height:2px; background:var(--navy); border-radius:2px; transition:transform .25s,opacity .25s; }
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- SUB-NAV: pill bar resting flush with the hero's bottom edge,
   docking under the header as you scroll past the hero ---------- */
/* Same idea as pocketalk's sticky .faq-catnav bar — Crestec blue (#6b8bc7,
   from the logo) so it contrasts with the white header. position:fixed the
   whole time so the "top" change between states transitions smoothly. */
.subnav{
  position:fixed; left:0; right:0; z-index:150;
  height:var(--subnav-h);
  top:calc(100vh - var(--subnav-h)); /* resting spot: flush with the hero's bottom edge */
  display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:8px;
  padding:0 24px; background:var(--subnav-blue);
  box-shadow:0 4px 20px rgba(27,42,74,.18);
  transition:top .5s ease;
}
.subnav.docked{ top:var(--hdr-h); } /* slides up to sit right under the header */
.subnav-item{
  font-size:.78rem; font-weight:700; color:rgba(255,255,255,.85); background:rgba(255,255,255,.14);
  border:1.5px solid rgba(255,255,255,.3); padding:7px 15px; border-radius:20px;
  cursor:pointer; white-space:nowrap; transition:color .2s,border-color .2s,background .2s;
}
.subnav-item:hover{ color:#fff; background:rgba(255,255,255,.24); }
.subnav-item.active{ color:var(--navy); background:#fff; border-color:#fff; }

/* ---------- Dot nav (right-side section jump) ---------- */
.dotnav{
  position:fixed; right:20px; top:50%; transform:translateY(-50%); z-index:190;
  display:flex; flex-direction:column; gap:10px;
}
.dotnav .dot{
  width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.35);
  border:1.5px solid rgba(255,255,255,.5); cursor:pointer; transition:background .2s,transform .2s;
}
.dotnav .dot.active{ background:#fff; border-color:#fff; transform:scale(1.4); }
.dotnav .dot.dot-dark{ background:rgba(27,42,74,.2); border-color:rgba(27,42,74,.35); }
.dotnav .dot.dot-dark.active{ background:var(--navy); border-color:var(--navy); transform:scale(1.4); }

/* ---------- Canvas dot / CMYK background ---------- */
.dot-canvas-wrap{ position:absolute; inset:0; overflow:hidden; z-index:0; }
.dot-canvas-wrap canvas{ position:absolute; inset:0; width:100%; height:100%; }

/* ---------- Hero ---------- */
.hero{ background:var(--navy); color:var(--white); }
.hero h1{ color:var(--white); max-width:760px; }
.hero p.lead{ max-width:600px; font-size:1.05rem; color:#C7D5E8; }
.btn-row{ display:flex; gap:14px; flex-wrap:wrap; margin-top:1.4em; position:relative; z-index:1; }
.btn{ display:inline-block; padding:13px 26px; border-radius:8px; font-weight:700; font-size:.92rem; transition:transform .15s, box-shadow .15s; }
.btn-primary{ background:var(--crestec); color:var(--white); }
.btn-primary:hover{ background:var(--white); color:var(--navy); transform:translateY(-2px); }
.btn-outline{ border:2px solid rgba(255,255,255,.4); color:var(--white); }
.btn-outline:hover{ border-color:var(--white); background:rgba(255,255,255,.08); }

/* ---------- Grid / compact tiles (sized to fit one viewport) ---------- */
.grid{ display:grid; gap:16px; }
.grid-2{ grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.tile{
  background:var(--white); border:1.5px solid var(--border); border-radius:12px;
  padding:16px 14px; transition:transform .2s, box-shadow .2s, border-color .2s;
  text-align:center;
}
a.tile:hover{ transform:translateY(-3px); box-shadow:0 10px 26px rgba(27,42,74,.1); border-color:var(--blue); }
.tile-icon{
  width:38px; height:38px; border-radius:50%; background:var(--bg-light);
  display:flex; align-items:center; justify-content:center; margin:0 auto 8px;
  font-size:1.1rem;
}
.tile-icon img{ width:20px; height:20px; object-fit:contain; }
.tile h3{ font-size:.86rem; margin-bottom:4px; }
.tile p{ font-size:.72rem; color:var(--muted); margin-bottom:6px; }
.card-tag{
  display:inline-block; font-size:.66rem; font-weight:700;
  color:var(--blue); background:var(--bg-light); padding:2px 8px; border-radius:20px;
}

/* ---------- Why-us cards (1:1 image + label) ---------- */
.why-grid{ max-width:900px; margin:0 auto; }
.img-sq{
  width:100%; height:auto; /* height:auto overrides the height="" attribute so aspect-ratio can enforce the square */
  aspect-ratio:1/1; object-fit:cover; border-radius:10px;
  margin-bottom:10px; transition:transform .3s;
}
.tile:hover .img-sq{ transform:scale(1.03); }

/* ---------- FAQ accordion ---------- */
.faq-wrap{ max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:8px; }
.faq-item{ border:1.5px solid var(--border); border-radius:10px; overflow:hidden; transition:border-color .2s; background:var(--white); }
.faq-item.open{ border-color:var(--blue); }
.faq-q{ display:flex; justify-content:space-between; align-items:center; gap:12px; padding:12px 18px; cursor:pointer; font-weight:600; font-size:.85rem; color:var(--navy); }
.faq-ic{ width:20px; height:20px; border-radius:50%; background:var(--bg-light); display:flex; align-items:center; justify-content:center; color:var(--blue); flex-shrink:0; transition:transform .25s,background .2s; font-size:.8rem; }
.faq-item.open .faq-ic{ transform:rotate(45deg); background:var(--blue); color:#fff; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease,padding .2s; padding:0 18px; font-size:.78rem; color:var(--muted); background:var(--bg-light); }
.faq-item.open .faq-a{ max-height:200px; padding:10px 18px; }

/* Contact is the LAST section — let it (and the footer inside it) grow
   past 100vh instead of clipping. Mandatory snap still snaps to its start;
   once there, #scroller can keep scrolling normally since there's no next
   section to jump to. This is how the footer becomes reachable. */
#s-contact.snap{
  height:auto; min-height:100vh; padding-bottom:0; display:flex;
  align-items:stretch; /* override .snap's align-items:center — REQUIRED, otherwise
                          the container only grows to content height and the
                          footer has no space to be pushed down into */
}
#s-contact > .container{
  margin:0 auto; width:100%; flex:1;
  display:flex; flex-direction:column; padding-bottom:10px;
}
/* CTA block centers in the space above; footer is pushed to the bottom edge */
#s-contact .section-head{ margin-top:auto; }
#s-contact footer{ margin-top:auto; }

/* ---------- Contact CTA (used sitewide per sitemap rule) ---------- */
.contact-cta{
  padding:28px; border-radius:var(--card-radius);
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15);
  color:var(--white); display:flex; flex-wrap:wrap; align-items:center;
  justify-content:space-between; gap:20px;
}
.contact-cta h3{ color:var(--white); margin:0; }
.contact-cta p{ margin:4px 0 0; color:#C7D5E8; }

/* ---------- Footer (sitemap-style columns, inside #s-contact) ---------- */
footer{ background:var(--navy); color:#AFC3DE; padding:48px 0 24px; height:auto; }
.ft-logo img{ height:22px; margin-bottom:10px; }
footer .grid-4{ margin-bottom:28px; }
footer h4{ color:var(--white); font-size:.82rem; letter-spacing:.05em; text-transform:uppercase; margin:0 0 .8em; }
footer a{ color:#AFC3DE; display:block; margin-bottom:7px; font-size:.85rem; }
footer a:hover{ color:var(--cyan); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding-top:18px; font-size:.78rem; color:#7E93B5; display:flex; flex-wrap:wrap; justify-content:space-between; gap:8px; }

/* ---------- Add-on service strip (slim, sits just above the footer) ---------- */
.addon-strip{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:10px;
  text-align:center; padding:14px 20px; margin-top:18px;
  border-top:1px solid rgba(255,255,255,.14); border-bottom:1px solid rgba(255,255,255,.14);
  font-size:.8rem; color:#AFC3DE;
}
.addon-strip a{ font-weight:700; color:var(--cyan); }
.addon-strip a:hover{ color:#fff; }

/* ---------- Placeholder flag ---------- */
.lorem-flag{
  display:inline-block; margin-bottom:8px; padding:4px 10px; border-radius:6px;
  background:#FFF3CD; color:#7A5B00; font-size:.68rem; font-weight:700; letter-spacing:.04em;
}

/* ---------- Reveal-in animation ---------- */
.reveal{ opacity:0; transform:translateY(16px); transition:opacity .5s ease,transform .5s ease; }
.reveal.visible{ opacity:1; transform:none; }

/* ===========================================================
   site-v3 additions
   =========================================================== */

/* ---------- Breadcrumb (subpages) ---------- */
.crumb{ font-size:.78rem; color:var(--muted); margin-bottom:14px; }
.crumb a{ color:var(--muted); font-weight:600; }
.crumb a:hover{ color:var(--blue); }
.section-navy .crumb, .section-navy .crumb a{ color:#AFC3DE; }

/* ---------- Generic content blocks for subpages ---------- */
.content-block{ max-width:760px; }
.content-block.center{ margin:0 auto; text-align:center; }
.two-col{ display:grid; grid-template-columns:1.1fr .9fr; gap:36px; align-items:center; }
.icon-badge{ width:56px; height:56px; border-radius:50%; background:var(--bg-light); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.icon-badge img{ width:30px; height:30px; }
.icon-badge.lg{ width:72px; height:72px; }
.icon-badge.lg img{ width:38px; height:38px; }
.section-navy .icon-badge{ background:rgba(255,255,255,.08); }
.num-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.num-list li{ display:flex; gap:14px; align-items:flex-start; font-size:.88rem; }
.num-list .num{ flex-shrink:0; width:26px; height:26px; border-radius:50%; background:var(--crestec); color:#fff; font-weight:700; font-size:.78rem; display:flex; align-items:center; justify-content:center; }
.check-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.check-list li{ display:flex; gap:10px; align-items:flex-start; font-size:.88rem; }
.check-list li::before{ content:"✓"; color:var(--cyan); font-weight:700; flex-shrink:0; }
.cert-row{ display:flex; flex-wrap:wrap; gap:18px; justify-content:center; }
.cert-chip{ display:flex; align-items:center; gap:10px; background:var(--white); border:1.5px solid var(--border); border-radius:12px; padding:12px 18px; }
.cert-chip img{ width:28px; height:28px; }
.cert-chip span{ font-weight:700; font-size:.82rem; color:var(--navy); }
.cert-badge{ display:flex; flex-direction:column; align-items:center; gap:10px;
  background:var(--white); border:1.5px solid var(--border); border-radius:14px;
  padding:16px 20px 14px; box-shadow:0 10px 30px rgba(27,42,74,.06); }
.cert-badge img{ width:130px; max-width:38vw; height:auto; }
.cert-badge span{ font-weight:700; font-size:.78rem; color:var(--navy); }
@media (max-width:760px){
  .cert-row{ flex-wrap:nowrap; gap:12px; }
  .cert-badge{ padding:12px 12px 10px; flex:1 1 0; min-width:0; }
  .cert-badge img{ width:110px; max-width:100%; }
  .cert-badge span{ font-size:.66rem; text-align:center; }
}
.stat-row{ display:flex; flex-wrap:wrap; gap:28px; justify-content:center; text-align:center; }
.stat{ min-width:110px; }
.stat .num{ font-size:1.9rem; font-weight:700; color:var(--white); }
.stat .lbl{ font-size:.76rem; color:#AFC3DE; }
.breadcrumb-sub{ font-size:.78rem; }

/* ---------- FAQ groups (FAQ hub page, per-service) ---------- */
.faq-group{ margin-bottom:22px; }
.faq-group h3{ font-size:.82rem; text-transform:uppercase; letter-spacing:.05em; color:var(--blue); margin-bottom:10px; }

/* ---------- Knowledge cards ---------- */
.know-card{ background:var(--white); border:1.5px solid var(--border); border-radius:12px; padding:18px; text-align:left; }
.know-card h3{ font-size:.92rem; }
.know-card p{ font-size:.8rem; color:var(--muted); }

/* =========================================================
   RESPONSIVE — under 900px: disable mandatory scroll-snap,
   fall back to normal document scroll (JS already has an
   isDesktop() branch expecting this; the CSS side was never
   written in site-v2 — fixed here).
   ========================================================= */
@media (max-width:900px){
  html,body{ height:auto; overflow:visible; }
  #scroller{
    height:auto; overflow:visible; scroll-snap-type:none; scroll-behavior:auto;
  }
  .snap{
    height:auto; min-height:auto; padding:calc(var(--hdr-h) + 26px) 0 40px;
    scroll-snap-align:none; scroll-snap-stop:normal;
  }
  .snap:not(.hero){ padding-top:calc(var(--hdr-h) + 26px); }
  #s-contact.snap, [id$="-contact"].snap{ min-height:auto; }

  .dotnav{ display:none; }

  .subnav{ position:static; top:auto !important; box-shadow:none; overflow-x:auto; justify-content:flex-start; height:auto; padding:12px 16px; }
  .subnav-item{ flex-shrink:0; }

  .hdr-nav{
    display:none; position:fixed; top:var(--hdr-h); left:0; right:0; bottom:0;
    background:var(--white); flex-direction:column; align-items:stretch;
    padding:16px; gap:2px; overflow-y:auto; z-index:199;
    box-shadow:0 8px 24px rgba(27,42,74,.12);
  }
  .hdr-nav.open{ display:flex; }
  .hdr-nav > a, .nav-item > a{ padding:12px 10px; border-bottom:1px solid var(--border); border-radius:0; }
  .btn-hdr-mobile{ display:block; text-align:center; margin-top:12px; border-bottom:none; border-radius:8px !important; }
  .hdr-right .btn-hdr:not(.btn-hdr-mobile){ display:none; }
  .hamburger{ display:flex; }
}

/* ===========================================================
   site-v3 round 2 additions
   =========================================================== */

/* ---------- Header dropdown menus ---------- */
.nav-item{ position:relative; }
.nav-item > a .caret{ font-size:.6rem; opacity:.55; margin-left:2px; }
.nav-drop{
  display:none; position:absolute; top:100%; left:0; min-width:220px;
  background:var(--white); border:1px solid var(--border); border-radius:10px;
  box-shadow:0 12px 36px rgba(27,42,74,.16); overflow:hidden; padding:6px 0;
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop{ display:block; }
.nav-drop a{
  display:block; padding:9px 18px; font-size:.82rem; font-weight:600;
  color:var(--text); border-radius:0; white-space:nowrap;
}
.nav-drop a:hover{ background:var(--bg-light); color:var(--navy); }

/* ---------- Footer: mini-sitemap offices ---------- */
.ft-office{ font-size:.76rem; color:#AFC3DE; line-height:1.75; margin-bottom:14px; }
.ft-office strong{ display:block; color:var(--white); font-size:.72rem; letter-spacing:.06em; margin-bottom:2px; }
.ft-office a{ display:inline; margin:0; font-size:.76rem; }
.map-link{ display:inline-flex; align-items:center; gap:4px; font-weight:700; color:var(--cyan) !important; }
.map-link:hover{ color:#fff !important; }
.map-link .pin{ flex-shrink:0; }

/* ---------- Contact CTA: dead-center of the space above the footer ---------- */
#s-contact .cta-mid{
  flex:1; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center;
}
#s-contact .cta-mid .section-head{ margin-top:0; }

/* ---------- FAQ page (html.no-snap): normal scrolling, no snap ---------- */
html.no-snap, html.no-snap body{ height:auto; overflow:auto; }
html.no-snap #scroller{ height:auto; overflow:visible; scroll-snap-type:none; scroll-behavior:smooth; }
html.no-snap .snap{
  height:auto; min-height:0; scroll-snap-align:none; scroll-snap-stop:normal;
  overflow:visible; padding-bottom:48px;
}
html.no-snap .hero{ min-height:50vh; } /* hero at half height */
html.no-snap #s-contact.snap{ min-height:70vh; }
html.no-snap .faq-group{ scroll-margin-top:calc(var(--hdr-h) + var(--subnav-h) + 16px); }
/* sub-nav on the FAQ page docks right away once you scroll (JS toggles .docked) */

/* ---------- Large content images on service pages ---------- */
.img-wide{
  width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:var(--card-radius);
  box-shadow:0 10px 32px rgba(27,42,74,.14);
}
.svc-body p{ font-size:.9rem; }
.svc-body .check-list li{ font-size:.86rem; }

/* ---------- Mobile adjustments for new elements ---------- */
@media (max-width:900px){
  .nav-item{ width:100%; }
  .nav-item > a{ display:block; }
  .nav-drop{
    display:block; position:static; box-shadow:none; border:none;
    padding:0 0 6px 14px; min-width:0; background:transparent;
  }
  .nav-drop a{ padding:7px 10px; color:var(--muted); }
  .ft-grid{ grid-template-columns:1fr 1fr; }
  .two-col{ grid-template-columns:1fr; }
}

/* ===========================================================
   site-v3 round 3 additions
   =========================================================== */

/* ---------- Icons: no more grey circles ---------- */
.tile-icon{ background:none; width:auto; height:auto; border-radius:0; margin:0 auto 8px; }
.tile-icon img{ width:28px; height:28px; }
.icon-badge, .icon-badge.lg{ background:none !important; border-radius:0; }

/* ---------- Services hub hero: text left, square card grid right ---------- */
.hero-split{ display:grid; grid-template-columns:.9fr 1.3fr; gap:36px; align-items:center; }
.sq-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.sq-grid .tile{
  aspect-ratio:1/1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:10px 8px;
}
.sq-grid .tile h3{ font-size:.78rem; margin-bottom:2px; }
.sq-grid .tile p{
  font-size:.62rem; margin-bottom:0;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

/* ---------- Service pages: merged hero, industry pills, details ---------- */
.hero .two-col{ align-items:start; }
.hero .svc-body p{ color:#C7D5E8; font-size:.88rem; }
.ind-pills{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.ind-pill{
  display:inline-block; font-size:.72rem; font-weight:700; padding:5px 13px; border-radius:20px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25); color:rgba(255,255,255,.9);
}
.ind-pill:hover{ background:rgba(255,255,255,.22); color:#fff; }
.section-light .ind-pill{ background:var(--bg-light); border-color:var(--border); color:var(--blue); }

/* ---------- FAQ page: sub-nav pinned under header from load ---------- */
html.no-snap .subnav{ top:var(--hdr-h) !important; transition:none; }

/* ---------- Packaging-materials banner (contact sections) ---------- */
.addon-banner{
  position:relative; border-radius:var(--card-radius); overflow:hidden;
  padding:26px 28px; text-align:center; color:#fff;
  background:url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1400&q=80') center/cover no-repeat;
}
.addon-banner::before{ content:""; position:absolute; inset:0; background:rgba(15,26,52,.72); }
.addon-banner > *{ position:relative; z-index:1; }
.addon-banner span{ font-size:.88rem; display:block; margin-bottom:6px; }
.addon-banner a{ font-weight:700; color:var(--cyan); font-size:.88rem; }
.addon-banner a:hover{ color:#fff; }

/* ---------- Footer as its own section ---------- */
#s-footer.snap{ height:auto; min-height:100vh; display:flex; align-items:stretch; padding-bottom:0; }
#s-footer > .container{ display:flex; flex-direction:column; flex:1; width:100%; margin:0 auto; padding-bottom:10px; }
#s-footer footer{ margin-top:auto; }
.ft-office .ph, .ft-office .pin{ vertical-align:-1px; margin-right:3px; }

/* ---------- Careers job cards ---------- */
.job-card{
  background:var(--white); border:1.5px solid var(--border); border-radius:12px;
  padding:22px; text-align:left; font-size:.85rem;
}
.job-card h3{ font-size:1rem; margin-bottom:8px; }
.job-card .job-meta{ color:var(--muted); font-size:.8rem; line-height:1.8; margin-bottom:10px; }
.job-card .job-meta b{ color:var(--navy); }

@media (max-width:900px){
  .hero-split{ grid-template-columns:1fr; }
  .sq-grid{ grid-template-columns:repeat(3,1fr); }
}

/* FAQ (no-snap) + mobile: footer section shouldn't force a full screen */
html.no-snap #s-footer.snap{ min-height:60vh; }
@media (max-width:900px){
  #s-footer.snap{ min-height:auto; }
  .addon-banner{ margin-top:24px !important; }
}

/* ===========================================================
   site-v3 round 4 fixes
   =========================================================== */

/* Hub hero: square tiles fit the viewport — icon + title only */
.sq-grid .tile p{ display:none; }
.sq-grid{ gap:10px; }
.sq-grid .tile h3{ font-size:.8rem; }

/* Packaging-materials banner: double height */
.addon-banner{ padding:56px 28px; }

/* Footer section: container must stretch so footer drops to the bottom edge
   (.snap > .container's auto margins were vertically centering it instead) */
#s-footer > .container{ margin:0 auto; }

/* FAQ page: hero content clears the always-docked sub-nav */
html.no-snap .snap.hero{ padding-top:calc(var(--hdr-h) + var(--subnav-h) + 20px); }

/* Footer offices: no gap under the office name */
.ft-office strong{ margin-bottom:0; }

/* History timeline: year pills big enough to read */
.num-list .num{ width:auto; min-width:56px; height:26px; padding:0 12px; border-radius:20px; font-size:.76rem; }

/* Company hero split (text left, values graphic right) */
.company-split{ display:grid; grid-template-columns:1.1fr .9fr; gap:36px; align-items:center; }
.company-split .values-img{ width:100%; max-width:460px; margin:0 auto; }
@media (max-width:900px){ .company-split{ grid-template-columns:1fr; } }

/* Group stats: icons + count-up */
.stat .stat-icon{ display:flex; justify-content:center; margin-bottom:6px; color:var(--cyan); }
.stat .num{ font-variant-numeric:tabular-nums; }

/* We-care section */
.care-cols{ display:grid; grid-template-columns:1.1fr .9fr; gap:36px; align-items:start; }
@media (max-width:900px){ .care-cols{ grid-template-columns:1fr; } }

/* How We Care — CSR photo backdrop + compliance band */
#we-care{ position:relative; overflow:hidden; }
#we-care::before{ content:""; position:absolute; inset:0;
  background:url("../img/csr-crestec-blue-1200x800.jpg") center/cover no-repeat; }
#we-care::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(244,247,251,.94) 0%, rgba(244,247,251,.86) 45%, rgba(244,247,251,.72) 100%); }
#we-care .section-inner{ position:relative; z-index:1; }
#we-care .care-cols .svc-body{ background:rgba(255,255,255,.82); border-radius:14px;
  padding:22px 24px; box-shadow:0 10px 30px rgba(27,42,74,.07);
  backdrop-filter:blur(3px); -webkit-backdrop-filter:blur(3px); }
.care-compliance-strip{ display:block; width:min(280px,70vw); height:auto;
  margin:14px auto 0; opacity:.75; }

/* company — Global Network: interactive globe + branch picker */
.gn-hint{ font-size:.78rem; }
/* immersive layout: huge globe bleeding off the left edge, detail card right */
#global-network{ overflow:hidden; }
#global-network .section-head{ position:relative; z-index:2; }
.gn-wrap{ position:relative; height:min(46vh, 500px); margin:4px auto 0; }
.gn-globe-wrap{ position:absolute; top:50%; aspect-ratio:1/1;
  --gnS:min(180vh, 1500px);
  width:var(--gnS); left:calc(50% - var(--gnS));   /* right edge ≈ viewport centre (50% of the centred container = viewport centre) */
  transform:translateY(-50%); z-index:0; }
.gn-detail{ position:absolute; right:6%; top:4%;
  width:min(400px, 42vw); text-align:left; z-index:2;
  transition:opacity .28s ease, transform .28s ease; }
.gn-detail.is-switching{ opacity:0; transform:translateX(10px); }

/* workflow comparison — others stop at every stage, Crestec flows through */
.gn-flow{ position:absolute; right:6%; top:46%; width:min(400px, 42vw); z-index:2;
  border-top:1.5px solid rgba(27,42,74,.10); padding-top:18px; }
.gn-flow-stages{ display:flex; justify-content:space-between; margin-bottom:8px; }
.gn-flow-stages span{ font-size:.62rem; font-weight:600; letter-spacing:.03em;
  text-transform:uppercase; color:var(--muted); flex:1; text-align:center; }
.gn-flow-label{ font-size:.68rem; font-weight:700; color:var(--muted); margin:6px 0 4px; }
.gn-flow-label-th{ color:var(--blue); }
.gn-flow-track{ position:relative; height:10px; border-radius:5px; }
.gn-flow-others{ display:flex; gap:6px; }
.gn-flow-others i{ flex:1; background:#D4DBE4; border-radius:5px; position:relative; }
.gn-flow-others i::after{ content:""; position:absolute; right:-6px; top:50%; transform:translateY(-50%);
  border-left:5px solid #C2CBD6; border-top:4px solid transparent; border-bottom:4px solid transparent; }
.gn-flow-others i:last-child::after{ display:none; }
/* travelling arrowheads — 9s shared loop */
.gn-fa{ position:absolute; top:50%; transform:translateY(-50%); width:0; height:0;
  border-top:6px solid transparent; border-bottom:6px solid transparent;
  border-left:9px solid #8494A8; filter:drop-shadow(0 1px 2px rgba(27,42,74,.25));
  opacity:0; }
/* other companies: one arrowhead per segment, hand-off pauses between */
.gn-fa1{ animation:gnSeg1 9s linear infinite; }
.gn-fa2{ animation:gnSeg2 9s linear infinite; }
.gn-fa3{ animation:gnSeg3 9s linear infinite; }
.gn-fa4{ animation:gnSeg4 9s linear infinite; }
@keyframes gnSeg1{ 0%{ left:1%; opacity:1; } 18%{ left:22%; } 96%{ left:22%; opacity:1; } 100%{ left:22%; opacity:0; } }
@keyframes gnSeg2{ 0%,24%{ left:26%; opacity:0; } 25%{ opacity:1; } 43%{ left:47%; } 96%{ left:47%; opacity:1; } 100%{ opacity:0; } }
@keyframes gnSeg3{ 0%,49%{ left:52%; opacity:0; } 50%{ opacity:1; } 68%{ left:72%; } 96%{ left:72%; opacity:1; } 100%{ opacity:0; } }
@keyframes gnSeg4{ 0%,74%{ left:77%; opacity:0; } 75%{ opacity:1; } 93%{ left:97%; } 96%{ left:97%; opacity:1; } 100%{ opacity:0; } }
/* crestec: one white arrowhead, continuous start-to-finish — reaches the end first */
.gn-flow-crestec{ background:var(--blue); }
.gn-fa-b{ border-left-color:#ffffff; animation:gnSegB 9s linear infinite; }
/* same travel speed as the grey arrows (~21% width per 1.62s) — it still
   finishes first because it never stops for hand-offs */
@keyframes gnSegB{ 0%{ left:1%; opacity:1; } 82%{ left:97%; } 96%{ left:97%; opacity:1; } 100%{ left:97%; opacity:0; } }
.gn-flow-note{ font-size:.72rem; color:var(--muted); margin:10px 0 0; }
@media (prefers-reduced-motion: reduce){
  .gn-fa{ animation:none; opacity:1; left:1%; }
}
.gn-detail .gn-name{ font-family:"Poppins",Arial,sans-serif; font-weight:700; font-size:1.35rem;
  color:var(--navy); line-height:1.25; margin:0 0 4px; }
.gn-detail .gn-city{ font-size:.84rem; color:var(--muted); margin:0 0 16px; letter-spacing:.02em; }
.gn-actions{ display:flex; align-items:center; gap:10px; }
.gn-ic{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px;
  border-radius:50%; border:1.5px solid var(--border); color:var(--blue); background:var(--white);
  text-decoration:none; transition:border-color .2s, color .2s, transform .15s; }
.gn-ic:hover{ border-color:var(--blue); color:var(--navy); transform:translateY(-2px); }
.gn-picker{ display:flex; flex-wrap:wrap; justify-content:center; gap:8px;
  max-width:820px; margin:10px auto 0; position:relative; z-index:3; }
.gn-chip{ font-size:.76rem; font-weight:600; color:var(--muted); background:var(--white);
  border:1.5px solid var(--border); border-radius:999px; padding:7px 14px; cursor:pointer;
  transition:all .18s; white-space:nowrap; }
.gn-chip:hover{ border-color:var(--blue-light); color:var(--navy); }
.gn-chip.is-active{ background:var(--blue); border-color:var(--blue); color:#fff; }
.gn-chip.gn-th{ color:var(--crestec); }
.gn-chip.gn-th.is-active{ color:#fff; }
@media (max-width:900px){
  .gn-wrap{ height:auto; display:flex; flex-direction:column; align-items:center; }
  .gn-globe-wrap{ position:relative; top:auto; left:auto; transform:none;
    width:min(74vw, 40vh); }
  .gn-detail{ position:static; transform:none; width:auto; text-align:center; margin-top:14px; }
  .gn-actions{ justify-content:center; }
  .gn-flow{ position:static; width:min(400px,88vw); margin:16px auto 0; }
  .gn-picker{ flex-wrap:nowrap; overflow-x:auto; justify-content:flex-start;
    padding:2px 4vw 10px; scrollbar-width:none; }
  .gn-picker::-webkit-scrollbar{ display:none; }
  .gn-chip{ flex:0 0 auto; }
}

/* Group stats: bigger icons in Crestec blue */
.stat .stat-icon{ color:var(--crestec); }
.stat .stat-icon svg{ width:40px; height:40px; }

/* Hub hero: compact service cards (the 1:1 squares grew too tall at wide widths) */
.sq-grid .tile{ aspect-ratio:auto; padding:18px 10px; }

/* Hub hero cards: show short descriptions again (3-line clamp keeps height tidy) */
.sq-grid .tile p{
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
  font-size:.68rem; margin-bottom:0;
}

/* ---------- Header phone (next to Contact button) ---------- */
.hdr-phone{
  display:flex; align-items:center; gap:6px;
  font-size:.82rem; font-weight:700; color:var(--navy); white-space:nowrap;
}
.hdr-phone:hover{ color:var(--crestec); }
@media (max-width:1100px){ .hdr-phone span{ display:none; } }
@media (max-width:900px){ .hdr-phone{ display:none; } }

/* Header phone: icon only, number stays in aria-label + tel: link */
.hdr-phone span{ display:none; }

/* Mobile menu fix: .hdr's backdrop-filter makes it the containing block for
   fixed descendants, so the menu's top/bottom were resolving against the 68px
   header (collapsing it to a strip). Position it against the header instead. */
@media (max-width:900px){
  .hdr-nav{
    position:absolute; top:var(--hdr-h); left:0; right:0; bottom:auto;
    height:calc(100dvh - var(--hdr-h));
  }
}

/* Mobile menu: phone entry above the Contact button */
@media (max-width:900px){
  .nav-phone{
    display:flex !important; align-items:center; justify-content:center; gap:8px;
    background:var(--navy);
  }
}

/* nav-phone: .hdr-nav a's navy color was beating .btn-hdr's white (specificity) */
.hdr-nav a.nav-phone{ color:#fff; }

/* Mobile: multi-column grids drop to 2 columns (rule was lost in the old
   CSS truncation — services/why/other-services grids were rendering 4-across
   on phones). Industries (grid-3) also capped at 2 for consistent spacing. */
@media (max-width:900px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:380px){
  .grid-4, .grid-3{ grid-template-columns:1fr; }
}

/* ===========================================================
   site-v4: ODP-style fixed DNA canvas background (home page)
   =========================================================== */
#dnaStage{ position:fixed; inset:0; z-index:0; background:radial-gradient(ellipse at 30% 30%, #ffffff 0%, #DCE9F5 100%); }
#dnaCanvas{ display:block; width:100%; height:100%; }
#sharedGlobe{ position:absolute; inset:0; display:block; }
body.dna-page{ background:#f4f6f8; }
.dna-page .hdr{ z-index:200; }
.dna-page #scroller{ position:relative; z-index:1; }
.dna-page .snap, .dna-page .section-light{ background:transparent; }
.dna-page #s-contact.snap, .dna-page #s-footer.snap{ background:var(--navy); } /* keep navy close + footer */
.dna-page .hero h1{ color:var(--navy); }
.dna-page .hero .eyebrow{ color:var(--blue); }
.dna-page .hero p.lead{ color:var(--muted); }
.dna-page .btn-outline{ border-color:rgba(27,42,74,.35); color:var(--navy); }
.dna-page .btn-outline:hover{ border-color:var(--navy); background:rgba(27,42,74,.06); }
.dna-page .tile, .dna-page .faq-item, .dna-page .chip{ background:rgba(255,255,255,.92); backdrop-filter:blur(3px); }
/* CMYK anchor row in the hero — invisible anchors, the canvas draws the dots here */
.cmyk-row{ display:flex; align-items:center; gap:12px; margin-top:26px; position:relative; z-index:1; }
.cmyk-label{ font-size:.72rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--blue); }
.cmyk-dot{ width:14px; height:14px; border-radius:50%; opacity:0; }

/* site-v4 home: contact fully transparent (DNA shows through);
   footer gets a dark navy translucent wash with the DNA glinting behind */
.dna-page #s-contact.snap{ background:transparent; }
.dna-page #s-contact h2{ color:var(--navy); }
.dna-page #s-contact .muted{ color:var(--muted); }
.dna-page #s-footer.snap{ background:rgba(27,42,74,.88); }

/* Company page: keep the group-network stat band opaque navy so its white
   text stays readable while the helix parks harmlessly behind it. */
.dna-page #group-network.snap{ background:var(--navy); }

/* Company hero — animated "values orb": dots + lines with cycling value copy */
.values-orb{ position:relative; width:100%; max-width:380px; aspect-ratio:1/1; margin:0 auto;
  border-radius:50%; overflow:visible;
  background:radial-gradient(circle at 34% 30%, #ffffff 0%, #eef2f6 55%, #e2e8f0 100%);
  box-shadow:0 18px 50px rgba(27,42,74,.14), inset 0 0 0 1px rgba(27,42,74,.05); }
/* canvas is sized + positioned in JS to extend 28px past the disc, so the ring
   dots (which sit on the edge) and their glow are not clipped */
.values-canvas{ position:absolute; display:block; }

/* company page: scroll-driven faint backdrop (circle -> globe -> Thailand) */
#orbCanvas{ position:absolute; inset:0; display:block; }
.orb-text{ position:fixed; z-index:1; pointer-events:none; width:320px; height:130px;
  transform:translate(-50%,-50%); display:grid; place-items:center; text-align:center;
  transition:opacity .35s ease; }
@media (max-width:760px){ .orb-text{ width:260px; } }
.hero-orb-mobile{ display:none; }
@media (max-width:760px){
  .hero-orb-mobile{ display:block; position:relative;
    width:min(280px,78vw); aspect-ratio:1/1; margin:26px auto 0; }
}

/* company history — perspective timeline: cards approach from the distance */
.tl-hint{ font-size:.78rem; }
.tl-split{ display:grid; grid-template-columns:1fr 1.15fr; gap:20px; align-items:center;
  max-width:860px; margin:0 auto; }
.tl-globe-wrap{ position:relative; aspect-ratio:1/1; max-width:340px; margin:0 auto; width:100%; }
.tl-stage{ position:relative; max-width:460px; margin:0 auto; height:min(46vh,380px);
  perspective:900px; perspective-origin:50% 38%; width:100%; }
.tl-card{ position:absolute; left:50%; top:42%; width:min(360px,92%);
  transform:translate(-50%,-50%); background:rgba(255,255,255,.94);
  border:1px solid rgba(27,42,74,.08); border-radius:14px; padding:18px 22px;
  box-shadow:0 14px 40px rgba(27,42,74,.10); text-align:center;
  will-change:transform,opacity; }
.tl-card p{ margin:0; font-size:.92rem; color:var(--muted); line-height:1.5; }
.tl-year{ font-family:"Poppins",Arial,sans-serif; font-weight:700; font-size:1.3rem;
  color:var(--blue); margin-bottom:6px; }
.tl-card.tl-th .tl-year{ color:var(--crestec); }
.tl-card.tl-th{ border-color:rgba(102,153,204,.45); }
.tl-bar{ position:absolute; left:50%; bottom:-10px; transform:translateX(-50%);
  display:flex; align-items:center; gap:10px; }
.tl-bar-label{ font-size:.68rem; font-weight:600; color:var(--muted); letter-spacing:.03em; }
.tl-progress{ position:relative; width:220px; height:4px; border-radius:2px;
  background:rgba(27,42,74,.10); cursor:pointer; }
.tl-progress span{ display:block; height:100%; width:0; background:var(--blue-light);
  border-radius:2px; transition:width .3s ease; }
.tl-handle{ position:absolute; top:50%; left:0; width:14px; height:14px; border-radius:50%;
  background:var(--blue-light); border:2px solid #fff; box-shadow:0 1px 5px rgba(27,42,74,.30);
  transform:translate(-50%,-50%); cursor:grab; transition:left .3s ease; touch-action:none; }
.tl-handle:active{ cursor:grabbing; transform:translate(-50%,-50%) scale(1.25); }
.tl-progress.dragging span, .tl-progress.dragging .tl-handle{ transition:none; }
.tl-split{ position:relative; cursor:pointer; }
.tl-scroll-hint{ position:absolute; left:50%; top:42%; transform:translate(-50%,-50%);
  color:var(--blue-light); opacity:.8; pointer-events:none; z-index:5; }
.tl-hint-wheel{ animation:tlWheel 1.8s ease-in-out infinite; }
@keyframes tlWheel{ 0%,100%{ transform:translateY(0); opacity:1; } 50%{ transform:translateY(9px); opacity:.35; } }
.tl-scroll-hint.is-hidden{ opacity:0; }
@media (max-width:900px){ .tl-scroll-hint{ display:none; } .tl-split{ cursor:auto; } }
@media (max-width:900px){
  .tl-split{ grid-template-columns:1fr; }
  .tl-globe-wrap{ display:none; }
  /* horizontal swipe carousel — one card tall */
  .tl-stage{ height:auto; perspective:none; display:flex; overflow-x:auto;
    scroll-snap-type:x mandatory; gap:12px; padding:6px 8vw 14px;
    -webkit-overflow-scrolling:touch; scrollbar-width:none; }
  .tl-stage::-webkit-scrollbar{ display:none; }
  .tl-card{ position:static; flex:0 0 76%; scroll-snap-align:center;
    transform:none !important; opacity:1 !important; margin:0;
    padding:14px 16px; border-radius:12px; }
  .tl-card p{ font-size:.82rem; line-height:1.45; }
  .tl-year{ font-size:1.05rem; margin-bottom:4px; }
  .tl-bar{ position:static; transform:none; justify-content:center; margin:12px auto 0; }
  .tl-progress{ width:min(220px,52vw); }
}
.values-text{ position:absolute; inset:0; display:grid; place-items:center; text-align:center; padding:0 12%; }
.value-item{ position:absolute; display:flex; flex-direction:column; gap:2px;
  opacity:0; transform:translateY(8px) scale(.98); transition:opacity .9s ease, transform .9s ease;
  pointer-events:none; }
.value-item.is-active{ opacity:1; transform:translateY(0) scale(1); }
.value-item .v-lead{ font-family:"Poppins",Arial,sans-serif; font-weight:700;
  font-size:1.5rem; letter-spacing:.01em; color:var(--blue); text-transform:uppercase; line-height:1.1; }
.value-item .v-sub{ font-size:.98rem; color:var(--blue-light); font-weight:600; }
@media (max-width:900px){ .values-orb{ max-width:320px; } .value-item .v-lead{ font-size:1.25rem; } }

/* ===========================================================
   Printing page: periwinkle blend (matches illustration bg #738cc3)
   =========================================================== */
.dna-page .tile.print-tile{ background:#738cc3; border-color:#738cc3; }
.tile.print-tile h3{ color:#fff; }
.tile.print-tile p{ color:rgba(255,255,255,.85); }
.tile.print-tile .card-tag{ background:#fff; color:var(--navy); }
a.tile.print-tile:hover{ border-color:#fff; }

/* darker periwinkle section (same family as the wide-range diagram, #728CC3) */
.dna-page .sec-periwinkle{ background:rgba(114,140,195,.72); } /* translucent so the DNA shows through */
.sec-periwinkle h2, .sec-periwinkle h3{ color:#fff; }
.sec-periwinkle .eyebrow{ color:#FFD400; }
.sec-periwinkle p, .sec-periwinkle .muted, .sec-periwinkle .check-list li{ color:rgba(255,255,255,.92); }
.sec-periwinkle .check-list li::before{ color:#FFD400; }
.sec-periwinkle .btn-primary{ background:#fff; color:var(--navy); }
.sec-periwinkle .btn-primary:hover{ background:var(--navy); color:#fff; }
