/* =============================================================
   Vicsanity Marketing — base.css
   ============================================================= */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --slate:      #1E2A3A;
  --slate-mid:  #253347;
  --slate-light:#2E3F55;
  --amber:      #D4820A;
  --amber-dark: #B56D08;
  --amber-light:#E8960F;
  --offwhite:   #F9F6F0;
  --offwhite-dark: #EDE9E1;
  --white:      #FFFFFF;
  --text-dark:  #1E2A3A;
  --text-muted: #5A6A7A;
  --text-light: #FFFFFF;
  --border:     #D8D2C8;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 4px 18px rgba(0,0,0,0.16);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.22);
  --radius:     4px;
  --radius-md:  6px;
  --radius-lg:  10px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --transition:   0.25s ease;
  --container-max: 1200px;
  --container-narrow: 780px;
  --container-wide: 1400px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; border: none; cursor: pointer; background: none; }

/* ── Containers ─────────────────────────────────────────────── */
.container         { max-width: var(--container-max);   margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.container--wide   { max-width: var(--container-wide);  margin: 0 auto; padding: 0 24px; }
.container--legal  { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────────────── */
.display-hero {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-xl {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
}
.display-md {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}
.display-sm {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
}
.label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.label--light { color: var(--amber-light); }
.label--muted { color: var(--text-muted); }
.lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 400;
}
.lead--light { color: rgba(255,255,255,0.80); }

.h2-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.h2-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 4px;
  background: var(--amber);
  border-radius: 2px;
}
.h2-underline--center { display: block; text-align: center; }
.h2-underline--center::after { left: 50%; transform: translateX(-50%); }

/* ── Sections ───────────────────────────────────────────────── */
.section        { padding: 88px 0; }
.section--sm    { padding: 56px 0; }
.section--slate          { background: var(--slate); color: var(--white); }
.section--slate-mid      { background: var(--slate-mid); color: var(--white); }
.section--offwhite       { background: var(--offwhite); }
.section--offwhite-dark  { background: var(--offwhite-dark); }
.section--white          { background: var(--white); }
.section--slate-grad     { background: linear-gradient(135deg, var(--slate) 0%, var(--slate-mid) 100%); color: var(--white); }
.section--amber-grad     { background: linear-gradient(135deg, var(--amber-dark) 0%, var(--amber-light) 100%); color: var(--white); }

.section-header          { margin-bottom: 52px; }
.section-header--center  { text-align: center; }
.section-header--center .h2-underline::after { left: 50%; transform: translateX(-50%); }
.section-header--light .label { color: var(--amber-light); }
.section-header--light .display-xl,
.section-header--light .display-lg { color: var(--white); }
.section-header--light .lead { color: rgba(255,255,255,0.78); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.btn:hover::before { opacity: 1; }

.btn-amber        { background: var(--amber); color: var(--white); border-color: var(--amber); }
.btn-amber:hover  { background: var(--amber-dark); border-color: var(--amber-dark); box-shadow: var(--shadow-md); }
.btn-slate        { background: var(--slate); color: var(--white); border-color: var(--slate); }
.btn-slate:hover  { background: var(--slate-mid); border-color: var(--slate-mid); box-shadow: var(--shadow-md); }
.btn-outline-amber       { background: transparent; color: var(--amber); border-color: var(--amber); box-shadow: none; }
.btn-outline-amber:hover { background: var(--amber); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-outline-white       { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); box-shadow: none; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-white        { background: var(--white); color: var(--slate); border-color: var(--white); }
.btn-white:hover  { background: var(--offwhite); box-shadow: var(--shadow-md); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card--slate { background: var(--slate); color: var(--white); border-color: var(--slate-mid); }
.card--amber-top { border-top: 4px solid var(--amber); }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(212,130,10,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.card--slate .card-icon { background: rgba(212,130,10,0.2); }
.card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--slate);
}
.card--slate .card-title { color: var(--white); }

/* ── Grids ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Stats ──────────────────────────────────────────────────── */
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}
.stat-label--dark { color: rgba(255,255,255,0.65); }

/* ── Process Steps ──────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.section--slate .process-step { border-color: rgba(255,255,255,0.1); }
.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.process-num--slate { background: var(--slate); }
.process-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--slate);
}
.section--slate .process-content h3 { color: var(--white); }
.process-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }
.section--slate .process-content p { color: rgba(255,255,255,0.72); }

/* ── Accordion ──────────────────────────────────────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate);
  text-align: left;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--offwhite); }
.accordion-trigger[aria-expanded="true"] { background: var(--offwhite); color: var(--amber); }
.accordion-icon {
  width: 24px; height: 24px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 0.75rem;
  color: var(--amber);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.accordion-body-inner { padding: 0 24px 20px; font-size: 0.94rem; color: var(--text-muted); line-height: 1.7; }

/* ── Tabs ───────────────────────────────────────────────────── */
.tabs-nav {
  display: flex;
  gap: 0;
  border: 2px solid var(--amber);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 48px;
  box-shadow: var(--shadow-sm);
}
.tab-btn {
  padding: 13px 32px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--amber);
  border: none;
  transition: all var(--transition);
}
.tab-btn:hover { background: rgba(212,130,10,0.08); }
.tab-btn[aria-selected="true"] { background: var(--amber); color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--slate { background: var(--slate); }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,42,58,0.94) 0%, rgba(30,42,58,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  background: var(--slate);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(212,130,10,0.08);
}
.page-hero .display-xl { color: var(--white); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span.sep { color: rgba(255,255,255,0.3); }
.breadcrumb span.current { color: var(--amber); }

/* ── Marquee ────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--amber);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  padding: 0 18px;
}
.marquee-dot {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  padding: 0 4px;
}

/* ── Testimonials (Swiper) ──────────────────────────────────── */
.swiper-testimonial { padding-bottom: 52px !important; }
.swiper-testimonial .swiper-slide {
  height: auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate);
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}
.swiper-pagination-bullet-active { background: var(--amber) !important; }

/* ── Dual CTA Split ─────────────────────────────────────────── */
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; }
.dual-cta-panel {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .dual-cta { grid-template-columns: 1fr; }
  .dual-cta-panel { padding: 56px 28px; }
}

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(30,42,58,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--amber); }
.nav-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--amber); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--slate-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-link {
  display: block;
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-dropdown-link:last-child { border-bottom: none; }
.nav-dropdown-link:hover { background: rgba(212,130,10,0.12); color: var(--amber); }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--slate-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
  text-decoration: none;
}
.nav-mobile-link:hover { color: var(--amber); }
.nav-mobile-link.is-cta { color: var(--amber); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--slate);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--amber); }
.footer-brand-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.65;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--amber); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--amber); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Product Cards ──────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-img {
  height: 200px;
  background: var(--slate-mid);
  position: relative;
  overflow: hidden;
}
.product-card-body { padding: 24px; }
.product-disclaimer { font-size: 0.74rem; color: var(--text-muted); font-style: italic; margin-top: 8px; }

