/* ========================================================================
   Torch Credentialing — Design System
   Palette: terracotta #DC8D76 · sage #EBF4E0 · navy #334877
   Type: "Fraunces" (display/serif) + "Manrope" (body/UI)
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  /* Brand */
  --terracotta: #DC8D76;
  --terracotta-dark: #C1725A;
  --terracotta-light: #F0C0AE;
  --terracotta-wash: #FBEEE9;
  --sage: #EBF4E0;
  --sage-dark: #D3E6C0;
  --sage-deep: #A9C98C;
  --navy: #334877;
  --navy-dark: #212E4E;
  --navy-light: #5B6E9C;

  /* Neutrals */
  --cream: #FBF8F3;
  --white: #FFFFFF;
  --ink: #26241F;
  --ink-soft: #55524A;
  --line: #E7E1D6;
  --line-soft: #F1ECE1;

  /* Type */
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 50px -30px rgba(33,46,78,0.35);
  --shadow-card: 0 12px 32px -18px rgba(38,36,31,0.22);
  --ease: cubic-bezier(.22,.68,.32,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: inherit; }
h1,h2,h3,h4,h5{ font-family: var(--font-display); font-weight: 600; color: var(--navy-dark); margin: 0 0 .5em; letter-spacing: -0.01em; }
p{ margin: 0 0 1.2em; }
.container{ width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography scale ---------- */
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta-dark);
  margin-bottom: 14px;
}
.eyebrow::before{ content:""; width: 22px; height: 2px; background: var(--terracotta); border-radius: 2px; }

h1, .h1{ font-size: clamp(2.4rem, 4.6vw, 3.9rem); line-height: 1.06; }
h2, .h2{ font-size: clamp(1.9rem, 3.2vw, 2.7rem); line-height: 1.14; }
h3, .h3{ font-size: 1.42rem; line-height: 1.3; }
h4, .h4{ font-size: 1.12rem; line-height: 1.4; }
.lede{ font-size: 1.18rem; color: var(--ink-soft); line-height: 1.65; max-width: 62ch; }
.italic-serif{ font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--terracotta-dark); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px; border: 1px solid transparent;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn svg{ width: 16px; height: 16px; flex: none; transition: transform .35s var(--ease); }
.btn-primary{ background: var(--terracotta); color: var(--white); box-shadow: 0 14px 30px -14px rgba(220,141,118,.75); }
.btn-primary:hover{ background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(220,141,118,.85); }
.btn-primary:hover svg{ transform: translateX(3px); }
.btn-navy{ background: var(--navy); color: var(--white); box-shadow: 0 14px 30px -16px rgba(51,72,119,.7); }
.btn-navy:hover{ background: var(--navy-dark); transform: translateY(-2px); }
.btn-ghost{ background: transparent; border-color: rgba(51,72,119,.28); color: var(--navy); }
.btn-ghost:hover{ border-color: var(--navy); background: rgba(51,72,119,.06); transform: translateY(-2px); }
.btn-ghost-light{ background: transparent; border-color: rgba(255,255,255,.4); color: var(--white); }
.btn-ghost-light:hover{ border-color: #fff; background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-block{ width: 100%; }
.btn-sm{ padding: 11px 20px; font-size: 13.5px; }

.text-link{
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--navy);
  position: relative; padding-bottom: 2px;
}
.text-link svg{ width: 14px; height: 14px; transition: transform .3s var(--ease); }
.text-link::after{
  content:""; position: absolute; left:0; right: 100%; bottom: 0; height: 1.5px; background: var(--terracotta);
  transition: right .35s var(--ease);
}
.text-link:hover::after{ right: 0; }
.text-link:hover svg{ transform: translateX(3px); }
.text-link.on-dark{ color: var(--sage); }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 200;
  background: rgba(251,248,243,.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled{ box-shadow: 0 10px 30px -22px rgba(38,36,31,.4); }
.nav-bar{ display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 28px; max-width: var(--container); margin: 0 auto; }
.brand{ display: flex; align-items: center; }
.brand img{ height: 38px; width: auto; }
.nav-links{ display: flex; align-items: center; gap: 30px; }
.nav-links > li{ position: relative; }
.nav-links > li > a{
  font-weight: 700; font-size: 14.5px; color: var(--navy-dark); padding: 8px 2px; position: relative;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-links > li > a::after{
  content:""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--terracotta);
  transition: right .3s var(--ease); border-radius: 2px;
}
.nav-links > li > a:hover::after, .nav-links > li.is-open > a::after{ right: 0; }
.nav-links .chev{ width: 10px; height: 10px; transition: transform .3s var(--ease); }
.nav-links li.has-dropdown:hover .chev, .nav-links li.is-open .chev{ transform: rotate(180deg); }

/* .dropdown is an invisible hit-box that starts flush (top:100%, no gap) so the
   cursor's hover path from trigger to menu is never broken; the 14px visual gap
   lives inside it as padding-top, which stays part of the hoverable area.
   .dropdown-inner is the visible card and carries all styling + the slide animation. */
.dropdown{
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 300px; padding-top: 14px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), visibility .25s;
}
.nav-links li.has-dropdown:hover .dropdown, .nav-links li.is-open .dropdown{
  opacity: 1; visibility: visible; pointer-events: auto;
}
.dropdown-inner{
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft); padding: 12px; transform: translateY(-6px);
  transition: transform .25s var(--ease);
}
.nav-links li.has-dropdown:hover .dropdown-inner, .nav-links li.is-open .dropdown-inner{
  transform: translateY(0);
}
.dropdown-inner a{ display: flex; flex-direction: column; gap: 2px; padding: 10px 14px; border-radius: 10px; font-weight: 700; font-size: 14px; color: var(--navy-dark); }
.dropdown-inner a span{ font-weight: 500; font-size: 12.5px; color: var(--ink-soft); }
.dropdown-inner a:hover{ background: var(--sage); }

