@font-face {
  font-family: 'Display';
  src: local('-apple-system'), local('BlinkMacSystemFont'), local('SF Pro Display'), local('Segoe UI'), local('Helvetica Neue');
  font-weight: 100 900;
  font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #fbfbfd;
  --black: #000000;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --accent: #0071e3;
  --accent-hover: #0077ED;
  --surface-light: #f5f5f7;
  --surface-dark: #1d1d1f;
  --border: rgba(0,0,0,0.08);
  --bg: #fbfbfd;
  --section-dark-bg: #000000;
  --section-dark-text: #f5f5f7;
  --section-dark-sub: #86868b;
  --card-bg: #ffffff;
  --card-border: rgba(0,0,0,0.06);
  --card-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

@media (prefers-color-scheme: dark) {
  :root {
    --white: #000000;
    --black: #fbfbfd;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #6e6e73;
    --accent: #2997ff;
    --accent-hover: #2997ff;
    --surface-light: #1d1d1f;
    --surface-dark: #000000;
    --border: rgba(255,255,255,0.08);
    --bg: #000000;
    --section-dark-bg: #1d1d1f;
    --section-dark-text: #f5f5f7;
    --section-dark-sub: #86868b;
    --card-bg: #1d1d1f;
    --card-border: rgba(255,255,255,0.06);
    --card-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }
}
:root[data-theme="dark"] {
  --white: #000000;
  --black: #fbfbfd;
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary: #6e6e73;
  --accent: #2997ff;
  --accent-hover: #2997ff;
  --surface-light: #1d1d1f;
  --surface-dark: #000000;
  --border: rgba(255,255,255,0.08);
  --bg: #000000;
  --section-dark-bg: #1d1d1f;
  --section-dark-text: #f5f5f7;
  --section-dark-sub: #86868b;
  --card-bg: #1d1d1f;
  --card-border: rgba(255,255,255,0.06);
  --card-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
:root[data-theme="light"] {
  --white: #fbfbfd;
  --black: #000000;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --accent: #0071e3;
  --accent-hover: #0077ED;
  --surface-light: #f5f5f7;
  --surface-dark: #1d1d1f;
  --border: rgba(0,0,0,0.08);
  --bg: #fbfbfd;
  --section-dark-bg: #000000;
  --section-dark-text: #f5f5f7;
  --section-dark-sub: #86868b;
  --card-bg: #ffffff;
  --card-border: rgba(0,0,0,0.06);
  --card-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.47059;
  font-size: 17px;
  letter-spacing: -0.022em;
  font-weight: 400;
}
a { text-decoration: none; color: var(--accent); transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  height: 48px;
}
.nav-inner {
  max-width: 1024px; margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-brand { font-size: 21px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: 12px; font-weight: 400; color: var(--text-secondary); letter-spacing: 0; }
.nav-links a:hover { color: var(--text-primary); opacity: 1; }
.nav-cta-link {
  font-size: 12px !important; font-weight: 400 !important;
  background: var(--accent); color: var(--white) !important;
  padding: 6px 16px; border-radius: 980px;
}
.nav-cta-link:hover { background: var(--accent-hover); color: var(--white) !important; }

/* MOBILE NAV */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-primary); transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* SHARED */
.section { padding: 120px 22px; }
.section-inner { max-width: 1024px; margin: 0 auto; }
.section-dark { background: var(--section-dark-bg); color: var(--section-dark-text); }
.section-light { background: var(--bg); }
.section-alt { background: var(--surface-light); }

.headline-xl {
  font-size: clamp(40px, 7vw, 72px); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.045em;
  text-wrap: balance;
}
.headline-lg {
  font-size: clamp(32px, 5vw, 56px); font-weight: 700;
  line-height: 1.07; letter-spacing: -0.04em;
  text-wrap: balance;
}
.headline-md {
  font-size: clamp(24px, 3.5vw, 40px); font-weight: 600;
  line-height: 1.1; letter-spacing: -0.035em;
  text-wrap: balance;
}
.subhead {
  font-size: clamp(17px, 2.2vw, 21px); font-weight: 400;
  line-height: 1.381; letter-spacing: 0.011em;
  color: var(--text-secondary);
}
.section-dark .subhead { color: var(--section-dark-sub); }
.eyebrow {
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-tertiary); margin-bottom: 8px;
}
.section-dark .eyebrow { color: var(--section-dark-sub); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-text { max-width: 600px; }

/* BUTTONS */
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: 17px; font-weight: 500;
  padding: 14px 32px; border-radius: 980px; border: none;
  cursor: pointer; letter-spacing: -0.022em;
  transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.25s cubic-bezier(0.25,0.46,0.45,0.94),
              background 0.2s;
}
.btn-fill {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 85%, white) 0%, var(--accent) 100%);
  color: white;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.15) inset,
    0 2px 6px rgba(0,113,227,0.25),
    0 6px 20px rgba(0,113,227,0.15),
    0 12px 40px rgba(0,0,0,0.06);
}
.btn-fill:hover {
  background: linear-gradient(180deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 85%, black) 100%);
  color: white; opacity: 1;
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.2) inset,
    0 4px 10px rgba(0,113,227,0.35),
    0 10px 28px rgba(0,113,227,0.2),
    0 16px 48px rgba(0,0,0,0.1);
}
.btn-fill:active {
  transform: translateY(0px);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.1) inset,
    0 1px 4px rgba(0,113,227,0.3),
    0 4px 12px rgba(0,0,0,0.06);
}
.btn-ghost {
  background: transparent; color: var(--accent);
  border: 1.5px solid color-mix(in srgb, var(--accent) 40%, transparent);
  box-shadow:
    0 2px 6px rgba(0,0,0,0.04),
    0 6px 20px rgba(0,0,0,0.03);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--accent); color: white; opacity: 1;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,0.15) inset,
    0 4px 10px rgba(0,113,227,0.3),
    0 10px 28px rgba(0,113,227,0.15),
    0 16px 48px rgba(0,0,0,0.08);
}
.btn-ghost:active {
  transform: translateY(0px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }

/* HERO */
.hero { padding: 140px 22px 120px; text-align: center; background: var(--bg); overflow: hidden; position: relative; }
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at center bottom, color-mix(in srgb, var(--accent) 6%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.hero-avatar { font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.hero .headline-xl { margin-bottom: 16px; }
.hero .subhead { max-width: 540px; margin: 0 auto 36px; }
.hero-meta {
  display: flex; justify-content: center; gap: 32px; margin-top: 56px;
  font-size: 14px; color: var(--text-tertiary); font-weight: 500;
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 14px; height: 14px; opacity: 0.6; }

/* RIBBON */
.ribbon {
  background: var(--section-dark-bg); padding: 56px 22px;
  display: flex; justify-content: center;
}
.ribbon-inner {
  max-width: 1024px; width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.ribbon-stat { color: var(--section-dark-text); }
.ribbon-num {
  font-size: 44px; font-weight: 700; letter-spacing: -0.04em; line-height: 1.1;
  background: linear-gradient(135deg, #f5f5f7 30%, #86868b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ribbon-label { font-size: 13px; color: var(--section-dark-sub); margin-top: 4px; letter-spacing: 0; }

/* SERVICES */
.services-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 56px;
}
.services-grid .svc {
  flex: 0 1 calc(33.333% - 12px);
}
.svc {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
.svc-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 60%, #a855f7));
  display: flex; align-items: center; justify-content: center; color: white;
}
.svc h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 8px; color: var(--text-primary); }
.svc p { font-size: 14px; line-height: 1.5; color: var(--text-secondary); }
.svc-link { display: inline-block; margin-top: 16px; font-size: 14px; color: var(--accent); font-weight: 400; }
.svc-link::after { content: ' \203A'; }

/* INDUSTRIES */
.ind-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 40px; }
.ind-chip {
  padding: 8px 18px; border-radius: 980px; font-size: 14px; font-weight: 500;
  color: var(--text-secondary); border: 1px solid var(--border);
  transition: all 0.2s; letter-spacing: -0.01em;
  background: transparent;
}
.ind-chip:hover { border-color: var(--accent); color: var(--accent); }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 56px; max-width: 880px; margin-left: auto; margin-right: auto; }
.proc {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 28px;
}
.proc-num {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent); margin-bottom: 12px; text-transform: uppercase;
}
.proc h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 8px; color: var(--section-dark-text); }
.proc p { font-size: 14px; line-height: 1.5; color: var(--section-dark-sub); }

