/* === Base Reset & Variables === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette — Case Daemon Visual Identity */
  --navy:       #2A3958;   /* primary brand navy (text + dark surfaces) */
  --navy-mid:   #495A7D;   /* secondary navy for tonal shifts */
  --navy-dark:  #1F2A42;   /* deeper navy for footers / dark CTAs */
  --orange:         #FFA327; /* primary accent — flat orange */
  --orange-bright:  #FFAD24; /* gradient start */
  --orange-soft:    #FFD9A6; /* gradient end / soft tint */
  --orange-pale:    #FFF1DC; /* subtle accent backgrounds */
  --cream:      #FFFBED;   /* primary brand background (cream) */
  --cream-alt:  #F7F2E0;   /* tonal-shift background */
  --teal:       #2E9E8A;   /* utility (success / secondary) */
  --white:      #FFFFFF;
  --gray-50:    #F8F6EC;
  --gray-100:   #EFEADC;
  --gray-200:   #DDD7C7;
  --gray-300:   #C2BBA6;
  --gray-400:   #9BA8BF;
  --gray-500:   #6E7E9A;
  --gray-600:   #4E5E78;
  --gray-700:   #3D4F6C;
  --gray-900:   #1F2A42;

  /* Legacy gold aliases (mapped to brand orange so any leftover refs still resolve) */
  --gold:       var(--orange);
  --gold-light: var(--orange-bright);
  --gold-pale:  var(--orange-pale);

  /* Brand typography — Host Grotesk
     H1 → Semibold (600), H2 → Medium (500), H3/H4 → Medium (500), body → Regular (400) */
  --font-display: 'Host Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Host Grotesk', 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(42,57,88,.08), 0 1px 2px rgba(42,57,88,.06);
  --shadow-md:  0 4px 16px rgba(42,57,88,.12);
  --shadow-lg:  0 8px 32px rgba(42,57,88,.16);
  --shadow-xl:  0 20px 60px rgba(42,57,88,.22);

  --max-w: 1160px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }

/* === Typography === Host Grotesk hierarchy
   H1 = Semibold (600), H2 = Medium (500), H3/H4 = Medium (500), body = Regular (400) */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.0625rem; font-weight: 500; }
h5 { font-weight: 500; }
p  { color: var(--gray-700); line-height: 1.7; font-weight: 400; }

/* === Layout === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section     { padding: 96px 0; }
.section--sm { padding: 64px 0; }

.section--cream { background: var(--cream-alt); }
.section--navy  { background: var(--navy); }
.section--navy h1, .section--navy h2,
.section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p  { color: rgba(255,255,255,.7); }

.section-eyebrow {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header        { max-width: 640px; margin-bottom: 64px; }
.section-header--center{ max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-header p      { margin-top: 16px; font-size: 1.125rem; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-md);
  font-size: .9375rem; font-weight: 600;
  transition: all .2s; white-space: nowrap;
}
.btn--primary  { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--gold     { background: var(--orange); color: var(--navy); font-weight: 600; }
.btn--gold:hover { background: var(--orange-bright); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost    { background: transparent; color: var(--navy); border: 1.5px solid var(--cream-alt); }
.btn--ghost:hover { border-color: var(--navy); background: var(--cream-alt); }
.btn--ghost-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn--ghost-white:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn--lg { padding: 16px 32px; font-size: 1rem; border-radius: var(--r-lg); }
.btn--sm { padding: 8px 16px; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }

/* === Navigation === */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,251,237,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-alt);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo-icon { width: 38px; height: 38px; object-fit: contain; }
.footer__logo-icon { width: 32px; height: 32px; object-fit: contain; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--navy); letter-spacing: -.025em;
}
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a { font-size: .9375rem; font-weight: 500; color: var(--gray-600); transition: color .15s; }
.nav__links a:hover, .nav__links a.active { color: var(--navy); }
.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px; cursor: pointer;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* === Mobile Nav === */
.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  padding: 32px 24px; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.25rem; font-weight: 600;
  color: var(--navy); padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav .btn { margin-top: 20px; border-bottom: none; }
