/* =====================================================================
    TYPOGRAPHY & DESIGN TOKENS (Unified)
    ---------------------------------------------------------------------
     Fonts: Montserrat (display/headlines), Inter (UI + body), system-ui fallbacks.
   Scale: Fluid clamp() tokens ensure readable growth across viewports.
   Vertical Rhythm: line-height tokens + spacing via section paddings.
   ===================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand palette */
  --color-green: #1BC860;
  --color-blue: #2F6DF6;
  --color-orange: #FF9200;
  --color-navy: #0C203F;
    --color-ink: #1F2937;
    --color-ink-muted: #6B7280;
  --color-cream: #F7F3EC;
  --color-soft-cream: #FBF8F1;
  --color-white: #FFFFFF;
    --color-muted: var(--color-ink-muted);

  /* Shadows & Radii */
  --shadow-sm: 0 8px 24px rgba(12,32,63,.08);
  --shadow-lg: 0 28px 60px rgba(12,32,63,.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  /* Font stacks */
    --font-sans-base: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-sans-display: 'Montserrat', 'Inter', system-ui, sans-serif;
    --font-display: var(--font-sans-display);
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;

  /* Fluid type scale (approx. Major Third) */
  --font-size-xs: clamp(0.70rem, 0.66rem + 0.3vw, 0.78rem);
  --font-size-sm: clamp(0.78rem, 0.74rem + 0.3vw, 0.88rem);
  --font-size-base: clamp(0.95rem, 0.9rem + 0.35vw, 1rem);
  --font-size-md: clamp(1.05rem, 0.98rem + 0.5vw, 1.18rem);
  --font-size-lg: clamp(1.30rem, 1.18rem + 0.9vw, 1.55rem);
  --font-size-xl: clamp(1.70rem, 1.52rem + 1.2vw, 2.15rem);
  --font-size-xxl: clamp(2.20rem, 1.9rem + 2vw, 2.90rem);
  --font-size-display: clamp(2.80rem, 2.4rem + 3vw, 4.20rem);

  /* Line heights */
  --lh-tight: 1.15;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;

  /* Tracking */
  --tracking-tight: -0.015em;
  --tracking-normal: 0;
  --tracking-wide: 0.035em;

  /* Motion */
  --transition: all 0.25s ease;
}

body {
    font-family: var(--font-sans-base);
    font-size: var(--font-size-base);
    line-height: var(--lh-relaxed);
    -webkit-font-smoothing: antialiased;
    /* Base page background switched to pure white so hero cream does not appear as a tint at page bottom */
    background: var(--color-white);
    color: var(--color-ink);
    text-rendering: optimizeLegibility;
}

img, svg { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
.container { width:min(1160px,92vw); margin:0 auto; }

/* =============================================================
     Header (Variant C: sticky, translucent, blurred)
     ============================================================= */
.case-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(31, 41, 55, 0.6);
    letter-spacing: 0.01em;
    text-transform: none;
}

.use-case-card .case-divider {
    margin-top: auto;
}

.use-case-card .case-block:last-of-type {
    margin-top: 12px;
}