/* TESTIMONIALS */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.tcard {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 32px 24px;
}
.tcard-quote { font-size: 15px; line-height: 1.53; color: var(--text-primary); font-weight: 400; margin-bottom: 24px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 50%, #a855f7));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.tcard-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.tcard-role { font-size: 13px; color: var(--text-tertiary); }

/* ABOUT */
.about-layout { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; margin-top: 56px; }
.about-text p { font-size: 17px; line-height: 1.47; color: var(--text-secondary); margin-bottom: 16px; }
.about-vals { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.about-val { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--text-primary); }
.about-val svg { color: var(--accent); flex-shrink: 0; }
.founder {
  background: var(--surface-light); border-radius: 24px; padding: 40px 28px; text-align: center;
}
.founder-av {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px;
  object-fit: cover; object-position: center top;
  border: 3px solid var(--border);
}
.founder h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.03em; color: var(--text-primary); }
.founder-title { font-size: 14px; color: var(--accent); font-weight: 500; margin-top: 2px; }
.founder-loc { font-size: 13px; color: var(--text-tertiary); margin-top: 2px; }
.founder-sep { width: 40px; height: 1px; background: var(--border); margin: 20px auto; }
.founder-bio { font-size: 14px; line-height: 1.5; color: var(--text-secondary); text-align: left; }