/* ── Result Cards ───────────────────────────────────────────── */
.result-card {
  background: var(--slate);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}
.result-metric { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.result-metric-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.result-metric-num {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--amber);
}

/* ── Form ───────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,130,10,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-checkbox { width: 18px; height: 18px; accent-color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.form-checkbox-text { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }
.form-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-success.visible { display: block; }
.form-fields { display: flex; flex-direction: column; gap: 20px; }

/* ── Legal Content ──────────────────────────────────────────── */
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate);
  margin: 36px 0 12px;
}
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate);
  margin: 24px 0 8px;
}
.legal-content p { margin-bottom: 14px; color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; }
.legal-content ul { margin: 10px 0 18px 20px; }
.legal-content ul li { margin-bottom: 8px; color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; list-style: disc; }
.legal-content a { color: var(--amber); text-decoration: underline; }

/* ── Stats Row ──────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stats-row .stat-item {
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-row .stat-item:last-child { border-right: none; }
@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-item:nth-child(2) { border-right: none; }
  .stats-row .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-row .stat-item:nth-child(3),
  .stats-row .stat-item:nth-child(4) { border-bottom: none; }
}

/* ── Instagram Strip ────────────────────────────────────────── */
.instagram-strip {
  text-align: center;
  padding: 64px 24px;
}
.instagram-handle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate);
}
.instagram-handle a {
  color: var(--amber);
  text-decoration: none;
  transition: color var(--transition);
}
.instagram-handle a:hover { color: var(--amber-dark); }

/* ── Quote Block ────────────────────────────────────────────── */
.quote-block {
  position: relative;
  padding: 40px 48px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--amber);
  display: block;
  margin-bottom: 24px;
  opacity: 0.8;
}
.quote-text {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.7;
  color: var(--white);
  font-style: italic;
  font-weight: 400;
}
.quote-attribution {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ── Spacer utilities ───────────────────────────────────────── */
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 48px; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 16px; }
.text-amber { color: var(--amber); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }

/* ── Body offset for fixed nav ──────────────────────────────── */
body { padding-top: 68px; }
.hero, .page-hero { margin-top: -68px; padding-top: 68px; }
.hero { min-height: 100vh; }

/* ── Two-col layout ─────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col--reversed .two-col-text { order: 2; }
.two-col--reversed .two-col-visual { order: 1; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reversed .two-col-text { order: unset; }
  .two-col--reversed .two-col-visual { order: unset; }
}

/* ── Visual placeholder ─────────────────────────────────────── */
.visual-block {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-mid) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.visual-block::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(212,130,10,0.12);
}
.visual-block::after {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(212,130,10,0.07);
}
.visual-block-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}
.visual-block-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.visual-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--amber);
}

/* ── Feature list ───────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--offwhite);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--amber);
}
.feature-item-icon { color: var(--amber); font-size: 1.2rem; flex-shrink: 0; }
.feature-item-text { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }
.feature-item-text strong { color: var(--slate); font-weight: 700; display: block; margin-bottom: 2px; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--amber);
  min-width: 56px;
  padding-top: 2px;
}
.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 4px;
}
.timeline-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Specializations grid ───────────────────────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.spec-item {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 600px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--sm { padding: 40px 0; }
  .hero-content { padding: 0 20px; }
  .page-hero { padding: 60px 0 48px; }
  .quote-block { padding: 32px 24px; }
  .dual-cta-panel { padding: 52px 28px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