.brand { display:flex; align-items:center; gap:14px; }
.brand-icon {
    width:54px;
    height:54px;
    border-radius:18px;
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
    box-shadow:
    0 15px 28px rgba(27,200,96,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}
.brand-icon::after {
    content:'';
    position:absolute;
    inset:-10px;
    border-radius:26px;
    background: radial-gradient(circle, rgba(27,200,96,0.18), transparent 65%);
    z-index:-1;
    filter: blur(8px);
}
.brand-icon svg,
.brand-icon img {
    width:42px;
    height:42px;
    object-fit:contain;
}
.brand-text { display:flex; flex-direction:column; }
.brand-name { font-family: var(--font-sans-display); font-size: 20px; font-weight:600; letter-spacing:-0.5px; }
.hero-tagline { font-size:0.85rem; font-weight:500; color: rgba(12,32,63,0.55); letter-spacing:0.08em; margin: 8px 0 16px; text-align:center; }
.hero-availability {
    margin: 16px 0 10px;
    padding: 12px 24px;
    border-radius: 16px;
    background: rgba(27,200,96,0.12);
    color: rgba(12,32,63,0.78);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    border: 1px solid rgba(27,200,96,0.16);
}
.hero-centered { text-align:center; }
.site-header.shrink .brand-name { font-size:20px; }
.site-header.shrink .brand-tagline { opacity:1; pointer-events:auto; }

.primary-nav { flex:1; display: flex; justify-content: center; }
.primary-nav .nav-menu { display:flex; align-items:center; gap:4px; }
.primary-nav a { position:relative; display:inline-flex; align-items:center; padding:8px 16px; font-size:15px; font-weight:500; letter-spacing:0.4px; color: rgba(12,32,63,0.70); transition: background .25s ease, color .25s ease; border-radius:10px; }
.primary-nav a:hover { background: rgba(12,32,63,0.06); color: var(--color-ink); }
.primary-nav a.active { background: rgba(27,200,96,0.14); color: var(--color-ink); font-weight:600; }
/* Remove bottom bar indicator in favor of pill highlight */
.primary-nav a.active::after { display:none; }
.primary-nav a:focus-visible { outline:2px solid var(--color-green); outline-offset:2px; }

/* header-badge removed */

.nav-actions { display:flex; align-items:center; gap:14px; }
.nav-toggle { display:none; background:none; border:none; width:40px; height:40px; border-radius:8px; cursor:pointer; position:relative; }
.nav-toggle span { position:absolute; left:10px; right:10px; height:2px; background: var(--color-navy); border-radius:2px; transition:.35s ease; }
.nav-toggle span:nth-child(1) { top:12px; }
.nav-toggle span:nth-child(2) { top:19px; }
.nav-toggle span:nth-child(3) { top:26px; }
.nav-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-nav { display:none; flex-direction:column; gap:6px; padding:12px 8px 16px; }
.mobile-nav a { padding:10px 12px; border-radius:10px; background:rgba(12,32,63,0.04); font-size:15px; font-weight:500; letter-spacing:0.4px; }
.mobile-nav a.active { background:rgba(27,200,96,0.12); color: var(--color-ink); }

@media (max-width: 760px) {
.primary-nav { display:none; }
.nav-toggle { display:inline-flex !important; align-items:center; justify-content:center; }
.site-header.shrink .brand-tagline { display:none; }
.mobile-nav.open { display:flex; }
.header-inner { gap:18px; padding: 16px 0; }
.nav-actions .btn { display:none; }
.brand-icon { width: 44px; height: 44px; }
.brand-name { font-size: 18px; }
    
    /* FAQ mobile fixes */
.faq-grid {
    flex-direction: column;
    gap: 12px;
}
    
.faq-item {
    flex: 1 1 100%;
}
    
.faq-question {
    padding: 18px 48px 18px 18px;
    font-size: 15px;
}
    
.faq-question::after {
    right: 18px;
}
    
.faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
}
    
.section-head {
    padding: 0 8px;
}
    
.section-intro {
    font-size: 15px;
}

/* Mobile site header */
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

/* Add padding to body for fixed header */
body {
    padding-top: 70px;
}
}