/* MID-PAGE CTA */
.mid-cta { padding: 64px 22px; background: var(--surface-light); }
.mid-cta .headline-md { margin-bottom: 0; }

/* CTA BANNER */
.cta-banner { text-align: center; }
.cta-banner .headline-lg { margin-bottom: 14px; }
.cta-banner .subhead { max-width: 500px; margin: 0 auto; }
.cta-fine { font-size: 13px; color: var(--section-dark-sub); margin-top: 20px; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.cd-item strong { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 4px; }
.cd-item span, .cd-item a { font-size: 15px; color: var(--text-primary); line-height: 1.47; }
.cd-item a { color: var(--accent); }
.cform {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 24px; padding: 36px;
}
.cform h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.03em; margin-bottom: 24px; color: var(--text-primary); }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12px; font-weight: 600; color: var(--text-tertiary); margin-bottom: 6px; letter-spacing: 0.02em; text-transform: uppercase; }
.fg input, .fg textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 12px; font-family: inherit; font-size: 15px;
  color: var(--text-primary); background: var(--surface-light);
  outline: none; transition: border-color 0.2s;
}
.fg input:focus, .fg textarea:focus { border-color: var(--accent); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-tertiary); }
.fg textarea { resize: vertical; min-height: 100px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-fine { text-align: center; font-size: 12px; color: var(--text-tertiary); margin-top: 12px; }

/* FOOTER */
.footer {
  background: var(--surface-light); border-top: 1px solid var(--border);
  padding: 40px 22px;
}
.footer-inner { max-width: 1024px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.footer-brand { font-size: 14px; color: var(--text-secondary); line-height: 1.5; max-width: 260px; }
.footer-brand strong { font-size: 15px; color: var(--text-primary); display: block; margin-bottom: 8px; font-weight: 600; }
.fcol h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 14px; }
.fcol a { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.fcol a:hover { color: var(--text-primary); opacity: 1; }
.fcol p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-tertiary); }
.footer-legal { font-size: 11px; color: var(--text-tertiary); opacity: 0.6; }

/* WHY HIRE US */
.why-list { max-width: 680px; margin: 40px auto 0; text-align: left; }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  font-size: 17px; line-height: 1.47; color: var(--text-secondary);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  flex-shrink: 0; width: 24px; height: 24px; margin-top: 2px;
  color: var(--accent); opacity: 0.8;
}
.why-avatar {
  font-size: 17px; color: var(--text-secondary); margin-bottom: 6px;
}
.why-closer {
  max-width: 680px; margin: 32px auto 0; text-align: left;
  font-size: 17px; line-height: 1.47; color: var(--text-primary); font-weight: 500;
}
.why-cta {
  max-width: 680px; margin: 16px auto 0; text-align: left;
  font-size: 15px; color: var(--text-secondary);
}
.why-cta a { font-weight: 500; }

