/* Appify KZ — базовая дизайн-система (копия инлайна index.html) для посадочных страниц. */
:root {
      --bg: #0b0f14;
      --panel: #111827;
      --muted: #8b95a1;
      --text: #e5e7eb;
      --text-bright: #ffffff;
      --brand: #14b8a6;
      --brand-2: #22d3ee;
      --brand-glow: rgba(20, 184, 166, 0.35);
      --stroke: #1f2937;
      --stroke-bright: #2a3a4f;
      --card: #0f1620;
      --card-2: #111c2a;
      --success: #22c55e;
      --danger: #ef4444;
    }

    @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes pulse-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(20,184,166,.5); } 50% { box-shadow: 0 0 0 14px rgba(20,184,166,0); } }
    @keyframes shine { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

    * { box-sizing: border-box; }
    html, body { height: 100%; scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
      background: radial-gradient(1200px 700px at 80% -10%, rgba(20,184,166,0.10), transparent 60%),
                  radial-gradient(900px 600px at -10% 20%, rgba(34,211,238,0.08), transparent 55%),
                  linear-gradient(180deg, var(--bg), #070a0f 50%, #05070b);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* NAV */
    .nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(5, 8, 12, 0.75);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--stroke);
      transition: all 0.3s ease;
    }
    .nav.scrolled { background: rgba(5, 8, 12, 0.95); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
    .logo { display: flex; gap: 10px; align-items: center; font-weight: 800; font-size: 18px; letter-spacing: -0.4px; text-decoration: none; color: var(--text-bright); }
    .logo-dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); animation: float 3s ease-in-out infinite; box-shadow: 0 0 14px var(--brand-glow); }
    .nav-links { display: flex; align-items: center; gap: 26px; }
    .nav-links a { color: #cbd5e1; text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color 0.2s ease; position: relative; }
    .nav-links a:hover { color: var(--text-bright); }
    .nav-cta { background: linear-gradient(90deg, var(--brand), var(--brand-2)); color: #00100e; padding: 10px 16px; border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px var(--brand-glow); }

    .menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 20px; background: transparent; border: none; cursor: pointer; padding: 0; }
    .menu-toggle span { height: 2.5px; width: 100%; background: var(--text); border-radius: 3px; transition: all 0.3s ease; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    /* HERO */
    .hero { padding: 96px 0 64px; position: relative; overflow: hidden; }
    .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
    .badge {
      display: inline-flex; gap: 8px; align-items: center;
      border: 1px solid var(--stroke-bright);
      padding: 7px 14px; border-radius: 999px;
      color: #cbd5e1; font-size: 12.5px; font-weight: 500;
      background: rgba(31, 41, 55, 0.45);
      backdrop-filter: blur(6px);
    }
    .badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: pulse-glow 2s ease-out infinite; }
    .title {
      font-size: 56px; line-height: 1.05; margin: 22px 0 18px;
      font-weight: 800; letter-spacing: -1.8px; color: var(--text-bright);
    }
    .title .grad {
      background: linear-gradient(90deg, var(--brand), var(--brand-2));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .subtitle { color: #b6c0cc; max-width: 620px; font-size: 18px; line-height: 1.65; }
    .cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
    .btn {
      appearance: none; border: none; cursor: pointer;
      background: linear-gradient(90deg, var(--brand), var(--brand-2));
      color: #00100e; padding: 15px 24px; border-radius: 12px;
      font-weight: 600; font-size: 15px; text-decoration: none;
      display: inline-flex; align-items: center; gap: 10px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      box-shadow: 0 8px 22px var(--brand-glow);
      position: relative; overflow: hidden;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px var(--brand-glow); }
    .btn.secondary { background: transparent; border: 1px solid var(--stroke-bright); color: var(--text); box-shadow: none; }
    .btn.secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
    .btn.ghost { background: rgba(20,184,166,0.08); color: var(--brand-2); border: 1px solid rgba(20,184,166,0.25); box-shadow: none; }
    .btn.ghost:hover { background: rgba(20,184,166,0.15); transform: translateY(-2px); }

    .hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .tag { font-size: 12.5px; color: #b6c0cc; border: 1px solid var(--stroke); padding: 6px 12px; border-radius: 999px; background: rgba(31, 41, 55, 0.35); }

    /* Hero visual */
    .hero-visual {
      position: relative; aspect-ratio: 4/5; max-width: 460px; margin-left: auto;
      border-radius: 24px; padding: 22px;
      background: linear-gradient(180deg, rgba(20,184,166,0.10), rgba(34,211,238,0.04));
      border: 1px solid var(--stroke-bright);
      overflow: hidden;
    }
    .hero-visual::before {
      content: ''; position: absolute; inset: -2px; border-radius: 24px; pointer-events: none;
      background: radial-gradient(400px 220px at 80% 10%, rgba(34,211,238,.25), transparent 60%),
                  radial-gradient(400px 220px at 0% 100%, rgba(20,184,166,.18), transparent 60%);
      z-index: 0;
    }
    .hv-stack { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; height: 100%; }
    .hv-window {
      background: rgba(11, 18, 27, 0.92);
      border: 1px solid var(--stroke-bright); border-radius: 14px;
      padding: 14px 16px;
      backdrop-filter: blur(6px);
    }
    .hv-dots { display: flex; gap: 6px; margin-bottom: 12px; }
    .hv-dots span { width: 9px; height: 9px; border-radius: 50%; background: #2a3a4f; }
    .hv-dots span:first-child { background: #ef4444; } .hv-dots span:nth-child(2) { background: #f59e0b; } .hv-dots span:nth-child(3) { background: #22c55e; }
    .hv-line { height: 8px; background: linear-gradient(90deg, var(--stroke-bright), transparent); border-radius: 4px; margin-bottom: 8px; }
    .hv-line.short { width: 60%; }
    .hv-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(20,184,166,0.12); color: var(--brand-2); font-size: 11px; font-weight: 600; border: 1px solid rgba(20,184,166,0.25); }
    .hv-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .hv-stat { background: rgba(11, 18, 27, 0.92); border: 1px solid var(--stroke-bright); border-radius: 12px; padding: 14px; text-align: center; }
    .hv-stat b { display: block; font-size: 22px; color: var(--text-bright); font-weight: 700; }
    .hv-stat span { font-size: 11.5px; color: var(--muted); }

    /* SECTIONS */
    .section { padding: 88px 0; position: relative; }
    .section-sep::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--stroke) 20%, var(--stroke) 80%, transparent);
    }
    .eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand-2); margin-bottom: 12px; }
    .section h2 {
      font-size: 38px; margin: 0 0 14px; font-weight: 800;
      letter-spacing: -1.2px; color: var(--text-bright);
    }
    .section .lead { color: #b6c0cc; max-width: 720px; font-size: 17px; }

    .grid { display: grid; gap: 22px; }
    @media (min-width: 768px) {
      .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
      .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
      .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    }

    /* CARDS */
    .card {
      background: linear-gradient(180deg, var(--card), #0b111a);
      border: 1px solid var(--stroke);
      border-radius: 18px; padding: 26px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
      position: relative; overflow: hidden;
    }
    .card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.35); border-color: rgba(20,184,166,0.35); }
    .card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
      background: linear-gradient(135deg, rgba(20,184,166,0.06), transparent 50%);
      pointer-events: none;
    }
    .card .icon-wrap {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(20,184,166,0.18), rgba(34,211,238,0.08));
      border: 1px solid rgba(20,184,166,0.25);
      color: var(--brand-2); margin-bottom: 14px;
    }
    .card .icon-wrap svg { width: 22px; height: 22px; stroke-width: 2; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
    .card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; color: var(--text-bright); }
    .card p.desc { color: #b6c0cc; font-size: 15px; margin: 0 0 14px; }
    .card .price { font-size: 13px; color: var(--brand-2); font-weight: 600; margin-top: 6px; display: inline-block; }
    .list { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
    .list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: #cbd5e1; }
    .check {
      width: 18px; height: 18px; border-radius: 5px;
      display: inline-flex; align-items: center; justify-content: center;
      border: 1px solid #1f3a32; background: #0c1514; flex-shrink: 0; margin-top: 1px;
    }
    .check svg { width: 12px; height: 12px; fill: var(--brand); }

    /* Trust strip */
    .trust { padding: 40px 0; border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); background: rgba(255,255,255,0.01); }
    .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
    .trust-item b { display: block; font-size: 30px; color: var(--text-bright); font-weight: 800; letter-spacing: -1px; }
    .trust-item span { color: var(--muted); font-size: 13px; }

    /* Stack */
    .stack-grid { display: flex; flex-wrap: wrap; gap: 10px; }
    .stack-chip {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 14px; border-radius: 10px;
      border: 1px solid var(--stroke-bright);
      background: linear-gradient(180deg, var(--card), #0b111a);
      font-size: 14px; color: var(--text); font-weight: 500;
    }
    .stack-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }

    /* Cases preview */
    .case-card {
      display: flex; flex-direction: column;
      background: linear-gradient(180deg, var(--card), #0b111a);
      border: 1px solid var(--stroke); border-radius: 20px;
      overflow: hidden; transition: transform .25s ease, border-color .25s ease;
      text-decoration: none; color: var(--text);
    }
    .case-card:hover { transform: translateY(-4px); border-color: rgba(20,184,166,0.4); }
    .case-thumb {
      aspect-ratio: 16/10; background: linear-gradient(135deg, #0e1a26, #0a1218);
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .case-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .case-thumb .ph-icon { width: 64px; height: 64px; color: var(--brand-2); opacity: .55; }
    .case-thumb .ph-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .case-body { padding: 22px; }
    .case-body .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
    .case-body .tags span { font-size: 11.5px; padding: 3px 9px; border-radius: 999px; background: rgba(20,184,166,0.10); color: var(--brand-2); border: 1px solid rgba(20,184,166,0.22); font-weight: 600; }
    .case-body h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; color: var(--text-bright); }
    .case-body p { margin: 0; color: #b6c0cc; font-size: 14.5px; }
    .case-link { margin-top: 14px; font-size: 13.5px; color: var(--brand-2); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

    /* Process */
    .process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; }
    @media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }
    .step {
      background: linear-gradient(180deg, var(--card), #0b111a);
      border: 1px solid var(--stroke); border-radius: 16px; padding: 22px;
      position: relative; counter-increment: step;
    }
    .step::before {
      content: counter(step, decimal-leading-zero);
      position: absolute; top: 16px; right: 18px;
      font-size: 26px; font-weight: 800;
      background: linear-gradient(90deg, var(--brand), var(--brand-2));
      -webkit-background-clip: text; background-clip: text; color: transparent;
      opacity: .8;
    }
    .step h4 { margin: 0 0 6px; font-size: 16px; font-weight: 700; color: var(--text-bright); padding-right: 40px; }
    .step p { margin: 0; color: #b6c0cc; font-size: 13.5px; }

    /* Pricing */
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
    .pricing {
      background: linear-gradient(180deg, var(--card), #0b111a);
      border: 1px solid var(--stroke); border-radius: 20px; padding: 28px;
      position: relative; transition: transform .25s ease, border-color .25s ease;
    }
    .pricing:hover { transform: translateY(-4px); border-color: rgba(20,184,166,0.35); }
    .pricing.featured { border-color: rgba(20,184,166,0.55); box-shadow: 0 18px 40px rgba(20,184,166,0.15); }
    .pricing.featured::after {
      content: 'Популярный'; position: absolute; top: -12px; right: 20px;
      background: linear-gradient(90deg, var(--brand), var(--brand-2));
      color: #00100e; font-size: 11.5px; font-weight: 700;
      padding: 5px 12px; border-radius: 999px;
      letter-spacing: 0.4px; text-transform: uppercase;
    }
    .pricing h4 { margin: 0 0 6px; font-size: 18px; color: var(--text-bright); font-weight: 700; }
    .pricing .price-main { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 8px; }
    .pricing .price-main b { font-size: 32px; color: var(--text-bright); font-weight: 800; letter-spacing: -1px; }
    .pricing .price-main span { color: var(--muted); font-size: 14px; }
    .pricing .term { color: var(--muted); font-size: 13px; margin-bottom: 16px; display: block; }

    /* ===== DIRECTIONS (SEO long-form section) ===== */
    .intro-card {
      display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px;
      padding: 32px; margin: 36px 0 40px;
      background: linear-gradient(135deg, rgba(20,184,166,0.10), rgba(34,211,238,0.04));
      border: 1px solid rgba(20,184,166,0.30);
      border-radius: 22px; position: relative; overflow: hidden;
    }
    .intro-card::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(500px 250px at 90% 10%, rgba(34,211,238,.15), transparent 60%);
    }
    .intro-text { position: relative; z-index: 1; }
    .intro-lead { font-size: 17px; line-height: 1.7; color: #cbd5e1; margin: 0; }
    .intro-meta {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
      position: relative; z-index: 1; align-self: center;
    }
    .meta-item {
      text-align: center; padding: 14px 8px;
      background: rgba(11,18,27,0.5); border: 1px solid var(--stroke-bright);
      border-radius: 14px; backdrop-filter: blur(8px);
    }
    .meta-num {
      font-size: 24px; font-weight: 800; letter-spacing: -0.6px;
      background: linear-gradient(90deg, var(--brand), var(--brand-2));
      -webkit-background-clip: text; background-clip: text; color: transparent;
      line-height: 1.1; margin-bottom: 4px;
    }
    .meta-label { font-size: 11px; color: var(--muted); font-weight: 500; }

    .dropcap {
      float: left; font-size: 44px; font-weight: 800; line-height: 0.95;
      padding: 4px 10px 0 0; margin-top: 2px;
      background: linear-gradient(180deg, var(--brand-2), var(--brand));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }

    .directions { display: grid; gap: 22px; margin-top: 18px; }

    .direction {
      display: grid; grid-template-columns: 200px 1fr;
      gap: 32px; padding: 32px;
      background: linear-gradient(180deg, var(--card), #0b111a);
      border: 1px solid var(--stroke); border-radius: 22px;
      position: relative; overflow: hidden;
      transition: border-color .3s ease, transform .3s ease;
    }
    .direction:hover { border-color: rgba(20,184,166,0.4); transform: translateY(-2px); }
    .direction::before {
      content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
      background: radial-gradient(400px 200px at 100% 0%, rgba(20,184,166,0.06), transparent 70%);
      pointer-events: none;
    }
    .direction-featured {
      background: linear-gradient(180deg, rgba(20,184,166,0.08), #0b111a);
      border-color: rgba(20,184,166,0.4);
    }

    .direction-side {
      display: flex; flex-direction: column; gap: 16px;
      padding-right: 26px; border-right: 1px dashed var(--stroke);
      position: relative; z-index: 1;
    }
    .dir-num {
      font-size: 64px; font-weight: 800; line-height: 1; letter-spacing: -3px;
      background: linear-gradient(135deg, var(--brand), var(--brand-2));
      -webkit-background-clip: text; background-clip: text; color: transparent;
      opacity: 0.85;
    }
    .dir-icon {
      width: 50px; height: 50px; border-radius: 14px;
      background: rgba(20,184,166,0.10); border: 1px solid rgba(20,184,166,0.25);
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--brand-2);
    }
    .dir-icon svg { width: 26px; height: 26px; }
    .dir-tags { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
    .dir-tag {
      font-size: 12px; color: #b6c0cc; padding: 7px 12px;
      border-radius: 10px; background: rgba(31,41,55,0.45);
      border: 1px solid var(--stroke-bright);
    }
    .dir-tag strong { color: var(--text-bright); font-weight: 700; }

    .direction-body { position: relative; z-index: 1; }
    .direction-body h3 {
      font-size: 26px; font-weight: 800; letter-spacing: -0.7px;
      color: var(--text-bright); margin: 0 0 16px;
      line-height: 1.25;
    }
    .direction-body .grad {
      background: linear-gradient(90deg, var(--brand), var(--brand-2));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .direction-body p {
      color: #cbd5e1; font-size: 15.5px; line-height: 1.75; margin: 0 0 14px;
    }
    .direction-body p::after { content: ''; display: block; clear: both; }
    .direction-body p strong { color: var(--text-bright); font-weight: 600; }
    .inline-link {
      color: var(--brand-2); text-decoration: none;
      border-bottom: 1px dashed rgba(34,211,238,0.4);
    }
    .inline-link:hover { border-bottom-style: solid; }

    .dir-chips {
      display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px;
      padding-top: 16px; border-top: 1px dashed var(--stroke);
    }
    .chip-tech {
      font-size: 12px; padding: 5px 11px; border-radius: 999px;
      background: rgba(11,18,27,0.6); border: 1px solid var(--stroke-bright);
      color: #cbd5e1; font-weight: 500;
    }

    /* "Why us" block with pull-quotes */
    .why-block {
      margin: 50px 0 0; padding: 40px 32px;
      background: linear-gradient(180deg, #0c131c, #080d14);
      border: 1px solid var(--stroke); border-radius: 22px;
    }
    .why-head { text-align: center; margin-bottom: 28px; }
    .why-head .eyebrow { display: inline-block; margin-bottom: 10px; }
    .why-head h3 {
      font-size: 28px; font-weight: 800; letter-spacing: -0.7px;
      color: var(--text-bright); margin: 0; line-height: 1.25;
    }

    .pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 30px; }
    .pain {
      position: relative; padding: 22px 22px 22px 50px; margin: 0;
      background: rgba(11,18,27,0.6); border: 1px solid var(--stroke-bright);
      border-left: 3px solid #ef4444;
      border-radius: 12px;
      color: #b6c0cc; font-style: italic; font-size: 14.5px; line-height: 1.55;
    }
    .quote-mark {
      position: absolute; top: 8px; left: 16px;
      font-size: 44px; line-height: 1; color: #ef4444; opacity: .5;
      font-family: Georgia, serif; font-style: normal;
    }

    .why-answer p { font-size: 16px; line-height: 1.7; color: #cbd5e1; }
    .why-answer p strong { color: var(--text-bright); }

    .markets-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
    .market-card {
      display: flex; gap: 16px; padding: 20px;
      background: rgba(11,18,27,0.5);
      border: 1px solid var(--stroke-bright); border-radius: 14px;
    }
    .market-flag { font-size: 36px; line-height: 1; flex-shrink: 0; }
    .market-title { font-weight: 700; color: var(--text-bright); margin-bottom: 4px; font-size: 15px; }
    .market-desc { font-size: 14px; line-height: 1.55; color: #b6c0cc; }
    .market-desc strong { color: var(--text-bright); font-weight: 600; }

    @media (max-width: 900px) {
      .intro-card { grid-template-columns: 1fr; gap: 22px; padding: 26px; }
      .direction { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
      .direction-side {
        flex-direction: row; flex-wrap: wrap; align-items: center;
        padding-right: 0; border-right: none;
        padding-bottom: 16px; border-bottom: 1px dashed var(--stroke);
      }
      .dir-num { font-size: 44px; letter-spacing: -2px; }
      .dir-tags { flex-direction: row; flex-wrap: wrap; margin-top: 0; margin-left: auto; }
      .direction-body h3 { font-size: 22px; }
      .pains { grid-template-columns: 1fr; }
      .markets-row { grid-template-columns: 1fr; }
      .why-block { padding: 28px 20px; }
      .why-head h3 { font-size: 22px; }
    }
    @media (max-width: 540px) {
      .intro-meta { grid-template-columns: 1fr 1fr; }
      .dropcap { font-size: 36px; padding-right: 8px; }
    }

    /* FAQ */
    .faq { display: grid; gap: 12px; }
    .faq details {
      background: linear-gradient(180deg, var(--card), #0b111a);
      border: 1px solid var(--stroke); border-radius: 14px;
      padding: 18px 22px; transition: border-color .2s ease;
    }
    .faq details[open] { border-color: rgba(20,184,166,0.35); }
    .faq summary {
      cursor: pointer; list-style: none; font-weight: 600;
      color: var(--text-bright); font-size: 16px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after { content: '+'; font-size: 22px; color: var(--brand-2); transition: transform .2s ease; }
    .faq details[open] summary::after { content: '−'; }
    .faq p { margin: 12px 0 0; color: #b6c0cc; font-size: 14.5px; }

    /* Contact form */
    .contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 24px; }
    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
    .contact-card { display: grid; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
    .input, .textarea, .select {
      width: 100%; background: rgba(10, 17, 23, 0.85);
      border: 1px solid var(--stroke-bright); border-radius: 12px;
      padding: 14px 16px; color: var(--text);
      font-family: 'Inter', sans-serif; font-size: 15px;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
    .input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(20,184,166,0.18); }
    .textarea { min-height: 130px; resize: vertical; }
    .form-label { font-size: 13.5px; color: #cbd5e1; font-weight: 500; margin-bottom: -6px; display: block; }
    .checkbox-row { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 13px; }
    .checkbox-row input { width: 16px; height: 16px; accent-color: var(--brand); }
    .form-note { font-size: 13.5px; color: var(--muted); text-align: left; transition: color .2s ease; min-height: 18px; }
    .form-note.success { color: var(--success); }
    .form-note.error { color: var(--danger); }

    .contact-side { display: flex; flex-direction: column; gap: 18px; }
    .contact-side .contact-row { display: flex; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px dashed var(--stroke); }
    .contact-side .contact-row:last-child { border-bottom: none; }
    .contact-side .contact-row .ic {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(20,184,166,0.10); border: 1px solid rgba(20,184,166,0.22);
      display: inline-flex; align-items: center; justify-content: center; color: var(--brand-2); flex-shrink: 0;
    }
    .contact-side .contact-row a { color: var(--text-bright); text-decoration: none; font-weight: 600; font-size: 15px; }
    .contact-side .contact-row a:hover { color: var(--brand-2); }
    .contact-side .contact-row small { display: block; color: var(--muted); font-size: 12px; }

    /* Footer */
    .footer { padding: 50px 0 40px; color: #9aa6b2; border-top: 1px solid var(--stroke); margin-top: 30px; }
    .footer-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
    .footer .links { display: flex; gap: 22px; }
    .footer .links a { color: #9aa6b2; text-decoration: none; font-size: 13.5px; }
    .footer .links a:hover { color: var(--text-bright); }
    .footer .small { font-size: 12.5px; color: #6b7785; }

    /* Floating WhatsApp */
    .fab-wa {
      position: fixed; bottom: 20px; right: 20px; z-index: 60;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366; color: white;
      display: inline-flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(37,211,102,0.45);
      transition: transform .2s ease;
    }
    .fab-wa:hover { transform: scale(1.07); }
    .fab-wa svg { width: 28px; height: 28px; fill: currentColor; }

    /* Animations */
    .animate-fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
    .animate-fade-in.visible { opacity: 1; transform: translateY(0); }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; gap: 32px; }
      .hero-visual { max-width: 100%; margin: 0; aspect-ratio: auto; padding: 18px; }
      .title { font-size: 42px; }
      .section h2 { font-size: 30px; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; gap: 0;
        background: rgba(5, 8, 12, 0.98); backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--stroke); padding: 12px 0; }
      .nav-links.active { display: flex; }
      .nav-links a { padding: 12px 24px; width: 100%; border-bottom: 1px solid var(--stroke); }
      .nav-links a:last-child { border-bottom: none; }
      .nav-links .nav-cta { margin: 12px 24px; text-align: center; }
      .menu-toggle { display: flex; }
      .section { padding: 60px 0; }
      .hero { padding: 60px 0 30px; }
      .title { font-size: 34px; letter-spacing: -1px; }
      .subtitle { font-size: 16px; }
      .section h2 { font-size: 26px; }
      .card { padding: 22px; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 18px; }
      .title { font-size: 28px; }
      .btn { width: 100%; justify-content: center; }
      .cta { flex-direction: column; }
    }