.mobile-nav a.btn--primary { color: var(--white); }

/* === Hero (Home) === */
.hero { padding: 80px 0 96px; overflow: hidden; }
.hero__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); color: var(--gold);
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero h1 { color: var(--navy); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: 1.125rem; line-height: 1.75;
  color: var(--gray-600); margin-bottom: 40px; max-width: 500px;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__proof {
  margin-top: 40px; display: flex; align-items: center; gap: 12px;
  font-size: .875rem; color: var(--gray-500);
}
.hero__proof strong { color: var(--navy); }
.hero__visual { display: flex; justify-content: center; align-items: center; }

/* === Page Hero (non-home) === */
.page-hero {
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 0 96px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,163,39,.1) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 64px;
  background: var(--cream);
  clip-path: ellipse(56% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 20px; position: relative; }
.page-hero p  {
  color: rgba(255,255,255,.75); font-size: 1.125rem;
  max-width: 560px; margin: 0 auto; position: relative;
}
.page-hero--cream::after { background: var(--cream-alt); }

/* === Feature Cards === */
.feature-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.feat-card {
  background: var(--white);
  border: 1px solid var(--cream-alt);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all .25s;
}
.feat-card:hover { border-color: var(--orange-soft); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feat-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--gold);
}
.feat-card h3 { margin-bottom: 10px; }
.feat-card p  { font-size: .9375rem; }

/* === Steps === */
.steps { display: flex; flex-direction: column; gap: 40px; }
.step  { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step__content h3 { margin-bottom: 8px; }

/* === Two-col layout === */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.two-col--flip .two-col__visual { order: -1; }

/* === Stats Bar === */
.stats-bar { background: var(--navy); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.stat__label { font-size: .875rem; color: rgba(255,255,255,.55); }

/* === Security Items (dark bg) === */
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.security-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: var(--r-md);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.security-item__icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: rgba(255,163,39,.14); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.security-item h4 { color: var(--white); font-size: .9375rem; margin-bottom: 4px; }
.security-item p  { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.5; }

/* === Integrations === */
.integration-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.integration-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 18px 12px;
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-md);
  transition: all .2s; text-align: center;
}
.integration-item:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.integration-item__logo {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .75rem; color: white; flex-shrink: 0;
}
.integration-item__name { font-size: .75rem; font-weight: 500; color: var(--gray-500); }

/* === Testimonials === */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 32px;
}
.testimonial-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card__quote {
  font-size: .9375rem; line-height: 1.7; color: var(--gray-700);
  margin-bottom: 24px; font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: white; flex-shrink: 0;
}
.testimonial-card__name { font-size: .9375rem; font-weight: 600; color: var(--navy); }
.testimonial-card__firm { font-size: .8125rem; color: var(--gray-400); }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-toggle-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 48px; }
.billing-label { font-size: .9375rem; font-weight: 500; color: var(--gray-500); transition: color .2s; }
.billing-label.active { color: var(--navy); font-weight: 600; }
.toggle-wrap { position: relative; }
.toggle-wrap input { position: absolute; opacity: 0; }
.toggle-track {
  display: block; width: 44px; height: 24px;
  background: var(--gray-200); border-radius: 100px; cursor: pointer;
  transition: background .2s;
}
.toggle-wrap input:checked + .toggle-track { background: var(--navy); }
.toggle-track::after {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: white; border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle-wrap input:checked + .toggle-track::after { transform: translateX(20px); }
.save-badge {
  background: var(--teal); color: white;
  font-size: .75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}

.pricing-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 40px 32px;
  transition: all .25s; position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border-color: var(--navy); background: var(--navy);
  transform: scale(1.03); box-shadow: var(--shadow-xl);
}
.pricing-card--featured h2, .pricing-card--featured h3, .pricing-card--featured h4 { color: var(--white); }
.pricing-card--featured p { color: rgba(255,255,255,.65); }
.pricing-badge {
  display: inline-block;
  background: var(--gold); color: white;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 20px;
}
.pricing-plan { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-card--featured .pricing-plan { color: rgba(255,255,255,.65); }
.pricing-price { margin: 20px 0; }
.pricing-price__amount {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.pricing-card--featured .pricing-price__amount { color: var(--white); }
.pricing-price__period { font-size: .9375rem; color: var(--gray-400); }
.pricing-card--featured .pricing-price__period { color: rgba(255,255,255,.5); }
.pricing-desc { font-size: .9375rem; margin-bottom: 24px; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 24px 0 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .9375rem; color: var(--gray-700); }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,.85); }
.pricing-features li .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-pale); flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.pricing-card--featured .pricing-features li .check { background: rgba(255,163,39,.18); }
.pricing-features li .check svg { width: 10px; height: 10px; }