@media (max-width: 1024px) {
.faq-grid {
    flex-wrap: wrap;
}

.faq-item {
    flex: 1 1 calc(50% - 18px);
}

.faq-grid.faq-grid-multi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

.page-subnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(12, 32, 63, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.page-subnav.is-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.subnav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 14px 0;
}

.subnav-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.subnav-title {
    font-family: var(--font-sans-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.2px;
    color: var(--color-ink);
}

.subnav-caption {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(12, 32, 63, 0.45);
    font-weight: 600;
}

.subnav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    padding: 0;
}

.subnav-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    color: rgba(12, 32, 63, 0.62);
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.subnav-links a:hover,
.subnav-links a:focus-visible {
    background: rgba(27, 200, 96, 0.12);
    color: var(--color-ink);
}

.subnav-links a.active {
    background: rgba(27, 200, 96, 0.18);
    color: var(--color-ink);
}

.subnav-cta {
    flex-shrink: 0;
    padding: 10px 22px;
    font-size: 15px;
}

@media (max-width: 860px) {
.subnav-inner {
    flex-wrap: wrap;
    gap: 18px;
}

.subnav-brand {
    order: -1;
}

.subnav-links {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 4px;
}

.subnav-cta {
    margin-left: auto;
}
}

@media (max-width: 560px) {
.subnav-cta {
    width: 100%;
    justify-content: center;
}
}


/* =====================================================================
   TYPE UTILITIES
   ===================================================================== */
.h1, h1 { font-family: var(--font-sans-display); font-size: var(--font-size-display); line-height: var(--lh-tight); letter-spacing: var(--tracking-tight); font-weight: 700; }
.h2, h2 { font-family: var(--font-sans-display); font-size: var(--font-size-xxl); line-height: var(--lh-tight); letter-spacing: var(--tracking-tight); font-weight: 700; }
.h3, h3 { font-family: var(--font-sans-display); font-size: var(--font-size-xl); line-height: var(--lh-snug); font-weight: 600; }
.h4, h4 { font-family: var(--font-sans-display); font-size: var(--font-size-lg); line-height: var(--lh-snug); font-weight: 600; }
.h5, h5 { font-family: var(--font-sans-base); font-size: var(--font-size-md); line-height: var(--lh-normal); font-weight:600; }
.h6, h6 { font-family: var(--font-sans-base); font-size: var(--font-size-sm); line-height: var(--lh-normal); text-transform:uppercase; letter-spacing: var(--tracking-wide); }

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-md { font-size: var(--font-size-md); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-xxl { font-size: var(--font-size-xxl); }

.leading-tight { line-height: var(--lh-tight); }
.leading-snug { line-height: var(--lh-snug); }
.leading-normal { line-height: var(--lh-normal); }
.leading-relaxed { line-height: var(--lh-relaxed); }

.tracking-tight { letter-spacing: var(--tracking-tight); }
.tracking-wide { letter-spacing: var(--tracking-wide); }

/* Constrain measure for long-form text */
.measure { max-width: 68ch; }
.measure-narrow { max-width: 52ch; }

/* Emphasis helpers */
.eyebrow { font-size: var(--font-size-xs); letter-spacing: 0.15em; text-transform: uppercase; font-weight:600; color: rgba(12,32,63,0.6); }
.subtle { color: rgba(31,41,55,0.65); }
.muted { color: rgba(31,41,55,0.5); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(140deg, var(--color-green), #26BD62);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-navy);
    border: 1.5px solid rgba(12, 32, 63, 0.12);
}

.btn-secondary:hover {
    border-color: rgba(12, 32, 63, 0.3);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-green);
    border: 1.5px solid rgba(27, 200, 96, 0.25);
}

.btn-ghost:hover {
    border-color: rgba(27, 200, 96, 0.5);
    transform: translateY(-2px);
}

.btn-card {
    width: 100%;
    justify-content: center;
    background: var(--color-blue);
    color: var(--color-white);
    font-weight: 700;
    padding-block: 16px;
}

.btn-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(251, 248, 241, 0.9);
    border-bottom: 1px solid rgba(12, 32, 63, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(27, 200, 96, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.brand-tagline {
    font-size: clamp(11px, 0.72rem + 0.1vw, 13px);
    letter-spacing: 0.12em;
    font-weight: 500;
    color: rgba(12, 32, 63, 0.48);
    text-transform: none;
}

.primary-nav .nav-menu {
    display: flex;
    gap: 28px;
    font-size: 15px;
    font-weight: 500;
        color: var(--color-ink-muted);
}

.primary-nav a {
    position: relative;
    padding-bottom: 6px;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-blue);
    transition: width 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

    main section {
        padding: clamp(68px, 9vw, 112px) 0;
        scroll-margin-top: 120px;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 64px);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(12, 32, 63, 0.6);
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin-top: 12px;
}

.section-intro {
    margin-top: 18px;
    color: var(--color-ink-muted);
    font-size: 17px;
}

.hero {
    background: linear-gradient(140deg, rgba(27, 200, 96, 0.14), rgba(47, 109, 246, 0.08)), var(--color-soft-cream);
    padding: clamp(72px, 9vw, 110px) 0 clamp(32px, 6vw, 56px);
    margin-top: -1px;
}

.hero.hero-home {
    padding-bottom: clamp(96px, 12vw, 160px);
}

.hero-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-copy {
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero-visual {
    max-width: 420px;
    display: grid;
    place-items: center;
}

.hero-copy h1 {
    font-family: var(--font-sans-display);
    font-size: clamp(48px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(31, 41, 55, 0.55);
    display: inline-block;
    margin-bottom: 18px;
}

.hero-intro {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-ink-muted);
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 60ch;
}

    /* Hero tags (tagline lines) */
.hero-tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 42px;
}
.hero-tags .tagline-inline {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: lowercase;
    color: rgba(31, 41, 55, 0.55);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.hero-tags .tagline-inline::before,
.hero-tags .tagline-inline::after {
    content: '';
    display: block;
    height: 2px;
    width: 42px;
    background: linear-gradient(90deg, transparent, var(--color-green), transparent);
    border-radius: 2px;
}
.hero-tags .tagline-accent {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-green);
    letter-spacing: 0.5px;
}

    /* Hero tool grid inside hero */
.hero-tool-grid {
    margin-top: 0;
}

    /* Full-width hero tools wrapper */
.hero-tools-wrapper {
    width: 100%;
    margin-top: clamp(12px, 2vw, 24px);
}
.hero.hero-home .hero-tools-wrapper {
    margin-top: clamp(36px, 5vw, 64px);
}
.hero-tools-wrapper .hero-tool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: min(1160px, 92vw);
    margin: 0 auto;
}
    /* Tool cards in hero: switch to left-aligned content */
.hero-tool-grid .tool-card {
    text-align: left;
    align-items: flex-start; /* ensure inner flex column starts left */
}
    @media (max-width: 960px) {
    .hero-tools-wrapper .hero-tool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
    @media (max-width: 640px) {
    .hero-tools-wrapper .hero-tool-grid {
        grid-template-columns: 1fr;
}
}
    @media (max-width: 768px) {
    .hero.hero-home .hero-tools-wrapper {
        margin-top: 48px;
}
}

.hero-points {
    display: grid;
    gap: 20px;
    margin: 32px auto 40px;
    font-size: 16px;
    text-align: left;
    max-width: 680px;
}

.hero-copy .hero-points {
    align-self: stretch;
}

.hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--color-ink-muted);
}

.hero-points li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--color-green) 0%, #26BD62 100%);
    border-radius: 50%;
    color: var(--color-white);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(27, 200, 96, 0.28);
    flex-shrink: 0;
}