.nav-actions{ display: flex; align-items: center; gap: 16px; }
.nav-phone{ display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14.5px; color: var(--navy-dark); }
.nav-phone svg{ width: 17px; height: 17px; color: var(--terracotta); }
.nav-toggle{ display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.mobile-only-cta{ display: none; }
.nav-toggle span{ width: 24px; height: 2px; background: var(--navy-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* ---------- Mobile nav ---------- */
@media (max-width: 980px){
  .nav-links{
    position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); height: 100vh;
    background: var(--white); flex-direction: column; align-items: stretch; gap: 4px;
    padding: 100px 26px 40px; transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.35); overflow-y: auto;
  }
  body.nav-open .nav-links{ transform: translateX(0); }
  .nav-links > li > a{ padding: 14px 4px; border-bottom: 1px solid var(--line-soft); justify-content: space-between; }
  .dropdown{ position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none; width: auto; padding-top: 0; display: none; }
  .dropdown-inner{ background: none; box-shadow: none; border: none; padding: 4px 0 10px; transform: none; }
  .nav-links li.is-open .dropdown{ display: block; }
  .nav-phone span{ display: none; }
  .nav-toggle{ display: flex; }
  .mobile-only-cta{ display: block; }
  .nav-actions .btn-primary.btn-sm{ display: none; }
  body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .nav-scrim{ position: fixed; inset: 0; background: rgba(33,30,25,.4); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); z-index: 190; }
  body.nav-open .nav-scrim{ opacity: 1; visibility: visible; }
}
@media (min-width: 981px){ .nav-scrim{ display: none; } }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs{ padding: 18px 0 0; }
.breadcrumbs ol{ display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 13px; color: var(--ink-soft); }
.breadcrumbs a{ color: var(--ink-soft); font-weight: 600; }
.breadcrumbs a:hover{ color: var(--terracotta-dark); }
.breadcrumbs li:not(:last-child)::after{ content: "/"; margin-left: 6px; color: var(--terracotta-light); }
.breadcrumbs li:last-child{ color: var(--navy); font-weight: 700; }

