/* Tailorapply marketing site */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --brand: #2D5BFF;
  --brand-deep: #1E3FD6;
  --brand-soft: #EEF2FF;
  --brand-glow: #5B82FF;
  --accent: #22D3A6;
  --accent-soft: #DCFCEF;
  --ink: #0F1729;
  --ink-2: #1F2937;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --border: #E5E7EB;
  --border-2: #F0F2F5;
  --bg: #FFFFFF;
  --card: #F7F8FB;
  --error: #EF4444;
  --warn: #F59E0B;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--brand); color: #fff; }

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

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -0.015em; }
.brand-mark { width: 28px; height: 28px; border-radius: 8px; background: var(--brand); display: grid; place-items: center; }
.nav-links { display: flex; gap: 2px; }
.nav-link {
  padding: 8px 12px; border-radius: 10px; font-size: 14px; font-weight: 500;
  color: var(--ink-2); transition: color 140ms, background 140ms;
  white-space: nowrap;
}
.nav-link:hover { background: #F5F6F8; }
.nav-link.active { color: var(--brand); background: var(--brand-soft); font-weight: 600; }
.nav-cta { display: inline-flex; gap: 8px; align-items: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 20px; height: 48px; border-radius: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  border: 1px solid transparent; transition: all 180ms; cursor: pointer;
  white-space: nowrap;
}
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn-lg { height: 56px; padding: 0 26px; font-size: 16px; border-radius: 14px; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(45,91,255,0.20); }
.btn-primary:hover { background: var(--brand-deep); box-shadow: 0 8px 22px rgba(45,91,255,0.30); transform: translateY(-1px); }

.btn-secondary { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-secondary:hover { background: var(--card); border-color: #CBD2DC; }

.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { background: #F5F6F8; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1F2937; }

.btn-success { background: var(--accent); color: #063F2E; }
.btn-success:hover { background: #1DBF94; }

/* ============ TYPE ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand);
  padding: 6px 12px; background: var(--brand-soft); border-radius: 99;
}
.eyebrow.accent { color: #0E7F60; background: var(--accent-soft); }
.eyebrow.muted { color: var(--muted); background: var(--card); }

h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.025em; font-weight: 700; }
.h-display { font-size: clamp(44px, 6vw, 72px); font-weight: 800; line-height: 1.02; letter-spacing: -0.035em; }
.h-1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.05; letter-spacing: -0.03em; }
.h-2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.025em; }
.h-3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }
.h-4 { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--muted); line-height: 1.55; }

.muted { color: var(--muted); }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-loose { padding: 120px 0; }
.section-bg { background: var(--card); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .muted { color: rgba(255,255,255,0.62); }
.section-dark .eyebrow.muted { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin-left: 0; margin-right: 0; max-width: 760px; }
.section-head > .eyebrow { margin-bottom: 16px; }
.section-head > h2 + .lead { margin-top: 16px; }

/* ============ GRIDS ============ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-asym { grid-template-columns: 1.1fr 0.9fr; }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4, .grid-asym { grid-template-columns: 1fr; }
}

/* ============ CARDS ============ */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 28px;
}
.card-bg { background: var(--card); }
.card-tight { padding: 22px; }

.feature-card { display: flex; flex-direction: column; gap: 14px; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
}
.feature-icon.accent { background: var(--accent-soft); color: #0E7F60; }
.feature-icon.dark { background: var(--ink); color: #fff; }

/* ============ HERO PRODUCT MOCKUP ============ */
.mock-window {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(15,23,41,0.15), 0 4px 12px rgba(15,23,41,0.04);
}
.mock-titlebar {
  height: 32px; padding: 0 14px; display: flex; align-items: center; gap: 6px;
  background: #F7F8FB; border-bottom: 1px solid var(--border-2);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #E5E7EB; }
.mock-dot.r { background: #FF5F57; }
.mock-dot.y { background: #FEBC2E; }
.mock-dot.g { background: #28C840; }
.mock-url {
  margin-left: 14px; padding: 3px 10px; font-size: 11px; color: var(--muted);
  background: #fff; border-radius: 6px; font-family: 'JetBrains Mono', monospace;
  border: 1px solid var(--border-2);
}

/* ============ PILL ============ */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 99;
  font-size: 12px; font-weight: 600;
  background: var(--card); color: var(--ink-2);
}
.pill-brand { background: var(--brand-soft); color: var(--brand); }
.pill-accent { background: var(--accent-soft); color: #0E7F60; }

/* tick list */
.tick-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--ink-2); }
.tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
  box-shadow: 0 1px 2px rgba(34,211,166,0.30);
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink); color: rgba(255,255,255,0.75);
  padding: 72px 0 36px;
}
footer .container { max-width: 1200px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 48px; margin-bottom: 56px; }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-brand { font-size: 18px; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-tag { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.78); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.06); color: #fff; }
.footer-bottom .socials a:hover { background: rgba(255,255,255,0.12); }

/* ============ HERO GRADIENT PANEL ============ */
.gradient-panel {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2D5BFF 0%, #1E3FD6 100%);
  color: #fff; border-radius: 28px;
}
.gradient-panel .glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: var(--brand-glow); opacity: 0.20; filter: blur(80px);
  pointer-events: none;
}

/* ============ UTILITIES ============ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.w-full { width: 100%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeUp 600ms cubic-bezier(.2,.8,.2,1) both; }


/* ===== index ===== */

  /* hero specifics */
  .hero { padding: 88px 0 32px; position: relative; overflow: hidden; }
  .hero::before {
    content: ''; position: absolute; top: -200px; right: -150px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(45,91,255,0.10), transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: ''; position: absolute; bottom: -200px; left: -200px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,166,0.08), transparent 70%);
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; text-align: center; }
  .hero h1 { margin-bottom: 24px; text-wrap: balance; }
  .hero h1 .brand-grad {
    background: linear-gradient(135deg, #2D5BFF 0%, #5B82FF 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero-sub { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 640px; margin: 0 auto 32px; line-height: 1.55; }
  .hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
  .hero-trust { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

  /* product preview */
  .preview { position: relative; z-index: 1; max-width: 1100px; margin: 56px auto 0; padding: 0 16px; }
  .preview-frame {
    background: #fff; border-radius: 18px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow:
      0 40px 80px -20px rgba(15,23,41,0.18),
      0 24px 48px -12px rgba(15,23,41,0.08),
      0 0 0 1px rgba(15,23,41,0.04);
    aspect-ratio: 16 / 9.5;
    position: relative;
  }
  .preview-frame iframe {
    width: 1440px; height: 900px; transform-origin: top left;
    border: 0; background: #fff;
  }

  /* logo bar */
  .logos {
    padding: 32px 0; border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2);
    background: #fff;
  }
  .logos-row {
    display: flex; gap: 56px; flex-wrap: wrap; justify-content: center; align-items: center;
    color: var(--muted-2); font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
    opacity: 0.7;
  }
  .logos-label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; text-align: center; }

  /* numbered steps */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
  .step {
    padding: 32px; background: #fff; border-radius: 18px; border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 14px; position: relative;
  }
  .step-num {
    font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600;
    color: var(--brand); letter-spacing: 0.08em;
  }
  .step h3 { font-size: 22px; letter-spacing: -0.02em; }
  .step p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 15px; }

  /* feature split */
  .feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 96px; }
  .feature-split:last-child { margin-bottom: 0; }
  .feature-split.reverse > div:first-child { order: 2; }
  @media (max-width: 880px) {
    .feature-split { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
    .feature-split.reverse > div:first-child { order: 0; }
  }
  .feature-art {
    aspect-ratio: 4 / 3; border-radius: 20px; background: var(--card);
    border: 1px solid var(--border); position: relative; overflow: hidden;
    padding: 28px;
  }

  /* stats */
  .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  @media (max-width: 880px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
  .stat { text-align: left; }
  .stat-num {
    font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -0.03em;
    line-height: 1; margin-bottom: 8px;
    background: linear-gradient(135deg, #2D5BFF 0%, #5B82FF 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .stat-label { font-size: 14px; color: var(--muted); line-height: 1.4; }

  /* testimonial grid */
  .tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 880px) { .tcards { grid-template-columns: 1fr; } }
  .tcard { padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 18px; display: flex; flex-direction: column; gap: 16px; }
  .tcard .quote { font-size: 16px; color: var(--ink-2); line-height: 1.55; }
  .tcard .who { display: flex; gap: 12px; align-items: center; margin-top: auto; }
  .tcard .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-weight: 700; font-size: 13px; }
  .tcard .name { font-size: 14px; font-weight: 700; }
  .tcard .role { font-size: 13px; color: var(--muted); }

  /* CTA panel */
  .cta-panel { padding: 64px 56px; position: relative; overflow: hidden; }
  .cta-panel h2 { color: #fff; max-width: 720px; }
  .cta-panel p { color: rgba(255,255,255,0.78); max-width: 540px; margin: 16px 0 28px; font-size: 17px; line-height: 1.55; }
  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .cta-row .btn { background: #fff; color: var(--ink); }
  .cta-row .btn:hover { background: var(--card); }
  .cta-row .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.30); }
  .cta-row .btn-secondary:hover { background: rgba(255,255,255,0.10); }


/* ===== features ===== */

.page-hero { padding: 64px 0 32px; text-align: center; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { max-width: 820px; margin: 0 auto 18px; text-wrap: balance; }
.page-hero .lead { max-width: 640px; margin: 0 auto; }
.feature-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; padding: 64px 0; border-top: 1px solid var(--border-2); }
.feature-row:first-of-type { border-top: 0; }
@media (max-width: 880px) { .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; } }
.feature-info h3 { margin-bottom: 16px; }
.feature-mock { aspect-ratio: 4 / 3; border-radius: 18px; padding: 24px; border: 1px solid var(--border); position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
@media (max-width: 880px) { .module-grid { grid-template-columns: 1fr; } }
.module { padding: 22px; border-radius: 14px; background: #fff; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.module .feature-icon { width: 36px; height: 36px; border-radius: 10px; }


/* ===== how-it-works ===== */

.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; top: 60px; bottom: 60px; left: 26px; width: 2px; background: linear-gradient(180deg, var(--brand), var(--accent)); }
.tl-step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 24px 0; align-items: flex-start; }
.tl-bullet { width: 54px; height: 54px; border-radius: 16px; background: #fff; border: 2px solid var(--brand); color: var(--brand); display: grid; place-items: center; font-weight: 800; font-size: 18px; box-shadow: 0 4px 14px rgba(45,91,255,0.18); position: relative; z-index: 1; }
.tl-step.accent .tl-bullet { border-color: var(--accent); color: #0E7F60; box-shadow: 0 4px 14px rgba(34,211,166,0.20); }
.tl-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.tl-card .tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tl-meta { display: flex; gap: 18px; font-size: 13px; color: var(--muted); padding-top: 14px; border-top: 1px solid var(--border-2); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }
.compare > div { padding: 28px; border-radius: 18px; }
.compare .bad { background: #FEF2F2; border: 1px solid #FECACA; }
.compare .good { background: var(--accent-soft); border: 1px solid #B7EEDB; }
.compare h4 { font-size: 16px; margin-bottom: 12px; }
.compare ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.compare li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; }


/* ===== pricing ===== */

.toggle-wrap { display: inline-flex; padding: 5px; background: var(--card); border-radius: 12px; margin: 24px auto 56px; }
.toggle-wrap button { padding: 9px 18px; border-radius: 8px; border: none; background: transparent; font-weight: 600; font-size: 14px; color: var(--muted); cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.toggle-wrap button.on { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(15,23,41,0.08); }
.toggle-wrap .save { font-size: 11px; color: var(--brand); font-weight: 700; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 880px) { .tier-grid { grid-template-columns: 1fr; } }
.tier { padding: 32px 28px; border-radius: 20px; background: #fff; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 16px; position: relative; }
.tier.featured { border-color: var(--brand); border-width: 2px; }
.tier-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; padding: 5px 14px; border-radius: 99; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }
.tier h3 { font-size: 18px; }
.tier .price { display: flex; align-items: baseline; gap: 4px; }
.tier .price .num { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; }
.tier .price .per { color: var(--muted); font-size: 14px; font-weight: 500; }
.tier-sub { font-size: 14px; color: var(--muted); }
.tier-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.45; color: var(--ink-2); }
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .pack-grid { grid-template-columns: 1fr; } }
.pack { padding: 24px; border-radius: 16px; background: #fff; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.pack .price { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border-2); font-size: 14px; }
.compare-table th { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
.compare-table tr.section-row td { background: var(--card); font-weight: 700; padding-top: 14px; padding-bottom: 14px; text-transform: uppercase; font-size: 12px; letter-spacing: 0.08em; color: var(--muted); }
.check-y { color: var(--accent); font-weight: 700; }
.check-n { color: var(--muted-2); }
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { padding: 22px 0; border-top: 1px solid var(--border-2); }
.faq-item summary { font-size: 16px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--muted); transition: transform 200ms; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); margin: 12px 0 0; line-height: 1.6; }


/* ===== customers ===== */

.story-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.story-card.featured { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding: 40px; }
@media (max-width: 880px) { .story-card.featured { grid-template-columns: 1fr; padding: 28px; } }
.story-head { display: flex; gap: 14px; align-items: center; }
.story-avatar { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: 16px; letter-spacing: -0.02em; flex-shrink: 0; }
.story-name { font-weight: 700; font-size: 16px; }
.story-meta { font-size: 13px; color: var(--muted); }
.story-quote { font-size: 17px; color: var(--ink-2); line-height: 1.6; }
.story-result { background: var(--card); border-radius: 14px; padding: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.story-result .num { font-size: 24px; font-weight: 800; color: var(--brand); letter-spacing: -0.02em; }
.story-result .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.stories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .stories-grid { grid-template-columns: 1fr; } }
.logo-tile { aspect-ratio: 1.6/1; background: #fff; border: 1px solid var(--border); border-radius: 14px; display: grid; place-items: center; color: var(--muted); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.page-hero { padding: 72px 0 16px; text-align: center; }


/* ===== about ===== */

.mission { padding: 120px 0; text-align: center; }
.mission h1 { font-size: clamp(38px, 5vw, 64px); max-width: 920px; margin: 24px auto 0; line-height: 1.1; letter-spacing: -0.03em; font-weight: 800; text-wrap: balance; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
.value { padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: 18px; }
.value h3 { font-size: 20px; margin-bottom: 10px; }
.value p { color: var(--muted); margin: 0; line-height: 1.55; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.person { padding: 20px; background: #fff; border: 1px solid var(--border); border-radius: 16px; display: flex; flex-direction: column; gap: 4px; }
.person-avatar { width: 100%; aspect-ratio: 1; border-radius: 12px; margin-bottom: 14px; display: grid; place-items: center; font-weight: 800; font-size: 32px; letter-spacing: -0.02em; }
.person h4 { font-size: 15px; margin: 0; }
.person .role { font-size: 13px; color: var(--muted); }
.person .bio { font-size: 13px; color: var(--ink-2); line-height: 1.55; margin-top: 8px; }
.timeline-events { max-width: 720px; margin: 0 auto; }
.timeline-event { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid var(--border-2); }
.timeline-event:first-child { border-top: 0; }
.timeline-event .year { font-family: "JetBrains Mono", monospace; font-size: 14px; font-weight: 600; color: var(--brand); }
.timeline-event h4 { font-size: 17px; margin-bottom: 6px; }
.timeline-event p { color: var(--muted); margin: 0; line-height: 1.55; font-size: 14px; }


/* ===== blog ===== */

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .post-grid { grid-template-columns: 1fr; } }
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; cursor: pointer; transition: transform 200ms, box-shadow 200ms, border-color 200ms; }
.post:hover { transform: translateY(-3px); border-color: #D6DEFF; box-shadow: 0 14px 36px rgba(15,23,41,0.08); }
.post-cover { aspect-ratio: 16/10; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.post-cover h3 { font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; }
.post-body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); }
.post-excerpt { font-size: 14px; color: var(--muted); line-height: 1.55; }
.post-meta { display: flex; gap: 12px; align-items: center; font-size: 12px; color: var(--muted); margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-2); }
.featured-post { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: #fff; border: 1px solid var(--border); border-radius: 24px; overflow: hidden; margin-bottom: 48px; }
@media (max-width: 880px) { .featured-post { grid-template-columns: 1fr; } }
.featured-post .cover { padding: 48px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.featured-post .info { padding: 40px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.cat-strip { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.cat-strip button { padding: 8px 16px; border-radius: 99; border: 1px solid var(--border); background: #fff; font-weight: 600; font-size: 13px; color: var(--muted); cursor: pointer; transition: all 160ms; }
.cat-strip button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-strip button:hover:not(.on) { background: var(--card); }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .resource-grid { grid-template-columns: 1fr; } }
.resource { padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 16px; display: flex; flex-direction: column; gap: 14px; }
.resource h4 { font-size: 17px; line-height: 1.3; }
.resource .sub { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }


/* ===== contact ===== */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-form { padding: 32px; background: #fff; border: 1px solid var(--border); border-radius: 20px; display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-family: inherit; font-size: 15px; outline: none; color: var(--ink); background: #fff; transition: border-color 140ms, box-shadow 140ms; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(45,91,255,0.15); }
.field textarea { resize: vertical; min-height: 140px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .row-2 { grid-template-columns: 1fr; } }
.contact-options { display: flex; flex-direction: column; gap: 16px; }
.opt { padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 16px; display: flex; gap: 16px; align-items: flex-start; }
.opt .feature-icon { width: 44px; height: 44px; flex-shrink: 0; }
.opt h4 { font-size: 16px; margin-bottom: 6px; }
.opt p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.55; }
.opt a { color: var(--brand); font-weight: 600; font-size: 14px; }
.office-card { padding: 28px; background: var(--card); border-radius: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .office-card { grid-template-columns: 1fr; } }
.office h4 { font-size: 15px; margin-bottom: 6px; }
.office .addr { font-size: 14px; color: var(--muted); line-height: 1.55; }