.hero-points .point-copy {
    line-height: var(--lh-normal);
}

.hero-points .point-copy strong {
    color: var(--color-ink);
}

    @media (max-width: 640px) {
    .hero-points {
        gap: 16px;
}

    .hero-points li {
        gap: 12px;
}
}

.how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.how-steps li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 20px;
    align-items: center;
    padding: 12px 0;
}

.how-steps .step-index {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), #26BD62);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans-display);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(27, 200, 96, 0.22);
}

.how-steps .step-text {
    display: grid;
    gap: 6px;
}

.how-steps .step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-ink);
    line-height: 1.35;
}

.how-steps .step-subtitle {
    font-size: 15px;
    color: var(--color-ink-muted);
    line-height: 1.5;
}

    @media (max-width: 640px) {
    .how-steps {
        gap: 16px;
}

    .how-steps li {
        grid-template-columns: 44px 1fr;
        column-gap: 16px;
}

    .how-steps .step-index {
        width: 44px;
        height: 44px;
        font-size: 18px;
}

    .how-steps .step-title {
        font-size: 17px;
}
}

    /* Removed emphasis variant; keeping only simple text bullets */

    /* Optional alt button style to slightly differentiate second CTA if desired */
    /* Removed duplicate :root override & alternative button system for consistency.
       All buttons now use primary definitions at top of file; keep design palette from initial tokens. */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-actions .btn-primary,
.plan-card .btn-primary,
.cta-inner .btn-primary {
    min-width: 240px;
}

.hero-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
}

.hero-card-illustration {
    width: 230px;
    height: 230px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(27, 200, 96, 0.1), rgba(47, 109, 246, 0.08));
    border-radius: 24px;
}

.hero-card-illustration svg {
    width: 100%;
    height: auto;
}

.hero-card-body h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 12px;
}

.hero-card-body p {
    color: rgba(12, 32, 63, 0.7);
    font-size: 16px;
    margin-bottom: 8px;
}

.toolkit {
    background: var(--color-white);
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.card-surface {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(12, 32, 63, 0.06);
    box-shadow: 0 12px 32px -16px rgba(12, 32, 63, 0.16);
    transition: var(--transition);
}

.card-surface:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px -18px rgba(12, 32, 63, 0.22);
}

.tool-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tool-icon {
    width: 58px;
    height: 58px;
    background: var(--color-white);
    border-radius: 18px;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(12, 32, 63, 0.08);
}

.tool-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 8px;
}

.tool-content p {
    color: rgba(12, 32, 63, 0.68);
    font-size: 15px;
}

    /* Tool card meta/footer: push link to bottom-left uniformly */
