/* ============================================================
   SJB SOLUTIONS — Statutory Compliance & Labour Law Consultancy
   Design language: the official register.
   A compliance file feels like paper, ink, and a verifying seal —
   so the site borrows a ledger's structure (indexed entries,
   ruled dividers, a rotating brass seal) instead of generic
   corporate gradients.
   ============================================================ */

:root{
  --bg:            #F6F7F4;
  --bg-panel:      #EFF1EA;
  --paper:         #FCFCFA;
  --ink:           #10192C;
  --ink-soft:      #3B4658;
  --ink-faint:     #7A8496;
  --navy:          #132038;
  --navy-dark:     #0A1220;
  --brass:         #A9803D;
  --brass-light:   #D2AD6C;
  --brass-dim:     rgba(169,128,61,0.18);
  --green:         #33604B;
  --line:          #DBDED4;
  --line-dark:     rgba(255,255,255,0.14);
  --shadow:        0 20px 50px -25px rgba(16,25,44,0.35);
  --radius:        2px;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--serif); margin:0; color:var(--ink); }
p{ margin:0; }

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--brass);
  outline-offset:3px;
}

/* ---------------- Eyebrow / index label ---------------- */
.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--mono);
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--brass);
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background:var(--brass);
  display:inline-block;
}

/* ---------------- Navbar ---------------- */
.navbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:22px 0;
  transition:padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.navbar .nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.navbar.scrolled{
  padding:12px 0;
  background:rgba(246,247,244,0.82);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 1px 0 var(--line), 0 12px 30px -22px rgba(16,25,44,0.4);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{ width:40px; height:40px; flex-shrink:0; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text strong{
  font-family:var(--serif);
  font-size:19px;
  font-weight:600;
  letter-spacing:0.01em;
}
.brand-text span{
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--ink-faint);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-links a{
  font-size:14.5px;
  font-weight:500;
  color:var(--ink-soft);
  position:relative;
  padding:4px 0;
  transition:color 0.25s ease;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:1px;
  background:var(--brass);
  transition:width 0.3s ease;
}
.nav-links a:hover{ color:var(--ink); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{
  display:inline-flex;
}
.nav-toggle{
  display:none;
  width:38px; height:38px;
  border:1px solid var(--line);
  background:var(--paper);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{ display:none; }
.nav-toggle svg{ width:18px; height:18px; }

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  font-family:var(--sans);
  font-size:14.5px;
  font-weight:600;
  letter-spacing:0.01em;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--navy);
  color:#F6F7F4;
  box-shadow:0 10px 24px -12px rgba(19,32,56,0.55);
}
.btn-primary:hover{ background:var(--ink); transform:translateY(-2px); box-shadow:0 16px 30px -14px rgba(19,32,56,0.6); }
.btn-ghost{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}
.btn-ghost:hover{ background:var(--ink); color:#F6F7F4; }
.btn-brass{
  background:var(--brass);
  color:#1a1206;
}
.btn-brass:hover{ background:var(--brass-light); transform:translateY(-2px); }
.btn-sm{ padding:10px 18px; font-size:13px; }
.btn svg{ width:16px; height:16px; }

/* ---------------- Hero ---------------- */
.hero{
  position:relative;
  padding:172px 0 120px;
  overflow:hidden;
  background:
    radial-gradient(1100px 500px at 82% -10%, rgba(169,128,61,0.13), transparent 60%),
    var(--bg);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.85fr;
  gap:60px;
  align-items:center;
}
.hero h1{
  font-size:clamp(38px, 4.6vw, 60px);
  font-weight:600;
  line-height:1.08;
  letter-spacing:-0.01em;
  margin-bottom:24px;
}
.hero h1 em{
  font-style:italic;
  color:var(--brass);
}
.hero p.lede{
  font-size:18px;
  color:var(--ink-soft);
  max-width:520px;
  margin-bottom:36px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px; }
.hero-meta{
  display:flex;
  gap:34px;
  flex-wrap:wrap;
  padding-top:28px;
  border-top:1px solid var(--line);
}
.hero-meta .stat-num{
  font-family:var(--mono);
  font-size:26px;
  color:var(--navy);
  font-weight:600;
}
.hero-meta .stat-label{
  font-size:12.5px;
  color:var(--ink-faint);
  text-transform:uppercase;
  letter-spacing:0.08em;
  margin-top:4px;
}

/* Seal — the signature element */
.seal-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  height:440px;
}
.seal-ring{
  position:absolute;
  inset:0;
  margin:auto;
  width:100%;
  max-width:400px;
  aspect-ratio:1/1;
  animation:spin 46s linear infinite;
}
.seal-center{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.seal-center .inner-badge{
  width:210px; height:210px;
  border-radius:50%;
  background:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 30px 60px -25px rgba(19,32,56,0.55), inset 0 0 0 6px rgba(210,173,108,0.35);
}
.inner-badge svg{ width:88px; height:88px; }
.doc-card{
  position:absolute;
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:14px 18px;
  font-family:var(--mono);
  font-size:11.5px;
  color:var(--ink-soft);
  border-radius:2px;
  animation:float 7s ease-in-out infinite;
}
.doc-card b{ color:var(--green); font-weight:600; }
.doc-card.c1{ top:6%; left:0%; animation-delay:0s; }
.doc-card.c2{ bottom:10%; right:2%; animation-delay:2.2s; }
.doc-card.c3{ bottom:0%; left:12%; animation-delay:4.1s; }

@keyframes spin{ to{ transform:rotate(360deg); } }
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* ---------------- Section basics ---------------- */
section{ padding:110px 0; position:relative; }
.section-head{
  max-width:640px;
  margin-bottom:56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }
.section-head h2{
  font-size:clamp(30px,3.4vw,42px);
  font-weight:600;
  line-height:1.15;
  letter-spacing:-0.01em;
}
.section-head p{
  margin-top:16px;
  color:var(--ink-soft);
  font-size:16.5px;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---------------- About ---------------- */
.about{ background:var(--bg); }
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:70px;
  align-items:start;
}
.about-copy p{ color:var(--ink-soft); font-size:16.5px; margin-bottom:18px; }
.file-tab{
  display:inline-block;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--navy);
  background:var(--brass-dim);
  border:1px solid rgba(169,128,61,0.4);
  padding:4px 10px;
  margin-bottom:20px;
}
.stamp-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.stamp-card{
  position:relative;
  background:var(--paper);
  border:1px solid var(--line);
  padding:24px 26px;
  display:flex;
  align-items:center;
  gap:18px;
  transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.stamp-card:hover{ transform:translateX(6px); box-shadow:var(--shadow); border-color:var(--brass-light); }
.stamp-card .mark{
  width:46px; height:46px;
  border-radius:50%;
  border:1.5px solid var(--brass);
  display:flex; align-items:center; justify-content:center;
  color:var(--brass);
  flex-shrink:0;
}
.stamp-card .mark svg{ width:22px; height:22px; }
.stamp-card h4{ font-size:17px; margin-bottom:4px; }
.stamp-card p{ font-size:14px; color:var(--ink-faint); }

/* ---------------- Why choose us ---------------- */
.why{ background:var(--bg-panel); }
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.why-item{
  background:var(--bg-panel);
  padding:38px 32px;
  transition:background 0.3s ease;
}
.why-item:hover{ background:var(--paper); }
.why-item .icon{
  width:44px; height:44px;
  color:var(--navy);
  margin-bottom:20px;
  transition:transform 0.3s ease, color 0.3s ease;
}
.why-item:hover .icon{ color:var(--brass); transform:translateY(-3px); }
.why-item h4{ font-size:17.5px; margin-bottom:8px; }
.why-item p{ font-size:14.5px; color:var(--ink-faint); }

/* ---------------- Services ---------------- */
.services{ background:var(--bg); }
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card{
  background:var(--paper);
  border:1px solid var(--line);
  padding:30px 28px;
  transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position:relative;
  overflow:hidden;
}
.service-card::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--brass),var(--brass-light));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.35s ease;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:transparent; }
.service-card:hover::before{ transform:scaleX(1); }
.service-card .icon{
  width:40px; height:40px;
  color:var(--brass);
  margin-bottom:22px;
}
.service-card h4{ font-size:17.5px; margin-bottom:10px; }
.service-card p{ font-size:14.5px; color:var(--ink-faint); }
.services-cta{ text-align:center; margin-top:48px; }

