/*
Theme Name: Target Force Landing
Theme URI: https://targetforce.by
Author: Target Force
Description: Лендинг + блог Target Force — ИИ-агенты для автоматизации продаж в мебельной отрасли.
Version: 1.1
Text Domain: target-force
*/

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@700;800&display=swap');

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

  :root {
    --ink: #0F1117;
    --ink-mid: #3D4150;
    --ink-soft: #7B8099;
    --bg: #F7F8FC;
    --white: #ffffff;
    --accent: #2A5FE8;
    --accent-light: #EEF2FD;
    --accent-glow: rgba(42,95,232,0.12);
    --border: #E2E5EF;
    --r: 12px;
    --navy-1: #0A1330;
    --navy-2: #122657;
    --navy-3: #1E3F94;
    --glass-bg: rgba(255,255,255,.06);
    --glass-border: rgba(255,255,255,.12);
    /* новые токены для hero — насыщенная навигационная пара + тёплый акцент */
    --navy-deep: #121C3D;
    --warm: #E8703F;
    --warm-glow: rgba(232,112,63,0.14);
    --card-glass: rgba(255,255,255,0.72);
    --hero-blob-blue: rgba(42,95,232,0.24);
    --hero-blob-warm: rgba(232,112,63,0.26);
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
  }

  /* NAV */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(226,229,239,0.6);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -0.5px;
  }
  .logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  nav a {
    font-size: 14px;
    color: var(--ink-mid);
    text-decoration: none;
    font-weight: 500;
  }
  nav a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: opacity .2s;
  }
  .nav-cta:hover { opacity: .88; }

  /* HERO */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 56px 40px 72px;
  }
  .hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
  }
  .hero::before {
    width: 460px; height: 460px;
    background: var(--hero-blob-blue);
    top: -140px; left: 4%;
  }
  .hero::after {
    width: 480px; height: 480px;
    background: var(--hero-blob-warm);
    top: 18%; right: 2%;
  }
  .hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .hero-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-mid);
    font-weight: 600;
    letter-spacing: .2px;
    margin-bottom: 22px;
  }
  .hero-label .label-dash {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--warm);
    flex-shrink: 0;
  }
  h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 4.6vw, 50px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1.2px;
    color: var(--navy-deep);
    margin-bottom: 20px;
  }
  h1 em {
    display: block;
    font-style: normal;
    color: var(--accent);
  }
  .hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--ink);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.65;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
  .btn-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--warm);
    margin-right: 9px;
    vertical-align: middle;
  }
  .hero-cta, .btn-outline {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s, background .15s;
  }
  .hero-cta {
    background: var(--navy-deep);
    color: var(--white);
    box-shadow: 0 10px 30px -8px rgba(18,28,61,0.35);
  }
  .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(18,28,61,0.4); }
  .btn-outline {
    background: transparent;
    color: var(--navy-deep);
    border: 1px solid var(--border);
  }
  .btn-outline:hover { border-color: var(--navy-deep); }
  .hero-note {
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-mid);
  }

  /* HERO CHAT DEMO ILLUSTRATION */
  .hero-chat-demo {
    position: relative;
    z-index: 1;
    background: var(--card-glass);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 16px 18px;
    max-width: 360px;
    width: fit-content;
    box-shadow: 0 20px 50px -20px rgba(15,23,42,0.22);
    margin-bottom: 24px;
    transform: rotate(-1.1deg);
  }
  .hero-glow-blob {
    position: absolute;
    width: 220px;
    height: 220px;
    top: -70px;
    right: -60px;
    z-index: 0;
    filter: blur(4px);
    pointer-events: none;
  }
  .chat-demo-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  .chat-demo-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px -2px rgba(108,63,232,0.5);
  }
  .chat-demo-name { font-size: 13px; font-weight: 700; color: var(--ink); }
  .chat-demo-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--ink-mid);
    margin-left: auto;
    white-space: nowrap;
  }
  .status-dot { width: 7px; height: 7px; border-radius: 50%; background: #34C759; display: inline-block; flex-shrink: 0; }
  .chat-bubble {
    position: relative;
    z-index: 1;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.45;
    padding: 9px 13px;
    border-radius: 14px;
    margin-bottom: 8px;
    max-width: 88%;
  }
  .chat-bubble-client {
    background: rgba(15,17,23,0.06);
    color: var(--ink);
    border-radius: 14px 14px 14px 4px;
  }
  .chat-bubble-agent {
    background: linear-gradient(135deg, #2A5FE8 0%, #16245C 100%);
    color: var(--white);
    margin-left: auto;
    border-radius: 14px 14px 4px 14px;
  }
  .chat-demo-time {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 11.5px;
    font-weight: 300;
    color: var(--ink-mid);
    text-align: right;
  }
  @media (max-width: 480px) {
    .hero-chat-demo { max-width: 100%; transform: none; }
    .hero-glow-blob { width: 160px; height: 160px; top: -50px; right: -40px; }
  }

  /* HERO FORM CARD */
  .hero-form-card {
    background: var(--card-glass);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 70px -24px rgba(15,23,42,0.22);
  }
  .hero-form-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 6px;
  }
  .hero-form-card .form-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-mid);
    margin-bottom: 16px;
  }
  .hero-form-card .form-highlight {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 20px;
    line-height: 1.45;
  }
  .hero-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-mid);
    margin-bottom: 6px;
  }
  .hero-form-card input {
    width: 100%;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    margin-bottom: 16px;
    transition: border-color .15s, background .15s;
  }
  .hero-form-card input::placeholder { color: #A4A9BD; }
  .hero-form-card input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--accent-glow);
  }
  .hero-form-card .form-submit {
    width: 100%;
    justify-content: center;
    margin-bottom: 14px;
    border: none;
    cursor: pointer;
  }
  .hero-form-card .consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.5;
  }
  .hero-form-card .consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    min-width: 17px;
    margin: 1px 0 0;
    border: 1.5px solid var(--border);
    border-radius: 5px;
    background: var(--white);
    cursor: pointer;
    position: relative;
    transition: background .15s, border-color .15s;
  }
  .hero-form-card .consent input[type="checkbox"]:checked {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
  }
  .hero-form-card .consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px; top: 1px;
    width: 4px; height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .hero-form-card .consent span { display: inline; }
  .hero-form-card .consent a { color: var(--ink-mid); text-decoration: underline; }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero { padding: 40px 20px 56px; }
  }

  /* TRUST BAR */
  .trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    padding: 32px 24px;
  }
  .trust-bar-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 4px 24px;
    border-right: 1px solid var(--border);
  }
  .trust-item:last-child { border-right: none; }
  .ti-badge {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ti-text { display: flex; flex-direction: column; gap: 2px; }
  .ti-text strong {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
  }
  .ti-text span {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.3;
  }
  @media (max-width: 860px) {
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
    .trust-item:nth-child(2n) { border-right: none; }
    .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 18px; }
    .trust-item:nth-child(3), .trust-item:nth-child(4) { padding-top: 2px; }
  }
  @media (max-width: 480px) {
    .trust-bar-inner { grid-template-columns: 1fr; row-gap: 18px; }
    .trust-item { border-right: none !important; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
    .trust-item:last-child { border-bottom: none; }
  }

  /* PAIN */
  .pain {
    position: relative;
    background: linear-gradient(165deg, var(--navy-1) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
    color: var(--white);
    padding: 64px 24px;
    overflow: hidden;
  }
  .pain::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(42,95,232,.35), transparent 70%);
    top: -200px;
    right: -120px;
    pointer-events: none;
  }
  .pain-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
  }
  .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 32px;
  }
  .pain .section-label { color: rgba(255,255,255,.4); }
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pain-item {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
  }
  .pain-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.22);
  }
  .pain-item-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
  .pain-icon { font-size: 22px; }
  .pain-num {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    color: rgba(255,255,255,.4);
  }
  .pain-item p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.82); line-height: 1.55; }
  .pain-item strong { color: var(--white); }
  @media (max-width: 640px) {
    .pain-grid { grid-template-columns: 1fr; }
  }

  /* HOW */
  .how {
    position: relative;
    overflow: hidden;
    padding: 72px 24px;
  }
  .how::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    top: -180px;
    right: -160px;
    pointer-events: none;
  }
  .how-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
  }
  .section-h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--navy-deep);
  }
  .steps { display: flex; flex-direction: column; gap: 0; position: relative; }
  .steps::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--warm) 100%);
    opacity: .22;
  }
  .step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 26px 0;
    align-items: start;
    position: relative;
    transition: padding-left .2s ease;
  }
  .step:hover { padding-left: 4px; }
  .step-num {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--accent);
    background: var(--white);
    border: 2px solid var(--accent-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform .2s ease, border-color .2s ease;
  }
  .step:hover .step-num { transform: scale(1.08); border-color: var(--accent); }
  .step h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .step p { font-size: 16px; font-weight: 300; color: var(--ink); }

  /* PROCESS */
  .process {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 72px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .process::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--warm-glow), transparent 70%);
    bottom: -220px;
    left: -160px;
    pointer-events: none;
  }
  .process-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 8px;
  }
  .p-step {
    padding: 24px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .p-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px -12px rgba(18,28,61,.18);
    border-color: var(--accent);
  }
  .p-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 26px;
    right: -21px;
    color: var(--border);
    font-size: 16px;
    font-weight: 700;
    z-index: 1;
  }
  @media (max-width: 780px) {
    .p-step:not(:last-child)::after { display: none; }
  }
  .p-step-num {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .p-step h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .p-step p {
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.5;
  }
  .p-step-days {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 10px;
  }
  .p-step:first-child .p-step-days {
    color: var(--warm);
    background: var(--warm-glow);
  }

  /* RESULT */
  .result {
    position: relative;
    overflow: hidden;
    background: var(--accent-light);
    padding: 72px 24px;
  }
  .result::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--warm-glow), transparent 70%);
    top: -200px;
    right: -140px;
    pointer-events: none;
  }
  .result-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
  .metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
  }
  .metric {
    background: var(--white);
    border-radius: var(--r);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .metric:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -12px rgba(18,28,61,.16); }
  .metric:nth-child(2) .metric-val { color: var(--warm); }
  .metric-val {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
  }
  .metric p { font-size: 15px; font-weight: 300; color: var(--ink); line-height: 1.45; }
  .case-block {
    background: var(--white);
    border-radius: var(--r);
    padding: 28px 32px;
    border: 1px solid var(--border);
    font-size: 16px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.7;
    transition: box-shadow .2s ease;
  }
  .case-block:hover { box-shadow: 0 14px 30px -14px rgba(18,28,61,.14); }
  .case-block strong { color: var(--ink); }
  .case-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
  }

  /* PRICING */
  .pricing {
    position: relative;
    overflow: hidden;
    padding: 72px 24px;
  }
  .pricing::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    bottom: -200px;
    right: -150px;
    pointer-events: none;
  }
  .pricing-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 8px;
  }
  .price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .price-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -12px rgba(18,28,61,.16); }
  .price-card.featured {
    border-color: var(--warm);
    box-shadow: 0 0 0 1px var(--warm);
  }
  .price-card.featured:hover { box-shadow: 0 0 0 1px var(--warm), 0 16px 34px -10px rgba(232,112,63,.3); }
  .price-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--warm);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: .5px;
  }
  .price-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .price-val {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
  }
  .price-val span { font-size: 18px; font-weight: 600; color: var(--ink-soft); }
  .price-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-mid);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
  }
  .price-features li {
    font-size: 15px;
    font-weight: 300;
    color: var(--ink);
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
  }
  .price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
  }
  .price-cta {
    display: block;
    text-align: center;
    padding: 11px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s;
  }
  .price-cta-outline {
    border: 1.5px solid var(--border);
    color: var(--ink-mid);
  }
  .price-cta-outline:hover { border-color: var(--accent); color: var(--accent); }
  .price-cta-fill {
    background: var(--accent);
    color: var(--white);
  }
  .price-cta-fill:hover { opacity: .88; }
  .pricing-note {
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-mid);
    margin-top: 20px;
    text-align: center;
  }

  /* ABOUT */
  .about {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 24px;
  }
  .about::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--warm-glow), transparent 70%);
    top: -200px;
    left: -160px;
    pointer-events: none;
  }
  .about-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
  }
  .founder-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 28px;
    padding: 20px;
    background: var(--accent-light);
    border: 1px solid var(--border);
    border-radius: var(--r);
  }
  .founder-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--white);
    margin-top: 2px;
  }
  .founder-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .founder-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
  }
  .founder-role {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.5;
  }
  .about-text .section-label { margin-bottom: 16px; }
  .about-text h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--navy-deep);
  }
  .about-text p {
    font-size: 16px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .about-stats {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .about-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .about-stat-val {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }
  .about-stat:nth-child(2) .about-stat-val { color: var(--warm); }
  .about-stat-label {
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-mid);
    line-height: 1.4;
    max-width: 100px;
  }

  /* FAQ */
  .faq {
    max-width: 820px;
    margin: 0 auto;
    padding: 72px 24px;
  }
  .faq-list { display: flex; flex-direction: column; gap: 0; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    user-select: none;
  }
  .faq-q::after {
    content: '+';
    font-size: 20px;
    color: var(--accent);
    font-weight: 400;
    flex-shrink: 0;
    margin-top: -2px;
    display: inline-block;
    transition: transform .2s ease;
  }
  .faq-item.open .faq-q { margin-bottom: 10px; }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    font-size: 16px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.65;
    display: none;
  }
  .faq-item.open .faq-a { display: block; }

  /* FOR WHO */
  .for-who {
    position: relative;
    background: linear-gradient(165deg, var(--navy-1) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
    padding: 72px 24px;
    overflow: hidden;
  }
  .for-who::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(42,95,232,.4), transparent 70%);
    bottom: -240px;
    left: -160px;
    pointer-events: none;
  }
  .for-who-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
  }
  .for-who .section-label { color: rgba(255,255,255,.4); }
  .for-who .section-h2 { color: var(--white); }
  .who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .who-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background .2s, border-color .2s, transform .2s;
  }
  .who-item:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); transform: translateY(-4px); }
  .who-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    margin-top: 2px;
  }
  .who-item-text strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .who-item-text span {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
  }
  @media (max-width: 580px) {
    .who-grid { grid-template-columns: 1fr; }
  }

  /* CTA BLOCK */
  .cta-block {
    position: relative;
    background: linear-gradient(165deg, var(--navy-1) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
    color: var(--white);
    padding: 80px 24px;
    overflow: hidden;
  }
  .cta-block::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42,95,232,.35), transparent 70%);
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .cta-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
  }
  .cta-left h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
    line-height: 1.2;
    color: var(--white);
  }
  .cta-text { color: rgba(255,255,255,.72); font-size: 17px; font-weight: 300; line-height: 1.5; margin-bottom: 32px; max-width: 420px; }
  .cta-channels { display: flex; flex-direction: column; gap: 16px; }
  .cta-channel-label { display: block; font-size: 13px; font-weight: 300; color: rgba(255,255,255,.5); margin-bottom: 3px; }
  .cta-channels a { color: var(--white); font-weight: 700; font-size: 16px; text-decoration: none; transition: color .15s; }
  .cta-channels a:hover { color: var(--warm); }
  .cta-tg { color: var(--warm) !important; }

  .cta-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .cta-form-card label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
  }
  .cta-form-card input {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--white);
    margin-bottom: 16px;
    transition: border-color .15s, background .15s;
  }
  .cta-form-card input::placeholder { color: rgba(255,255,255,.35); }
  .cta-form-card input:focus {
    outline: none;
    border-color: var(--warm);
    background: rgba(255,255,255,.1);
  }
  .cta-submit {
    width: 100%;
    justify-content: center;
    background: var(--white);
    color: var(--ink);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    transition: opacity .2s, transform .15s;
  }
  .cta-submit:hover { opacity: .94; transform: translateY(-2px); }
  .cta-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.55); text-align: center; }
  @media (max-width: 760px) {
    .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  }

  .cert-group-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 32px;
    margin-bottom: 14px;
  }
  .cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cert-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .cert-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px -12px rgba(18,28,61,.16); }
  .cert-thumb {
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cert-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .cert-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
  }
  @media (max-width: 560px) {
    .cert-grid { grid-template-columns: 1fr; }
  }

  footer {
    text-align: center;
    padding: 28px;
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-mid);
    border-top: 1px solid var(--border);
  }
  footer a { color: var(--ink-mid); text-decoration: none; }
  footer a:hover { color: var(--accent); }

  @media (max-width: 640px) {
    nav { padding: 14px 16px; }
    .nav-links { display: none; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .p-step { border-right: none; border-bottom: 1px solid var(--border); }
    .p-step:last-child { border-bottom: none; }
  }

  /* FOOTER */
  .footer-inner { max-width: 820px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding: 48px 24px 36px;
    border-bottom: 1px solid var(--border);
  }
  .footer-tagline { font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.65; }
  .footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink-mid);
    margin-bottom: 12px;
  }
  .footer-contacts { display: flex; flex-direction: column; gap: 6px; }
  .footer-contacts a { font-size: 15px; font-weight: 300; color: var(--ink); text-decoration: none; }
  .footer-contacts a:hover { color: var(--accent); }
  .footer-tg { color: var(--accent) !important; font-weight: 600; margin-top: 4px; }
  .footer-requisites p { font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.7; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 13px;
    font-weight: 300;
    color: var(--ink-mid);
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-bottom a { color: var(--ink-mid); text-decoration: none; }
  .footer-bottom a:hover { color: var(--accent); }
  @media (max-width: 640px) {
    .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

/* ========================================================= */
/* BLOG: page header (banner) for archive/category/blog list  */
/* ========================================================= */
.blog-page-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--navy-1) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  padding: 64px 24px 56px;
  text-align: center;
}
.blog-page-header::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.blog-page-header-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  margin-bottom: 18px;
}
.blog-back-link:hover { color: var(--white); }
.blog-page-header h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.2;
}
.blog-page-header p.blog-page-desc {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================================= */
/* BLOG: post grid + cards                                    */
/* ========================================================= */
.blog-wrap { max-width: 1000px; margin: 0 auto; padding: 56px 24px 80px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -12px rgba(18,28,61,.18); }
.post-card-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--accent-light);
  overflow: hidden;
}
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex-grow: 1; }
.post-card-cat {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 9px;
  border-radius: 5px;
  margin-bottom: 10px;
  width: fit-content;
}
.post-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.3;
  margin-bottom: 8px;
}
.post-card-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 14px;
}
.post-card-meta {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.blog-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--ink-mid);
  font-size: 15px;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.blog-pagination a, .blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  text-decoration: none;
}
.blog-pagination a:hover { border-color: var(--accent); color: var(--accent); }
.blog-pagination .current { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }

/* ========================================================= */
/* SINGLE POST                                                 */
/* ========================================================= */
.single-post-wrap { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.single-post-thumb {
  margin: -32px 0 36px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(15,23,42,.25);
}
.single-post-thumb img { width: 100%; display: block; }
.single-post-meta {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.post-content {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.75;
}
.post-content p { margin-bottom: 20px; }
.post-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-deep);
  margin: 40px 0 16px;
  letter-spacing: -.5px;
}
.post-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 32px 0 14px;
}
.post-content ul, .post-content ol { margin: 0 0 20px 22px; }
.post-content li { margin-bottom: 8px; }
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--warm);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--ink-mid);
}
.post-content img { max-width: 100%; border-radius: var(--r); margin: 24px 0; }
.post-content strong { color: var(--ink); font-weight: 600; }

.single-post-tags { margin-top: 40px; display: flex; gap: 8px; flex-wrap: wrap; }
.single-post-tags a {
  font-size: 12.5px;
  color: var(--ink-mid);
  background: var(--bg-soft, #F3F5FA);
  border-radius: 999px;
  padding: 5px 12px;
  text-decoration: none;
}
.single-post-tags a:hover { color: var(--accent); }

.single-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  text-decoration: none;
  margin-bottom: 28px;
}
.single-post-back:hover { color: var(--accent); }

/* Inline CTA banner at end of post */
.post-cta-banner {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  padding: 32px 28px;
  border-radius: 16px;
  background: linear-gradient(165deg, var(--navy-1) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  text-align: center;
}
.post-cta-banner::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--warm-glow), transparent 70%);
  top: -140px;
  right: -100px;
  pointer-events: none;
}
.post-cta-banner h3 {
  position: relative; z-index: 1;
  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.post-cta-banner p {
  position: relative; z-index: 1;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.post-cta-banner a.hero-cta {
  position: relative; z-index: 1;
  display: inline-flex;
}

/* Generic static page (page.php) */
.static-page-wrap { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }
.static-page-wrap h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.static-page-wrap .post-content { font-size: 16px; }