/* ---------- Sections / layout helpers ---------- */
section{ position: relative; }
.section{ padding: 96px 0; }
.section-sm{ padding: 64px 0; }
.section-sage{ background: var(--sage); }
.section-navy{ background: var(--navy); color: rgba(255,255,255,.92); }
.section-navy h2, .section-navy h3, .section-navy h4{ color: var(--white); }
.section-cream{ background: var(--cream); }
.section-white{ background: var(--white); }
.center{ text-align: center; margin-left: auto; margin-right: auto; }
.max-w{ max-width: 700px; }
.head-row{ display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 46px; flex-wrap: wrap; }

.grid{ display: grid; gap: 28px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid-3{ grid-template-columns: repeat(2,1fr); } .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; } }

/* ---------- Hero ---------- */
.hero{ padding: 64px 0 100px; overflow: hidden; }
.hero-grid{ display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy p.lede{ margin-bottom: 34px; }
.hero-cta-row{ display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-trust{ display:flex; gap: 26px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust div{ display: flex; flex-direction: column; }
.hero-trust strong{ font-family: var(--font-display); font-size: 1.7rem; color: var(--navy-dark); }
.hero-trust span{ font-size: 12.5px; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

.hero-visual{ position: relative; }
.hero-visual .frame{
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4.6; position: relative;
  box-shadow: var(--shadow-soft);
}
.hero-visual .frame img{ width: 100%; height: 100%; object-fit: cover; }
.hero-visual .float-card{
  position: absolute; bottom: -26px; left: -30px; background: var(--white); border-radius: var(--radius-md);
  padding: 20px 22px; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero-visual .float-card .ic{ width: 44px; height: 44px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; flex: none; }
.hero-visual .float-card .ic svg{ width: 22px; height: 22px; color: var(--navy); }
.hero-visual .float-card strong{ display:block; font-family: var(--font-display); font-size: 1.05rem; color: var(--navy-dark); }
.hero-visual .float-card span{ font-size: 12.5px; color: var(--ink-soft); }
.hero-visual .ring{ position: absolute; top: -32px; right: -28px; width: 96px; height: 96px; border-radius: 50%; border: 2px dashed var(--terracotta-light); z-index: -1; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; max-width: 420px; margin: 0 auto 20px; }
  .hero-visual .float-card{ left: 12px; bottom: -20px; }
}

/* ---------- Page header (interior pages) ---------- */
.page-hero{ padding: 46px 0 76px; }
.page-hero .eyebrow{ margin-top: 6px; }
.page-hero .lede{ max-width: 64ch; }

/* ---------- Cards: services ---------- */
.service-card{
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  padding: 36px 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  height: 100%; display: flex; flex-direction: column;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-card .icon{
  width: 56px; height: 56px; border-radius: 16px; background: var(--sage); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: background .35s var(--ease), transform .35s var(--ease);
}
.service-card:hover .icon{ background: var(--terracotta); transform: rotate(-6deg) scale(1.05); }
.service-card .icon svg{ width: 26px; height: 26px; color: var(--navy); transition: color .35s var(--ease); }
.service-card:hover .icon svg{ color: var(--white); }
.service-card h3{ margin-bottom: 10px; }
.service-card p{ color: var(--ink-soft); margin-bottom: 20px; flex: 1; }
.service-card ul{ display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.service-card ul li{ display: flex; gap: 9px; font-size: 14.5px; color: var(--ink-soft); }
.service-card ul li svg{ width: 15px; height: 15px; color: var(--terracotta-dark); flex: none; margin-top: 3px; }

/* ---------- Process steps ---------- */
.steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }
.step{ position: relative; padding: 30px 24px 26px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--line-soft); }
.step::before{
  counter-increment: step; content: counter(step,decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.1rem; color: var(--terracotta-light); font-weight: 600; display: block; margin-bottom: 14px;
}
.step h4{ margin-bottom: 8px; }
.step p{ font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ---------- Stats strip ---------- */
.stat-strip{ display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 760px){ .stat-strip{ grid-template-columns: repeat(2,1fr); } }
.stat{ text-align: center; padding: 10px; }
.stat strong{ display: block; font-family: var(--font-display); font-size: clamp(2rem,4vw,2.6rem); color: var(--navy-dark); }
.section-navy .stat strong{ color: var(--white); }
.stat span{ font-size: 13px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--ink-soft); }
.section-navy .stat span{ color: rgba(255,255,255,.68); }

/* ---------- Split panel (image + text) ---------- */
.split{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse{ direction: rtl; }
.split.reverse > *{ direction: ltr; }
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; gap: 34px; } }
.split img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split .checklist{ display: flex; flex-direction: column; gap: 14px; margin: 26px 0 30px; }
.split .checklist li{ display: flex; gap: 12px; align-items: flex-start; }
.split .checklist li .tick{ width: 24px; height: 24px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.split .checklist li .tick svg{ width: 13px; height: 13px; color: var(--navy); }

/* ---------- Testimonials ---------- */
.t-card{
  background: var(--white); border-radius: var(--radius-md); padding: 30px 28px; height: 100%;
  border: 1px solid var(--line-soft); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.t-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-card); }
.t-stars{ display: flex; gap: 3px; margin-bottom: 16px; }
.t-stars svg{ width: 15px; height: 15px; color: var(--terracotta); }
.t-quote{ font-size: 15px; color: var(--ink); margin-bottom: 22px; flex: 1; }
.t-person{ display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.t-avatar{ width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; flex: none; font-size: 15px; }
.t-person strong{ display: block; font-size: 14px; color: var(--navy-dark); }
.t-person span{ font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Blog ---------- */
.blog-card{ background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line-soft); display: flex; flex-direction: column; height: 100%; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.blog-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.blog-card .thumb{ aspect-ratio: 16/10.5; overflow: hidden; }
.blog-card .thumb img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .thumb img{ transform: scale(1.06); }
.blog-card .body{ padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card .tag{ font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--terracotta-dark); margin-bottom: 10px; }
.blog-card h3{ font-size: 1.18rem; margin-bottom: 10px; }
.blog-card p{ color: var(--ink-soft); font-size: 14.5px; flex: 1; margin-bottom: 16px; }
.blog-card .meta{ font-size: 12.5px; color: var(--ink-soft); display: flex; gap: 10px; align-items: center; }

.article-hero{ padding: 52px 0 20px; }
.article-cover{ border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/7; margin: 30px 0 10px; box-shadow: var(--shadow-soft); }
.article-cover img{ width: 100%; height: 100%; object-fit: cover; }
.article-meta{ display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-soft); font-weight: 700; margin-bottom: 8px; }
.prose{ max-width: 760px; margin: 0 auto; font-size: 17px; }
.prose h2{ margin-top: 1.6em; font-size: 1.6rem; }
.prose h3{ margin-top: 1.3em; }
.prose ul, .prose ol{ margin: 0 0 1.3em; padding-left: 22px; }
.prose li{ margin-bottom: .5em; }
.prose ul li{ list-style: disc; }
.prose ol li{ list-style: decimal; }
.prose blockquote{
  margin: 2em 0; padding: 22px 26px; background: var(--sage); border-radius: var(--radius-md);
  font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--navy-dark); border: none;
}
.prose a{ color: var(--terracotta-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FAQ Accordion ---------- */
.accordion{ display: flex; flex-direction: column; gap: 14px; }
.acc-item{ background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-md); overflow: hidden; }
.acc-q{
  width: 100%; text-align: left; background: none; border: none; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; font-family: var(--font-display); font-size: 1.06rem; color: var(--navy-dark); font-weight: 600;
}
.acc-q .plus{ width: 26px; height: 26px; border-radius: 50%; background: var(--sage); flex: none; position: relative; transition: background .3s var(--ease), transform .3s var(--ease); }
.acc-q .plus::before, .acc-q .plus::after{ content:""; position: absolute; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.acc-q .plus::before{ width: 11px; height: 2px; top: 12px; left: 7.5px; }
.acc-q .plus::after{ width: 2px; height: 11px; top: 7.5px; left: 12px; }
.acc-item.is-open .acc-q .plus{ background: var(--terracotta); transform: rotate(180deg); }
.acc-item.is-open .acc-q .plus::before, .acc-item.is-open .acc-q .plus::after{ background: var(--white); }
.acc-item.is-open .acc-q .plus::after{ opacity: 0; }
.acc-a{ max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a-inner{ padding: 0 26px 24px; color: var(--ink-soft); font-size: 15px; max-width: 68ch; }

/* ---------- Pricing ---------- */
.price-table{ background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line-soft); overflow: hidden; box-shadow: var(--shadow-card); }
.price-row{ display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 18px 30px; align-items: center; border-bottom: 1px solid var(--line-soft); }
.price-row:last-child{ border-bottom: none; }
.price-row:nth-child(odd){ background: var(--cream); }
.price-row .name{ font-weight: 700; color: var(--navy-dark); }
.price-row .desc{ font-size: 13.5px; color: var(--ink-soft); margin-top: 2px; }
.price-row .amount{ font-family: var(--font-display); font-size: 1.3rem; color: var(--terracotta-dark); font-weight: 600; white-space: nowrap; }
.price-note{ font-size: 13.5px; color: var(--ink-soft); padding: 18px 30px 0; }

.pricing-card{ background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--line-soft); padding: 40px 34px; text-align: center; height: 100%; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.pricing-card.featured{ border-color: var(--terracotta); position: relative; transform: translateY(-10px); box-shadow: var(--shadow-soft); }
.pricing-card.featured::before{ content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--terracotta); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; }
.pricing-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.pricing-card.featured:hover{ transform: translateY(-14px); }
.pricing-card .amt{ font-family: var(--font-display); font-size: 2.6rem; color: var(--navy-dark); margin: 14px 0 4px; }
.pricing-card .amt small{ font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.pricing-card ul{ text-align: left; display: flex; flex-direction: column; gap: 12px; margin: 26px 0; flex: 1; }
.pricing-card ul li{ display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.pricing-card ul li svg{ width: 15px; height: 15px; color: var(--terracotta-dark); flex: none; margin-top: 3px; }

/* ---------- Industry chips / grid ---------- */
.industry-card{ position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3.1; display: flex; align-items: flex-end; box-shadow: var(--shadow-card); }
.industry-card img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.industry-card::after{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(33,46,78,0) 35%, rgba(24,32,54,.88) 100%); }
.industry-card:hover img{ transform: scale(1.08); }
.industry-card .cardbody{ position: relative; z-index: 2; padding: 24px; color: #fff; }
.industry-card h3{ color: #fff; font-size: 1.25rem; margin-bottom: 6px; }
.industry-card p{ color: rgba(255,255,255,.82); font-size: 13.5px; margin-bottom: 12px; }
.industry-card .text-link{ color: var(--sage); }
.industry-card .text-link::after{ background: var(--sage); }

/* ---------- CTA band ---------- */
.cta-band{ background: var(--navy); border-radius: var(--radius-lg); padding: 60px 56px; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::before{ content:""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(220,141,118,.35), transparent 70%); top: -140px; right: -80px; }
.cta-band h2{ color: #fff; margin-bottom: 10px; }
.cta-band p{ color: rgba(255,255,255,.78); margin: 0; max-width: 46ch; }
.cta-band .actions{ display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
@media (max-width: 760px){ .cta-band{ padding: 44px 30px; flex-direction: column; text-align: center; align-items: stretch;} .cta-band .actions{ justify-content: center; } }

/* ---------- Logo strip ---------- */
.trust-strip{ display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.trust-chip{ display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 100px; background: var(--white); border: 1px solid var(--line-soft); font-size: 13px; font-weight: 700; color: var(--navy-dark); }
.trust-chip svg{ width: 15px; height: 15px; color: var(--terracotta-dark); }

/* ---------- Form ---------- */
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px){ .form-grid{ grid-template-columns: 1fr; } }
.field{ display: flex; flex-direction: column; gap: 8px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 13px; font-weight: 700; color: var(--navy-dark); }
.field input, .field select, .field textarea{
  padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 4px var(--terracotta-wash); }
.field textarea{ resize: vertical; min-height: 130px; }
.form-note{ font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Contact cards ---------- */
.contact-card{ background: var(--white); border-radius: var(--radius-md); padding: 26px 26px; border: 1px solid var(--line-soft); display: flex; gap: 16px; align-items: flex-start; }
.contact-card .ic{ width: 46px; height: 46px; border-radius: 14px; background: var(--sage); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-card .ic svg{ width: 21px; height: 21px; color: var(--navy); }
.contact-card h4{ margin-bottom: 4px; }
.contact-card p{ margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.contact-card a{ color: var(--navy-dark); font-weight: 700; }

/* ---------- Team / about ---------- */
.founder{ display: grid; grid-template-columns: .8fr 1.2fr; gap: 54px; align-items: center; }
@media (max-width: 900px){ .founder{ grid-template-columns: 1fr; } }
.founder .photo-wrap{ position: relative; }
.founder img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; aspect-ratio: 3/3.7; object-fit: cover; }
.founder .sig{ font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--terracotta-dark); margin-top: 18px; }
.founder .role-badge{ position: absolute; bottom: -20px; right: -18px; background: var(--white); box-shadow: var(--shadow-card); border-radius: 100px; padding: 12px 20px; font-weight: 800; font-size: 13px; color: var(--navy-dark); }

.values-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px){ .values-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .values-grid{ grid-template-columns: 1fr; } }
.value-card{ padding: 8px 4px; }
.value-card .num{ font-family: var(--font-display); font-size: 1.1rem; color: var(--terracotta); margin-bottom: 10px; display: block; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-dark); color: rgba(255,255,255,.72); padding: 80px 0 0; }
.footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 980px){ .footer-top{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-top h5{ color: #fff; font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-top ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-top a{ font-size: 14.5px; color: rgba(255,255,255,.68); transition: color .25s var(--ease); }
.footer-top a:hover{ color: var(--terracotta-light); }
.footer-about img{ height: 34px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-about p{ font-size: 14px; color: rgba(255,255,255,.62); max-width: 32ch; }
.footer-social{ display: flex; gap: 10px; margin-top: 18px; }
.footer-social a{ width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), transform .25s var(--ease); }
.footer-social a:hover{ background: var(--terracotta); transform: translateY(-3px); }
.footer-social svg{ width: 16px; height: 16px; color: #fff; }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding: 26px 0; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom a{ color: rgba(255,255,255,.5); }
.footer-bottom a:hover{ color: var(--terracotta-light); }
.footer-bottom .legal-links{ display: flex; gap: 18px; }

/* ---------- Reveal animation ---------- */
[data-reveal]{ opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"]{ transition-delay: .08s; }
[data-reveal-delay="2"]{ transition-delay: .16s; }
[data-reveal-delay="3"]{ transition-delay: .24s; }
[data-reveal-delay="4"]{ transition-delay: .32s; }

/* ---------- Misc ---------- */
.divider-dot{ width: 4px; height: 4px; border-radius: 50%; background: var(--terracotta); }
.badge-soft{ display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px; background: var(--sage); color: var(--navy-dark); font-size: 12.5px; font-weight: 700; }
.two-col-list{ columns: 2; column-gap: 40px; }
@media (max-width: 620px){ .two-col-list{ columns: 1; } }
.two-col-list li{ break-inside: avoid; margin-bottom: 12px; display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.two-col-list li svg{ width: 15px; height: 15px; color: var(--terracotta-dark); flex: none; margin-top: 3px; }

.skip-link{ position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 12px 20px; z-index: 999; border-radius: 0 0 10px 0; }
.skip-link:focus{ left: 0; }

.back-to-top{ position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s var(--ease); z-index: 150; }
.back-to-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--terracotta); }
.back-to-top svg{ width: 18px; height: 18px; }

@media (max-width: 700px){
  .section{ padding: 66px 0; }
  .section-sm{ padding: 48px 0; }
  h2, .h2{ font-size: 2rem; }
}