/* === Team === */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card { text-align: center; }
.team-card__avatar {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
  object-fit: cover;
}
.team-card__name { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: .875rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.team-card__bio { font-size: .9rem; line-height: 1.65; }

/* === Values === */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-item__icon { font-size: 2rem; margin-bottom: 16px; }
.value-item h3 { margin-bottom: 10px; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.contact-detail__icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--gold-pale); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail__label { font-size: .8125rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; }
.contact-detail__value { font-size: .9375rem; color: var(--navy); font-weight: 500; }

.form-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--r-md);
  font-family: var(--font-body); font-size: .9375rem; color: var(--gray-900);
  background: var(--white); outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(42,57,88,.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === FAQ === */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; background: none; text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer;
  transition: color .15s;
}
.faq-q:hover { color: var(--gold); }
.faq-q svg { flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 20px; line-height: 1.75; }

/* === CTA Section === */
.cta-section {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,163,39,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-section p  { color: rgba(255,255,255,.7); font-size: 1.125rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* === Footer === */
.footer { background: var(--gray-900); padding: 72px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-text { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--white); }
.footer__tagline { font-size: .9375rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }
.footer__col-title { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: .9375rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer__copy  { font-size: .875rem; color: rgba(255,255,255,.4); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: .875rem; color: rgba(255,255,255,.4); transition: color .15s; }
.footer__legal a:hover { color: rgba(255,255,255,.75); }

/* === Misc === */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.divider      { height: 1px; background: var(--gray-100); }

.highlight-box {
  background: var(--gold-pale); border: 1px solid rgba(255,163,39,.2);
  border-radius: var(--r-lg); padding: 32px;
}

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size: .8125rem; font-weight: 600;
}
.pill--gold  { background: var(--gold-pale); color: var(--gold); }
.pill--navy  { background: rgba(42,57,88,.07); color: var(--navy); }
.pill--teal  { background: rgba(46,158,138,.1); color: var(--teal); }

/* === Responsive === */
@media (max-width: 1024px) {
  .feature-grid-3   { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .integration-grid { grid-template-columns: repeat(3,1fr); }
  .team-grid        { grid-template-columns: repeat(3,1fr); }
  .footer__grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__proof { justify-content: center; }
  .hero__visual { order: -1; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--flip .two-col__visual { order: 0; }
  .feature-grid-3 { grid-template-columns: 1fr; }
  .feature-grid-2 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .security-grid    { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid     { grid-template-columns: 1fr; gap: 48px; }
  .team-grid        { grid-template-columns: repeat(2,1fr); }
  .footer__grid     { grid-template-columns: 1fr; }
  .footer__bottom   { flex-direction: column; text-align: center; }
  .section-header--center { margin-bottom: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .hero { padding: 48px 0 64px; }
  .team-grid { grid-template-columns: 1fr; }
}