/* FLAGSHIP OFFER */
.flagship {
  background: var(--card-bg);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 28px; padding: 52px 44px; margin-top: 40px;
  position: relative; overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0,113,227,0.08),
    0 12px 40px rgba(0,113,227,0.06),
    0 24px 80px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s, transform 0.4s;
}
.flagship:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(0,113,227,0.12),
    0 16px 48px rgba(0,113,227,0.10),
    0 32px 96px rgba(0,0,0,0.12);
}
.flagship::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 50%, #a855f7), var(--accent));
}
.flagship::before {
  content: 'Start Here'; position: absolute; top: 12px; right: 32px; z-index: 1;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 60%, #a855f7));
  color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 980px;
  box-shadow: 0 2px 8px rgba(0,113,227,0.3);
}
.flagship h3 {
  font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; letter-spacing: -0.035em;
  color: var(--text-primary); margin-bottom: 16px;
}
.flagship > p { font-size: 16px; line-height: 1.5; color: var(--text-secondary); margin-bottom: 28px; }
.flagship-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.flagship-col {
  background: var(--surface-light); border-radius: 16px; padding: 24px;
}
.flagship-col h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--accent); margin-bottom: 14px;
}
.flagship-col ul { list-style: none; }
.flagship-col li {
  font-size: 15px; line-height: 1.5; color: var(--text-secondary);
  padding: 8px 0; padding-left: 22px; position: relative;
  border-bottom: 1px solid var(--border);
}
.flagship-col li:last-child { border-bottom: none; }
.flagship-col li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 50%, #a855f7));
}
.guarantee {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 6%, var(--surface-light)), var(--surface-light));
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
  border-radius: 16px; padding: 24px 28px;
  margin-bottom: 28px;
}
.guarantee strong { color: var(--accent); font-size: 15px; font-weight: 700; }
.guarantee p { font-size: 15px; color: var(--text-secondary); margin-top: 6px; line-height: 1.5; }
.flagship > .btn-pill { display: flex; width: fit-content; margin: 0 auto; }

.impl-label {
  font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--text-tertiary); margin-top: 56px; margin-bottom: 8px; text-align: center;
}

/* INDUSTRY GROUPS */
.ind-groups { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.ind-group-label {
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 8px; text-align: center;
}
.ind-closer {
  max-width: 500px; margin: 32px auto 0; text-align: center;
  font-size: 15px; color: var(--text-secondary);
}

/* TCARD META */
.tcard-meta { font-size: 12px; color: var(--text-tertiary); margin-top: 4px; }

/* SCROLL ANIMATIONS */
.animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid .svc { flex: 0 1 calc(50% - 8px); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .flagship-columns { grid-template-columns: 1fr; gap: 24px; }
  .flagship { padding: 36px 28px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 48px; left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    background: var(--bg); z-index: 99;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 18px; }
  .nav-cta-link { font-size: 16px !important; padding: 10px 24px; }
  .section { padding: 72px 18px; }
  .hero { padding: 100px 18px 72px; }
  .services-grid .svc { flex: 0 1 100%; }
  .process-grid, .test-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .ribbon-inner { grid-template-columns: repeat(2, 1fr); }
  .fg-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-meta { flex-direction: column; gap: 12px; align-items: center; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn-group .btn-pill { width: 100%; max-width: 340px; justify-content: center; }
  .flagship { padding: 32px 20px; border-radius: 20px; }
  .flagship::before { top: 10px; right: 16px; font-size: 10px; padding: 5px 14px; }
  .flagship h3 { font-size: 24px; }
  .flagship > .btn-pill { width: 100%; justify-content: center; }
  .flagship-col { padding: 20px 16px; }
  .guarantee { padding: 20px; }
  .why-list { margin-top: 28px; }
  .why-item { font-size: 16px; padding: 14px 0; }
  .why-closer, .why-cta { text-align: center; }
  .about-layout { gap: 32px; }
  .founder { padding: 32px 20px; }
  .cform { padding: 28px 20px; }
  .cform .btn-pill { display: flex; justify-content: center; }
  .tcard { padding: 24px 20px; }
  .proc { padding: 28px 20px; }
  .svc { padding: 28px 20px; }
  .ind-chip { padding: 6px 14px; font-size: 13px; }
}