/* ---------------- Process (paper trail) ---------------- */
.process{ background:var(--navy); color:#EDEFEA; }
.process .section-head h2{ color:#F6F7F4; }
.process .section-head p{ color:rgba(237,239,234,0.68); }
.process .eyebrow{ color:var(--brass-light); }
.timeline{ position:relative; max-width:900px; margin:0 auto; }
.timeline::before{
  content:"";
  position:absolute; left:50%; top:0; bottom:0;
  width:1px;
  background:repeating-linear-gradient(to bottom, rgba(210,173,108,0.55) 0 6px, transparent 6px 14px);
  transform:translateX(-50%);
}
.t-step{
  display:grid;
  grid-template-columns:1fr 60px 1fr;
  align-items:center;
  gap:0;
  margin-bottom:8px;
}
.t-card{
  background:rgba(255,255,255,0.045);
  border:1px solid rgba(255,255,255,0.12);
  padding:26px 28px;
  backdrop-filter:blur(6px);
}
.t-step:nth-child(odd) .t-card{ grid-column:1; text-align:right; }
.t-step:nth-child(even) .t-card{ grid-column:3; }
.t-num{
  grid-column:2;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--brass);
  color:#1a1206;
  font-family:var(--mono);
  font-weight:700;
  font-size:15px;
  display:flex; align-items:center; justify-content:center;
  justify-self:center;
  box-shadow:0 0 0 6px var(--navy), 0 0 0 7px rgba(210,173,108,0.4);
}
.t-card h4{ color:#F6F7F4; font-size:18px; margin-bottom:8px; }
.t-card p{ color:rgba(237,239,234,0.65); font-size:14.5px; }

/* ---------------- Testimonials ---------------- */
.testimonials{ background:var(--bg); }
.t-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.quote-card{
  background:var(--paper);
  border:1px solid var(--line);
  padding:32px 28px;
  position:relative;
}
.quote-card .stars{ color:var(--brass); font-size:14px; letter-spacing:2px; margin-bottom:18px; }
.quote-card p.quote{ font-family:var(--serif); font-size:18px; line-height:1.5; color:var(--ink); margin-bottom:22px; }
.quote-card .who{ display:flex; align-items:center; justify-content:space-between; }
.quote-card .who span{ font-size:13.5px; color:var(--ink-faint); font-family:var(--mono); }
.quote-card .approved{
  display:flex; align-items:center; gap:6px;
  font-family:var(--mono); font-size:10.5px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--green);
  border:1px solid rgba(51,96,75,0.35);
  padding:3px 8px;
}
.quote-card .approved svg{ width:12px; height:12px; }

/* ---------------- CTA band ---------------- */
.cta-band{
  background:var(--navy-dark);
  padding:90px 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(700px 300px at 50% 0%, rgba(210,173,108,0.14), transparent 65%);
}
.cta-band h2{
  color:#F6F7F4;
  font-size:clamp(28px,3.6vw,40px);
  margin-bottom:14px;
  position:relative;
}
.cta-band p{ color:rgba(237,239,234,0.65); margin-bottom:32px; position:relative; }
.cta-band .btn-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ---------------- Footer ---------------- */
footer{ background:var(--navy-dark); color:rgba(237,239,234,0.7); padding:70px 0 0; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-text strong{ color:#F6F7F4; }
.footer-brand p{ margin-top:16px; font-size:14px; color:rgba(237,239,234,0.55); max-width:280px; }
.footer h5{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--brass-light);
  margin-bottom:18px;
}
.footer-col ul li{ margin-bottom:11px; }
.footer-col ul li a{ font-size:14px; color:rgba(237,239,234,0.68); transition:color 0.25s ease; }
.footer-col ul li a:hover{ color:#F6F7F4; }
.footer-col .contact-line{ display:flex; gap:10px; font-size:14px; margin-bottom:14px; color:rgba(237,239,234,0.68); }
.footer-col .contact-line svg{ width:16px; height:16px; flex-shrink:0; margin-top:2px; color:var(--brass-light); }
.social-row{ display:flex; gap:12px; margin-top:18px; }
.social-row a{
  width:34px; height:34px;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.25s ease, border-color 0.25s ease;
}
.social-row a svg{ width:15px; height:15px; }
.social-row a:hover{ background:var(--brass); border-color:var(--brass); color:#1a1206; }
.footer-bottom{
  padding:22px 0 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:rgba(237,239,234,0.45);
  flex-wrap:wrap;
  gap:10px;
}

/* ---------------- Floating buttons ---------------- */
.floating-btns{
  position:fixed;
  right:24px; bottom:24px;
  display:flex; flex-direction:column; gap:14px;
  z-index:900;
}
.fab{
  width:54px; height:54px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  box-shadow:0 14px 28px -12px rgba(0,0,0,0.4);
  transition:transform 0.25s ease;
}
.fab:hover{ transform:scale(1.08); }
.fab svg{ width:26px; height:26px; }
.fab.whatsapp{ background:#2f9d5c; }
.fab.call{ background:var(--navy); }

/* ---------------- Page hero (services page) ---------------- */
.page-hero{
  padding:160px 0 80px;
  background:
    radial-gradient(900px 400px at 12% -10%, rgba(169,128,61,0.12), transparent 60%),
    var(--bg);
  text-align:left;
}
.page-hero .eyebrow::before{ display:inline-block; }
.page-hero h1{ font-size:clamp(34px,4.4vw,52px); font-weight:600; max-width:760px; }
.page-hero p{ margin-top:18px; font-size:17px; color:var(--ink-soft); max-width:620px; }

/* ---------------- Service category blocks ---------------- */
.svc-category{ margin-bottom:64px; }
.svc-category-head{
  display:flex;
  align-items:baseline;
  gap:16px;
  margin-bottom:26px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}
.svc-category-head .idx{ font-family:var(--mono); color:var(--brass); font-size:14px; }
.svc-category-head h3{ font-size:22px; font-weight:600; }
.svc-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px 32px; }
.svc-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px 0;
  border-bottom:1px dashed var(--line);
  font-size:15px;
  color:var(--ink-soft);
}
.svc-row svg{ width:17px; height:17px; margin-top:2px; color:var(--brass); flex-shrink:0; }
.svc-row b{ color:var(--ink); font-weight:600; }

/* ---------------- Industries ---------------- */
.industries{ background:var(--bg-panel); }
.ind-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.ind-card{
  background:var(--paper);
  border:1px solid var(--line);
  padding:28px 20px;
  text-align:center;
  transition:transform 0.3s ease, border-color 0.3s ease;
}
.ind-card:hover{ transform:translateY(-5px); border-color:var(--brass-light); }
.ind-card .icon{ width:34px; height:34px; margin:0 auto 14px; color:var(--navy); }
.ind-card h4{ font-size:14.5px; font-weight:600; }

/* ---------------- Contact ---------------- */
.contact{ background:var(--bg); }
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:44px;
  align-items:start;
}
.contact-info{
  background:var(--navy);
  color:#EDEFEA;
  padding:40px 36px;
}
.contact-info h3{ color:#F6F7F4; font-size:22px; margin-bottom:26px; }
.contact-line{ display:flex; gap:14px; margin-bottom:26px; }
.contact-line svg{ width:20px; height:20px; color:var(--brass-light); flex-shrink:0; margin-top:2px; }
.contact-line .label{ font-family:var(--mono); font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(237,239,234,0.5); margin-bottom:4px; }
.contact-line .val{ font-size:15px; color:#EDEFEA; }
.map-embed{ margin-top:10px; border:1px solid rgba(255,255,255,0.15); overflow:hidden; }
.map-embed iframe{ width:100%; height:220px; border:0; display:block; filter:grayscale(0.15) contrast(1.05); }

.form-panel{ background:var(--paper); border:1px solid var(--line); padding:40px; }
.form-panel h3{ font-size:22px; margin-bottom:8px; }
.form-panel .sub{ color:var(--ink-faint); font-size:14.5px; margin-bottom:28px; }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field.full{ grid-column:1/-1; }
.form-field label{ font-size:12.5px; font-family:var(--mono); letter-spacing:0.06em; text-transform:uppercase; color:var(--ink-faint); }
.form-field input, .form-field select, .form-field textarea{
  border:1px solid var(--line);
  background:var(--bg);
  padding:13px 14px;
  font-family:var(--sans);
  font-size:14.5px;
  color:var(--ink);
  transition:border-color 0.25s ease, background 0.25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  border-color:var(--brass);
  background:var(--paper);
  outline:none;
}
.form-field textarea{ resize:vertical; min-height:110px; }
.form-field .error{ font-size:12px; color:#B3402F; min-height:14px; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea{ border-color:#B3402F; }
.form-submit-row{ margin-top:8px; display:flex; align-items:center; gap:16px; }
.form-success{
  display:none;
  align-items:center; gap:10px;
  background:rgba(51,96,75,0.1);
  border:1px solid rgba(51,96,75,0.35);
  color:var(--green);
  padding:14px 18px;
  font-size:14px;
  margin-top:20px;
}
.form-success.show{ display:flex; }
.form-success svg{ width:18px; height:18px; flex-shrink:0; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .seal-wrap{ height:300px; order:-1; }
  .about-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr 1fr; }
  .services-grid{ grid-template-columns:1fr 1fr; }
  .t-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .ind-grid{ grid-template-columns:repeat(2,1fr); }
  .svc-list{ grid-template-columns:1fr; }
}
@media (max-width: 720px){
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px;
    background:var(--paper); flex-direction:column; align-items:flex-start;
    padding:100px 32px 32px; gap:26px;
    box-shadow:-20px 0 50px -20px rgba(0,0,0,0.3);
    transform:translateX(100%); transition:transform 0.35s ease;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{ display:flex; }
  .nav-cta{ display:none; }
  .nav-links .nav-cta{ display:inline-flex; }
  .why-grid{ grid-template-columns:1fr; }
  .services-grid{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .t-step{ grid-template-columns:46px 1fr; }
  .t-step .t-num{ grid-column:1; }
  .t-step:nth-child(odd) .t-card, .t-step:nth-child(even) .t-card{ grid-column:2; text-align:left; }
  .timeline::before{ left:23px; }
  .footer-grid{ grid-template-columns:1fr; }
  .ind-grid{ grid-template-columns:1fr 1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}
