  :root {
    --bg: #06060b;
    --bg-card: #0c0c14;
    --bg-card-hover: #111119;
    --bg-elevated: #14141e;
    --border: #1a1a28;
    --border-hover: #2a2a3c;
    --text: #eaeaf0;
    --text-secondary: #a0a0b8;
    --text-dim: #6a6a82;
    --text-muted: #3e3e52;
    --accent: #00e09e;
    --accent-soft: rgba(0,224,158,0.08);
    --accent-glow: rgba(0,224,158,0.25);
    --accent-bright: #00ffb4;
    --orange: #ff7043;
    --blue: #5090ff;
    --purple: #9d7aff;
    --yellow: #ffc952;
    --pink: #ff5c8a;
    --cyan: #22d3ee;
    --radius: 14px;
    --radius-sm: 8px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10000;
  }

  .ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .ambient::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,224,158,0.06) 0%, transparent 70%);
    filter: blur(80px);
  }

  .ambient::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(80,144,255,0.04) 0%, transparent 70%);
    filter: blur(60px);
  }

  .grid-lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 20%, transparent 70%);
  }

  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  section { position: relative; z-index: 1; }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 1.5rem;
    background: rgba(6,6,11,0.85);
    backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
  }

  .logo {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
  }

  .logo-indicator {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: blink 2.5s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.25s;
    font-family: 'JetBrains Mono', monospace;
  }

  .nav-links a:hover { color: var(--text); }

  .btn-nav-cta {
    padding: 0.5rem 1.2rem;
    background: var(--accent);
    color: var(--bg) !important;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    transition: all 0.3s !important;
  }

  .btn-nav-cta:hover {
    box-shadow: 0 4px 24px var(--accent-glow);
    transform: translateY(-1px);
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
  }

  .hero-content { max-width: 720px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem 0.35rem 0.7rem;
    background: var(--accent-soft);
    border: 1px solid rgba(0,224,158,0.15);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    animation: slideIn 0.7s ease-out;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    animation: slideIn 0.7s ease-out 0.1s both;
  }

  .hero h1 .gradient-text,
  .subhero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--cyan), var(--accent-bright));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
  }

  @keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 580px;
    animation: slideIn 0.7s ease-out 0.2s both;
  }

  .hero-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    animation: slideIn 0.7s ease-out 0.3s both;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--bg);
  }

  .btn-primary:hover {
    box-shadow: 0 6px 32px var(--accent-glow);
    transform: translateY(-2px);
  }

  .btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-hover);
  }

  .btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  /* Terminal */
  .hero-terminal {
    margin-top: 3.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    animation: slideIn 0.7s ease-out 0.45s both;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }

  .term-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.015);
    border-bottom: 1px solid var(--border);
  }

  .term-dot { width: 10px; height: 10px; border-radius: 50%; }
  .term-dot:nth-child(1) { background: #ff5f57; }
  .term-dot:nth-child(2) { background: #febc2e; }
  .term-dot:nth-child(3) { background: #28c840; }

  .term-title {
    flex: 1;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--text-muted);
  }

  .term-body {
    padding: 1.2rem 1.4rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    line-height: 2;
    color: var(--text-dim);
  }

  .term-line {
    opacity: 0;
    animation: typeIn 0.35s ease-out forwards;
  }

  .term-line:nth-child(1) { animation-delay: 1s; }
  .term-line:nth-child(2) { animation-delay: 1.4s; }
  .term-line:nth-child(3) { animation-delay: 1.8s; }
  .term-line:nth-child(4) { animation-delay: 2.2s; }
  .term-line:nth-child(5) { animation-delay: 2.6s; }
  .term-line:nth-child(6) { animation-delay: 3s; }
  .term-line:nth-child(7) { animation-delay: 3.4s; }

  @keyframes typeIn {
    from { opacity: 0; transform: translateX(-6px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .t-p { color: var(--accent); }
  .t-c { color: var(--text); }
  .t-f { color: var(--orange); }
  .t-s { color: var(--yellow); }
  .t-ok { color: var(--accent); }
  .t-m { color: var(--text-muted); font-style: italic; }

  /* SECTION COMMON */
  .sec-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .sec-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
  }

  .sec-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.8rem;
    max-width: 540px;
  }

  .sec-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .sec-header .sec-desc { margin-inline: auto; }

  /* SERVICES */
  .services { padding: 7rem 0; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .svc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }

  .svc-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--card-color, var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .svc-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  }

  .svc-card:hover::after { transform: scaleX(1); }

  .svc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    font-size: 1.2rem;
    background: var(--icon-bg, var(--accent-soft));
    border: 1px solid var(--icon-border, rgba(0,224,158,0.12));
  }

  .svc-card h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
  }

  .svc-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
  }

  .svc-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

  .svc-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.03);
    color: var(--text-dim);
    border: 1px solid var(--border);
  }

  .c-green { --card-color: var(--accent); --icon-bg: rgba(0,224,158,0.08); --icon-border: rgba(0,224,158,0.18); }
  .c-blue { --card-color: var(--blue); --icon-bg: rgba(80,144,255,0.08); --icon-border: rgba(80,144,255,0.18); }
  .c-orange { --card-color: var(--orange); --icon-bg: rgba(255,112,67,0.08); --icon-border: rgba(255,112,67,0.18); }
  .c-purple { --card-color: var(--purple); --icon-bg: rgba(157,122,255,0.08); --icon-border: rgba(157,122,255,0.18); }
  .c-cyan { --card-color: var(--cyan); --icon-bg: rgba(34,211,238,0.08); --icon-border: rgba(34,211,238,0.18); }
  .c-yellow { --card-color: var(--yellow); --icon-bg: rgba(255,201,82,0.08); --icon-border: rgba(255,201,82,0.18); }

  /* PROCESS */
  .process { padding: 7rem 0; }

  .process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
  }

  .process-track::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), var(--border-hover), transparent);
  }

  .proc-step { text-align: center; position: relative; }

  .proc-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    color: var(--accent);
    position: relative;
    z-index: 2;
  }

  .proc-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .proc-desc {
    color: var(--text-dim);
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
  }

  /* TESTIMONIALS */
  .testimonials { padding: 7rem 0; }

  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .test-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    transition: all 0.3s;
  }

  .test-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
  }

  .test-stars {
    color: var(--yellow);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  .test-quote {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .test-author { display: flex; align-items: center; gap: 0.7rem; }

  .test-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent);
  }

  .test-name { font-weight: 600; font-size: 0.85rem; }
  .test-role { font-size: 0.72rem; color: var(--text-dim); }

  /* PLATFORMS */
  .platforms { padding: 5rem 0; }

  .platform-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
  }

  .chip {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--text-secondary);
    transition: all 0.3s;
    cursor: default;
  }

  .chip:hover {
    border-color: var(--border-hover);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }

  .chip-icon { font-size: 1rem; }

  /* FAQ */
  .faq { padding: 7rem 0; }
  .faq-list { max-width: 720px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color 0.3s;
  }

  .faq-q:hover { color: var(--accent); }

  .faq-arrow {
    font-size: 1.2rem;
    color: var(--text-dim);
    transition: transform 0.3s, color 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  .faq-item.open .faq-arrow {
    transform: rotate(45deg);
    color: var(--accent);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.4rem;
  }

  .faq-a p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
  }

  /* CTA */
  .cta { padding: 7rem 0; }

  .cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-card::before {
    content: '';
    position: absolute;
    top: -40%; left: 20%;
    width: 60%; height: 100%;
    background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 60%);
    filter: blur(40px);
  }

  .cta-card > * { position: relative; z-index: 1; }

  .cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
  }

  .cta-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    max-width: 460px;
    margin-inline: auto;
  }

  .cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .cta-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .cta-contact a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .cta-contact a:hover { color: var(--accent); }

  /* FOOTER */
  footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-copy {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
  }

  .footer-social { display: flex; gap: 1rem; }

  .footer-social a {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
  }

  .footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }

  /* ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .test-grid { grid-template-columns: 1fr; }
    .process-track { grid-template-columns: repeat(2, 1fr); }
    .process-track::before { display: none; }
  }

  @media (max-width: 680px) {
    .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem; flex-direction: column; gap: 0.5rem; z-index: 999; }
    .menu-toggle { display: block; }
    .services-grid { grid-template-columns: 1fr; }
    .process-track { grid-template-columns: 1fr; gap: 1rem; }
    .hero { padding: 6.5rem 0 3rem; }
    .hero h1 { font-size: 2rem; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .cta-contact { flex-direction: column; align-items: center; gap: 1rem; }
    .footer-inner { flex-direction: column; text-align: center; }
  }

/* ===== SUBPAGES ===== */
.subhero { padding: 9.5rem 0 4rem; position: relative; z-index: 1; }
.breadcrumbs { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--text-dim); margin-bottom: 1.6rem; letter-spacing: 0.03em; }
.breadcrumbs a { color: var(--text-dim); text-decoration: none; transition: color 0.25s; }
.breadcrumbs a:hover { color: var(--accent); }
.subhero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.035em; margin-bottom: 1.3rem; max-width: 840px; }
.subhero .lead { font-size: 1.05rem; color: var(--text-secondary); max-width: 660px; line-height: 1.75; margin-bottom: 2.2rem; }
.section-pad { padding: 3.5rem 0; position: relative; z-index: 1; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.2rem; }
.feature { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; transition: all 0.3s; }
.feature:hover { border-color: var(--border-hover); }
.feature h3 { font-family: 'JetBrains Mono', monospace; font-size: 0.92rem; font-weight: 600; margin-bottom: 0.6rem; }
.feature p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.65; }
.check-list { list-style: none; margin-top: 1.6rem; max-width: 720px; }
.check-list li { padding: 0.65rem 0 0.65rem 1.9rem; position: relative; color: var(--text-secondary); font-size: 0.93rem; line-height: 1.6; border-bottom: 1px solid var(--border); }
.check-list li strong { color: var(--text); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0.6rem; color: var(--accent); font-weight: 700; }
.compare-wrap { overflow-x: auto; margin-top: 2.2rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
table.compare { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 560px; }
table.compare th, table.compare td { padding: 0.9rem 1.2rem; text-align: left; border-bottom: 1px solid var(--border); }
table.compare tr:last-child td { border-bottom: none; }
table.compare th { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }
table.compare td:first-child { color: var(--text-secondary); }
table.compare .good { color: var(--accent); font-weight: 600; }
table.compare .bad { color: var(--text-dim); }
.prose { max-width: 740px; }
.prose h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin: 2.6rem 0 1rem; }
.prose p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.75; }
.svc-link { display: inline-block; margin-top: 1rem; font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.svc-link:hover { text-decoration: underline; }
a.svc-card-link { text-decoration: none; color: inherit; display: block; }
@media (max-width: 680px) {
  .feature-grid { grid-template-columns: 1fr; }
  .subhero { padding: 7.5rem 0 3rem; }
}

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.2rem 1.6rem 1.8rem; position: relative; display: flex; flex-direction: column; transition: all 0.3s; }
.price-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.price-card.featured { border-color: rgba(0,224,158,0.4); box-shadow: 0 0 40px rgba(0,224,158,0.07); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-family: 'JetBrains Mono', monospace; font-size: 0.63rem; font-weight: 700; padding: 0.28rem 0.8rem; border-radius: 100px; letter-spacing: 0.05em; white-space: nowrap; }
.price-name { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; font-weight: 600; color: var(--accent); }
.price-value { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.03em; margin: 0.5rem 0 0.1rem; }
.price-value span { font-size: 0.82rem; color: var(--text-dim); font-weight: 500; letter-spacing: 0; }
.price-desc { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 1.3rem; line-height: 1.55; }
.price-feats { list-style: none; margin: 0 0 1.5rem; flex: 1; }
.price-feats li { padding: 0.42rem 0 0.42rem 1.5rem; position: relative; font-size: 0.84rem; color: var(--text-secondary); line-height: 1.5; }
.price-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.price-note { margin-top: 1.6rem; font-size: 0.82rem; color: var(--text-dim); text-align: center; line-height: 1.7; }
.price-note strong { color: var(--text-secondary); }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

/* ===== SEO / RELATED ===== */
h2.sec-title, h2.cta-h { margin: 0; }
a.feature { text-decoration: none; color: inherit; display: block; }
a.feature h3 { color: var(--accent); }
a.feature:hover { border-color: var(--accent); transform: translateY(-2px); }
.prose h2 .kw { color: var(--accent); }
.c-pink { --card-color: var(--pink); --icon-bg: rgba(255,92,138,0.08); --icon-border: rgba(255,92,138,0.18); }

/* ===== FOOTER NAV ===== */
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; justify-content: center; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.footer-nav a { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--text-dim); text-decoration: none; transition: color 0.25s; }
.footer-nav a:hover { color: var(--accent); }
.price-users { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--accent); margin: 0 0 0.5rem; letter-spacing: 0.02em; }