.tool-meta {
    margin-top: auto; /* stick to bottom within flex column */
    width: 100%;
    display: block; /* no flex layout needed since only link */
    padding-top: 4px;
    text-align: left;
}

.label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(31, 41, 55, 0.6);
    padding: 6px 12px;
    background: rgba(27, 200, 96, 0.12);
    border-radius: 999px;
}

.tool-link {
    color: var(--color-blue);
    font-weight: 600;
    font-size: 15px;
}

.tool-link:hover {
    text-decoration: underline;
}

.confidence {
    background: transparent;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.plan-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    min-height: 100%;
}

.plan-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-green);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card.highlighted {
    border-color: rgba(47, 109, 246, 0.22);
    box-shadow: 0 24px 56px -18px rgba(47, 109, 246, 0.22);
}

.plan-card.highlighted .plan-price span,
.plan-card.highlighted .plan-list li {
    color: var(--color-ink);
}

.plan-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
}

.plan-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-ink-muted);
}

.plan-list {
    display: grid;
    gap: 12px;
    color: var(--color-ink-muted);
    font-size: 15px;
}

.plan-list li {
    display: flex;
    gap: 10px;
}

.plan-list li::before {
    content: '✔';
    color: var(--color-green);
    font-weight: 700;
}

.plan-card.highlighted .plan-list li::before {
    color: var(--color-blue);
}

.plan-card .btn-primary {
    margin-top: auto;
    align-self: flex-start;
}

.help-center {
    background: var(--color-white);
}

.help-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 40px;
    align-items: center;
}

.help-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 18px;
}

.help-copy p {
    color: var(--color-ink-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.help-list {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
    color: rgba(12, 32, 63, 0.7);
}

.help-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-green);
    margin-top: 9px;
    margin-right: 12px;
    flex-shrink: 0;
}

.help-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.help-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.help-visual {
    background: linear-gradient(150deg, rgba(27, 200, 96, 0.12), rgba(47, 109, 246, 0.12));
    border-radius: var(--radius-md);
    padding: 32px;
    display: grid;
    place-items: center;
}

.insights {
    background: var(--color-soft-cream);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.insight-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: 1px solid rgba(12, 32, 63, 0.05);
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(47, 109, 246, 0.24);
}

.insight-tag {
    align-self: flex-start;
    background: rgba(47, 109, 246, 0.12);
    color: var(--color-blue);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.insight-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.4;
}

.insight-card p {
    color: var(--color-ink-muted);
    font-size: 15px;
}

.insight-link {
    color: var(--color-blue);
    font-weight: 600;
}

.faq {
    background: var(--color-white);
}

.faq-grid {
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
}

.faq-grid.faq-grid-multi {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.faq-item {
    flex: 1 1 0;
    border: 1px solid rgba(12, 32, 63, 0.08);
    border-radius: var(--radius-sm);
    background: var(--color-soft-cream);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(47, 109, 246, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-navy);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(12, 32, 63, 0.5);
}

.faq-question.active {
    background: rgba(27, 200, 96, 0.14);
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--color-ink-muted);
    font-size: 15px;
}

.cta {
    background: transparent;
}

.cta-inner {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 68px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-lg);
}

.cta-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 12px;
}

.cta-copy p {
    color: var(--color-ink-muted);
    font-size: 16px;
}

.site-footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.88);
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand .brand-icon {
    box-shadow: none;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    max-width: 320px;
}

.footer-column h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin-bottom: 16px;
}

.footer-column ul {
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-inner a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-inner a:hover {
    color: var(--color-white);
}

    @media (max-width: 1024px) {
    .hero-grid,
    .help-grid {
        grid-template-columns: 1fr;
}

    .hero-card {
        max-width: 420px;
        margin: 0 auto;
}

    .nav-actions {
        display: none;
}
}

    @media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
}

    .primary-nav .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 14px;
}

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
}

    .cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
}

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

    @media (max-width: 560px) {
    .hero-copy h1,
    .section-head h2,
    .cta-copy h2,
    .help-copy h2 {
        font-size: clamp(30px, 9vw, 36px);
}

    .tool-grid,
    .plan-grid,
    .insight-grid {
        grid-template-columns: 1fr;
}

    .faq-grid {
        flex-direction: column;
}

    .faq-grid.faq-grid-multi {
        grid-template-columns: 1fr;
}

    .footer-grid {
        grid-template-columns: 1fr;
}

    .footer-bottom-inner {
        flex-direction: column;
}
}

    /* Product Detail Pages */
    /* Product hero unified with main hero: remove custom gradient, reuse .hero spacing */
.hero.hero-centered { padding-top: 110px; }

.features-detail {
    padding: 100px 0;
    background: transparent;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 56px;
    align-items: stretch;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    align-items: flex-start;
    height: 100%;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

    /* Legal pages */
.legal-page main {
    padding: 100px 0;
    background: var(--color-white);
}

.legal-article {
    width: min(960px, 92vw);
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(12,32,63,0.08);
    box-shadow: 0 30px 70px rgba(12,32,63,0.06);
    padding: clamp(32px, 4vw, 56px);
}

.legal-article h1 {
    font-family: var(--font-sans-display);
    font-size: clamp(2.1rem, 1.4rem + 2vw, 3rem);
    margin-bottom: 12px;
    color: var(--color-navy);
    line-height: var(--lh-tight);
    letter-spacing: var(--tracking-tight);
}

.legal-meta {
    color: rgba(12,32,63,0.55);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.legal-section + .legal-section {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(12,32,63,0.08);
}

.legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: var(--font-sans-display);
}

.legal-section p {
    margin-bottom: 10px;
    color: rgba(12,32,63,0.78);
}

.legal-section ol,
.legal-section ul {
    margin-left: 1.25rem;
    margin-bottom: 12px;
    color: rgba(12,32,63,0.85);
    line-height: 1.6;
}

.legal-section li + li {
    margin-top: 6px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 10px;
}

.feature-content ul,
.feature-content p {
    font-size: 15px;
    color: var(--color-ink-muted);
    line-height: 1.6;
}

.feature-points {
    display: grid;
    gap: 10px;
    padding-left: 0;
}

.feature-points li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
}

.feature-points li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    background: linear-gradient(135deg, rgba(27, 200, 96, 0.85), rgba(34, 197, 94, 1));
    box-shadow: 0 0 0 6px rgba(27, 200, 96, 0.12);
}

.feature-points span {
    display: block;
}

.use-cases {
    padding: 100px 0;
    background: transparent;
}

.use-case-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-ink);
}

.use-case-card p {
    font-size: 15px;
    color: var(--color-ink-muted);
    line-height: 1.6;
}

.case-block {
    display: grid;
    gap: 6px;
}

.case-label {
        font-size: 14px;
        font-weight: 600;
    color: rgba(31, 41, 55, 0.6);
        letter-spacing: 0.01em;
        text-transform: none;
}

.use-case-card .case-divider {
    margin-top: auto;
}

.use-case-card .case-block:last-of-type {
    margin-top: 12px;
}

.case-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(12, 32, 63, 0.55);
    letter-spacing: 0.01em;
    text-transform: none;
}

.case-action {
    color: var(--color-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.case-action::before {
    content: '→';
    font-size: 14px;
    font-weight: 600;
}

.case-result {
    color: var(--color-green);
}

.case-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(27, 200, 96, 0.12), rgba(27, 200, 96, 0.45), rgba(27, 200, 96, 0.12));
}

.use-case-card:last-child .case-divider {
    background: linear-gradient(90deg, rgba(47, 109, 246, 0.12), rgba(47, 109, 246, 0.45), rgba(47, 109, 246, 0.12));
}

    @media (max-width: 720px) {
    .use-case-card {
        padding: 24px;
}

    .use-case-card h3 {
        font-size: 20px;
}
}

.workflow {
    padding: 100px 0;
    background: transparent;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.workflow-step {
    text-align: center;
    padding: 32px;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, var(--color-blue), #3F80FF);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
}

.workflow-step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.workflow-step p {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.6;
}

.testimonial {
    padding: 100px 0;
    background: transparent;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote {
    padding: 48px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial blockquote p {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.5;
    margin-bottom: 24px;
}

.testimonial blockquote footer {
    font-size: 16px;
    color: var(--color-muted);
}

.testimonial blockquote cite {
    font-style: normal;
}

    nav .active {
    color: var(--color-blue);
    font-weight: 600;
}

    @media (max-width: 960px) {
    .product-hero .hero-grid {
        grid-template-columns: 1fr;
}

    .feature-list,
    .use-case-grid,
    .workflow-steps {
        grid-template-columns: 1fr;
}
}
