/* ── Mini grid (replaces Bootstrap) ─────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    body { margin:0; font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif; -webkit-font-smoothing:antialiased; }
    h1,h2,h3,h4,h5,h6 { margin:0 0 1rem; }
    p { margin:0 0 1rem; }
    img { max-width:100%; height:auto; }
    a { text-decoration:none; }

    .container { max-width:1140px; width:100%; margin:0 auto; padding:0 20px; }
    .row { display:flex; flex-wrap:wrap; margin:0 -12px; }
    .row > * { padding:0 12px; width:100%; min-width:0; }

    .col-6  { flex:0 0 50%; max-width:50%; }
    .col-12 { flex:0 0 100%; max-width:100%; }

    .align-items-center   { align-items:center; }
    .justify-content-center  { justify-content:center; }
    .justify-content-between { justify-content:space-between; }
    .text-center { text-align:center; }
    .h-100 { height:100%; }
    .mb-3 { margin-bottom:1rem; }
    .mb-4 { margin-bottom:1.5rem; }
    .mb-5 { margin-bottom:3rem; }

    .form-control {
      display:block; width:100%; height:44px; padding:8px 14px;
      font-size:14px; line-height:1.5; color:var(--text-body);
      background:#fff; border:1px solid var(--border); border-radius:8px;
      outline:none; font-family:inherit; transition:border-colour .15s, box-shadow .15s;
    }
    .form-control:focus { border-color:var(--accent-primary); box-shadow:0 0 0 2px rgba(43,89,195,.12); }
    .form-control::placeholder { color:var(--placeholder); }

    @media (min-width:768px) {
      .col-md   { flex:1; max-width:none; }
      .col-md-3 { flex:0 0 25%;      max-width:25%; }
      .col-md-4 { flex:0 0 33.333%;  max-width:33.333%; }
      .col-md-5 { flex:0 0 41.667%;  max-width:41.667%; }
      .col-md-6 { flex:0 0 50%;      max-width:50%; }
      .mb-md-0  { margin-bottom:0; }
    }
    @media (min-width:992px) {
      .col-lg-5 { flex:0 0 41.667%;  max-width:41.667%; }
      .col-lg-6 { flex:0 0 50%;      max-width:50%; }
      .col-lg-8 { flex:0 0 66.667%;  max-width:66.667%; }
      .offset-lg-1 { margin-left:8.333%; }
      .mb-lg-0  { margin-bottom:0; }
    }
    /* ─────────────────────────────────────────────────────────────── */
    :root {
      /* Backgrounds */
      --bg-base: #FAFBFE;
      --bg-white: #FFFFFF;
      --bg-section: #EEF4FF;
      --bg-success: #F0F7F4;
      /* Text */
      --text-heading: #1A1A2E;
      --text-body: #3D3D56;
      --text-muted: #6B7280;
      --text-inverse: #FFFFFF;
      /* CTA Buttons */
      --cta-primary-bg: #F5A623;
      --cta-primary-text: #1A1A2E;
      --cta-primary-hover: #E8951A;
      --cta-secondary-bg: #2B59C3;
      --cta-secondary-text: #FFFFFF;
      --cta-secondary-hover: #1F4AAE;
      /* Accents */
      --accent-primary: #2B59C3;
      --accent-success: #059669;
      --accent-highlight: #F5A623;
      --accent-error: #E74C3C;
      /* Utility */
      --border: #E5E7EB;
      --placeholder: #D1D5DB;
    }

    html { scroll-behavior:smooth; }
    body { color:var(--text-body); }

    /* ── Header ──────────────────────────────────────────────── */
    .lp-header {
      background: var(--bg-white);
      box-shadow: 0 1px 0 var(--border), 0 2px 20px rgba(13,27,62,0.07);
      position: sticky; top: 0; z-index: 999;
    }
    .lp-header .navbar {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: nowrap; padding: 12px 0; gap: 16px;
    }
    .lp-header .brand {
      flex-shrink: 0; line-height: 0;
    }
    .lp-header .brand img {
      height: 44px; width: auto; display: block;
    }
    .lp-header .nav-right {
      display: flex; align-items: center; gap: 12px; flex-shrink: 0;
    }

    /* Phone button — always shows full number at every screen size */
    .lp-phone-btn {
      display: inline-flex; align-items: center; gap: 7px;
      background: transparent !important; color: var(--accent-primary) !important;
      border: 2px solid var(--accent-primary); font-weight: 700; border-radius: 10px;
      padding: 9px 18px; font-size: 15px; white-space: nowrap;
      text-decoration: none !important;
      transition: background 0.2s ease, colour 0.2s ease, box-shadow 0.2s ease;
      font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    }
    .lp-phone-btn:hover {
      background: var(--accent-primary) !important; color: #fff !important;
      box-shadow: 0 4px 16px rgba(43,89,195,0.25);
      text-decoration: none !important;
    }
    .lp-header .lp-cta-btn {
      padding: 10px 22px; font-size: 15px;
    }

    /* ── Responsive header breakpoints ─────────────────────── */

    /* Tablet: keep everything, tighten spacing */
    @media (max-width: 768px) {
      .lp-header .brand img { height: 40px; }
      .lp-header .navbar { gap: 12px; }
      .lp-phone-btn { padding: 9px 14px; font-size: 14px; }
      .lp-header .lp-cta-btn { padding: 10px 16px; font-size: 14px; }
    }

    /* Mobile: keep header actions available without squeezing the number */
    @media (max-width: 639px) {
      .lp-header .lp-cta-btn { display: inline-flex !important; justify-content: center; flex: 1 1 190px; }
      .lp-header .brand img { height: 36px; }
      .lp-header .navbar { padding: 10px 0; gap: 10px; flex-wrap: wrap; }
      .lp-header .nav-right { width: 100%; flex-wrap: wrap; gap: 8px; }
      .lp-phone-btn { padding: 9px 13px; font-size: 14px; gap: 6px; flex: 0 0 auto; }
    }

    @media (max-width: 459px) {
      .lp-header .nav-right { align-items: stretch; }
      .lp-phone-btn,
      .lp-header .lp-cta-btn { width: 100%; flex: 1 1 100%; justify-content: center; }
    }

    /* Very small screens: scale logo, keep number text always visible */
    @media (max-width: 374px) {
      .lp-header .brand img { height: 30px; }
      .lp-phone-btn { padding: 8px 10px; font-size: 13px; gap: 5px; }
      .lp-phone-btn .ic { display: none; } /* drop phone icon only — number stays */
    }

    /* CTA button variants */
    .lp-btn-primary {
      background:var(--cta-primary-bg) !important; color:var(--cta-primary-text) !important;
      border:none; font-weight:600; border-radius:8px; padding:14px 32px; font-size:16px;
      display:inline-block; text-align:center !important; justify-content:center !important;
      align-items:center !important; text-decoration:none !important; transition:background 0.2s;
    }
    .lp-btn-primary:hover { background:var(--cta-primary-hover) !important; color:var(--cta-primary-text) !important; text-decoration:none !important; }
    .lp-btn-secondary {
      background:var(--cta-secondary-bg) !important; color:var(--cta-secondary-text) !important;
      border:none; font-weight:600; border-radius:8px; padding:14px 32px; font-size:16px;
      display:inline-block; text-align:center !important; justify-content:center !important;
      align-items:center !important; text-decoration:none !important; transition:background 0.2s;
    }
    .lp-btn-secondary:hover { background:var(--cta-secondary-hover) !important; color:var(--cta-secondary-text) !important; text-decoration:none !important; }

    /* Review badge — pill radius, Trustpilot green stars */
    .lp-review-proof {
      display:inline-flex; align-items:center; gap:14px; flex-wrap:wrap;
      margin-bottom:24px;
    }
    .lp-review-badge {
      display:inline-flex; align-items:center; gap:8px;
      background:var(--bg-white); border:1px solid rgba(0,182,122,0.22); border-radius:10px;
      padding:7px 18px 7px 8px;
      box-shadow:0 2px 12px rgba(0,0,0,0.07);
    }
    .lp-review-badge .lp-badge-stars { color:#00B67A; font-size:13px; letter-spacing:0.5px; line-height:1; }
    .lp-review-badge .lp-badge-text { font-size:13.5px; font-weight:600; color:var(--text-heading); }
    .lp-trustpilot-logo {
      height: 34px; width: auto; display: block;
    }

    /* Hero */
    .lp-hero-section {
      background: linear-gradient(150deg, #f0f4ff 0%, #fafbfe 55%, #f0f7f4 100%);
    }
    .lp-hero-section h1 { color:var(--text-heading); font-weight:800; line-height:1.2; margin-bottom:16px; }
    .lp-hero-section .lp-hero-sub { font-size:18px; color:var(--text-body); margin-bottom:28px; line-height:1.65; }

    /* Gradient text on H1 highlight */
    .gradiant_text {
      background: linear-gradient(135deg, var(--accent-primary) 0%, #5B8DEF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Bullet list */
    .object_list { list-style:none; padding:0; margin:0 0 32px; }
    .object_list li { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
    .object_list li span {
      flex-shrink:0;
      width:22px; height:22px;
      background:rgba(5,150,105,0.1); border-radius:6px;
      display:inline-flex; align-items:center; justify-content:center;
    }
    .object_list li p { margin:0; font-size:15px; color:var(--text-body); line-height:1.5; font-weight:500; }

    /* Hero form card */
    .lp-form-card {
      background:var(--bg-white); border-radius:16px; padding:0; overflow:hidden;
      box-shadow:0 16px 48px rgba(26,26,46,0.16);
    }
    .lp-form-card-header {
      background:var(--text-heading); padding:22px 28px 18px; text-align:center;
    }
    .lp-form-card-header h5 {
      color:#fff; font-weight:800; font-size:19px; margin:0 0 10px;
    }
    .lp-form-value-badge {
      display:inline-block; background:var(--accent-highlight); color:var(--text-heading);
      font-size:11px; font-weight:800; border-radius:20px; padding:4px 14px;
      text-transform:uppercase; letter-spacing:0.6px;
    }
    .lp-form-body { padding:20px 24px 24px; }
    .lp-form-label {
      display:block; font-size:11px; font-weight:700; color:var(--text-muted);
      text-transform:uppercase; letter-spacing:0.5px; margin-bottom:4px; margin-top:10px;
    }
    .lp-form-label:first-child { margin-top:0; }
    .lp-form-card .form-control {
      height:44px; font-size:14px; border-radius:8px; margin-bottom:0;
      border:1px solid var(--border); color:var(--text-body);
    }
    .lp-form-card .form-control::placeholder { color:var(--placeholder); }
    .lp-form-card .form-control:focus {
      border-color:var(--accent-primary); box-shadow:0 0 0 2px rgba(43,89,195,0.12);
    }
    .lp-form-card .lp-btn-primary {
      width:100%; padding:15px; min-height:52px; font-size:16px;
      display:flex; align-items:center; justify-content:center; gap:8px;
    }
    .lp-form-trust-row {
      display:flex; justify-content:space-between; gap:6px; margin-top:14px;
    }
    .lp-form-trust-item {
      flex:1; text-align:center; font-size:11px; font-weight:600;
      color:var(--text-muted); display:flex; flex-direction:column; align-items:center; gap:3px;
    }
    /* Inline SVG icon base */
    .ic { display:inline-block; vertical-align:middle; fill:currentColor; flex-shrink:0; width:1em; height:1em; }

    .lp-form-trust-item .ic { width:13px; height:13px; color:var(--accent-success); }
    .lp-form-trust-item i { font-size:13px; color:var(--accent-success); }

    /* Trust bar */
    .lp-trust-section { background:var(--bg-white); padding:48px 0; }
    .lp-trust-title { font-weight:800; margin-bottom:24px; color:var(--text-heading); }
    .lp-trust-logos { display:flex; align-items:center; justify-content:center; gap:40px; flex-wrap:wrap; }
    .lp-trust-logos img { width:150px; height:auto; opacity:0.85; object-fit:contain; }

    /* Problem section — Variation A "The Calculation" */
    .lp-problem { background:var(--bg-base); padding:72px 0; }
    .lp-problem .lp-problem-eyebrow {
      display:inline-block; font-size:11px; font-weight:700; text-transform:uppercase;
      letter-spacing:2px; color:var(--accent-primary); margin-bottom:16px;
    }
    .lp-problem h2 { color:var(--text-heading); font-weight:800; margin-bottom:40px; font-size:2rem; line-height:1.1; max-width:680px; letter-spacing:-0.03em; }
    .lp-prob-calc {
      background:var(--text-heading); border-radius:20px; padding:48px;
      margin-bottom:32px; display:flex; flex-direction:column; align-items:center; text-align:center;
    }
    .lp-prob-equation { display:flex; align-items:center; gap:16px; margin-bottom:24px; flex-wrap:wrap; justify-content:center; }
    .lp-prob-eq-item { display:flex; flex-direction:column; align-items:center; }
    .lp-prob-eq-num { font-family:'Fraunces',Georgia,serif; font-size:52px; font-weight:900; letter-spacing:-0.04em; line-height:1; color:rgba(255,255,255,0.85); }
    .lp-prob-eq-unit { font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.8px; color:rgba(255,255,255,0.35); margin-top:6px; }
    .lp-prob-eq-op { font-family:'Fraunces',Georgia,serif; font-size:36px; font-weight:300; color:rgba(255,255,255,0.25); margin-top:-12px; }
    .lp-prob-result { font-family:'Fraunces',Georgia,serif; font-size:72px; font-weight:900; letter-spacing:-0.05em; line-height:1; color:var(--accent-highlight); }
    .lp-prob-result-unit { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.8px; color:rgba(245,166,35,0.7); margin-top:6px; }
    .lp-prob-caption { font-size:16px; font-weight:500; color:rgba(255,255,255,0.6); max-width:520px; line-height:1.6; margin:0; }
    .lp-prob-caption strong { color:rgba(255,255,255,0.9); }
    .lp-problem-cols { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:32px; }
    .lp-problem-col {
      background:var(--bg-white); border-radius:16px; padding:32px;
      box-shadow:0 2px 16px rgba(0,0,0,0.05); position:relative; overflow:hidden;
    }
    .lp-problem-col::before {
      content:'\201C'; position:absolute; top:12px; right:16px;
      font-family:'Fraunces',Georgia,serif; font-size:72px;
      color:rgba(43,89,195,0.06); line-height:1; pointer-events:none;
    }
    .lp-problem-col-label {
      display:inline-flex; align-items:center; gap:6px;
      background:#EEF2FF; border-radius:100px; padding:5px 14px 5px 10px;
      font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px;
      color:var(--accent-primary); margin-bottom:16px;
    }
    .lp-problem-col-label .ic { width:12px; height:12px; }
    .lp-problem-col h4 { font-size:17px; font-weight:700; color:var(--text-heading); margin-bottom:10px; }
    .lp-problem-col p { color:var(--text-body); font-size:15px; line-height:1.75; margin:0; }
    .lp-prob-close { font-size:17px; font-weight:600; color:var(--text-heading); line-height:1.6; text-align:center; margin-bottom:28px; }
    .lp-prob-close em { font-style:italic; font-family:'Fraunces',Georgia,serif; color:var(--accent-primary); }
    @media (max-width:767.98px) {
      .lp-problem-cols { grid-template-columns:1fr; gap:16px; }
      .lp-prob-calc { padding:32px 20px; }
      .lp-prob-eq-num { font-size:36px; }
      .lp-prob-result { font-size:52px; }
      .lp-prob-eq-op { font-size:24px; }
    }

    /* Solution section — Variation A */
    .lp-solution { background:var(--bg-base); padding:80px 0; }
    .lp-solution-layout {
      display:grid;
      grid-template-columns:340px 1fr;
      gap:72px;
      align-items:start;
    }
    .lp-solution-rail {
      position:sticky;
      top:96px;
    }
    .lp-solution-eyebrow {
      font-size:11px; font-weight:700; text-transform:uppercase;
      letter-spacing:2px; color:var(--accent-primary); margin-bottom:16px;
    }
    .lp-solution-rail h2 {
      color:var(--text-heading); font-weight:800; margin:0 0 20px;
      font-size:clamp(1.8rem, 2.8vw, 2.3rem); line-height:1.1;
      letter-spacing:-0.03em;
    }
    .lp-solution-intro {
      color:var(--text-body); font-size:15px; font-weight:500;
      line-height:1.75; margin:0 0 32px;
    }
    .lp-solution-trust-list {
      list-style:none; padding:0; margin:0 0 36px;
      display:flex; flex-direction:column; gap:10px;
    }
    .lp-solution-trust-list li {
      display:flex; align-items:center; gap:10px;
      font-size:13px; font-weight:600; color:var(--text-heading);
    }
    .lp-solution-check {
      width:20px; height:20px; border-radius:50%;
      background:rgba(5,150,105,0.10);
      display:flex; align-items:center; justify-content:center;
      flex-shrink:0;
    }
    .lp-solution-check .ic { width:11px; height:11px; color:var(--accent-success); }
    .lp-solution-features {
      display:flex; flex-direction:column;
    }
    .lp-solution-feature {
      padding:32px 0;
      border-bottom:1px solid var(--border);
      display:grid;
      grid-template-columns:56px 1fr;
      gap:24px;
      align-items:start;
    }
    .lp-solution-feature:first-child { padding-top:0; }
    .lp-solution-feature:last-child { border-bottom:none; padding-bottom:0; }
    .lp-solution-num {
      font-size:40px; font-weight:900; line-height:1;
      letter-spacing:-0.04em; color:rgba(13,27,62,0.10);
      padding-top:2px; transition:colour 0.2s ease;
    }
    .lp-solution-feature:hover .lp-solution-num { color:var(--accent-highlight); }
    .lp-solution-feature h4 {
      color:var(--text-heading); font-weight:700; margin:0 0 10px;
      font-size:20px; line-height:1.25; letter-spacing:-0.02em;
      transition:colour 0.2s ease;
    }
    .lp-solution-feature:hover h4 { color:var(--accent-primary); }
    .lp-solution-feature p {
      color:var(--text-body); font-size:15px; font-weight:500;
      line-height:1.75; margin:0;
    }

    /* ── Stats — dark authority strip ──────────────────────── */
    .lp-stats {
      background: var(--text-heading);
      border-top: 3px solid var(--accent-highlight);
      padding: 0; /* padding lives on cells */
    }
    .lp-stats-row {
      display: flex;
      align-items: stretch;
    }
    .lp-stat-cell {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 28px 16px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .lp-stat-cell:last-child { border-right: none; }
    .lp-stat-num {
      font-size: 36px; font-weight: 800;
      color: #fff; margin-bottom: 6px; line-height: 1;
    }
    .lp-stat-chip {
      font-size: 12.5px; font-weight: 700;
      color: rgba(255,255,255,0.88);
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 6px 14px; margin-bottom: 8px;
      line-height: 1.3; white-space: nowrap;
    }
    .lp-stat-label {
      font-size: 11px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.6px;
      color: rgba(255,255,255,0.38); line-height: 1.4;
    }
    /* TP cell — wider, left-bordered */
    .lp-stat-cell-tp {
      flex: 1.2;
      border-right: none;
      border-left: 1px solid rgba(255,255,255,0.08);
    }
    .lp-stat-tp-row {
      display: flex; align-items: center; gap: 8px;
      justify-content: center; margin-bottom: 4px;
    }
    .lp-stat-tp-score {
      font-size: 32px; font-weight: 800;
      color: #00B67A; letter-spacing: -0.03em; line-height: 1;
    }
    .lp-stat-tp-stars {
      color: #00B67A; font-size: 15px;
      letter-spacing: 1.5px; margin-bottom: 4px;
    }
    /* Mobile: wrap to 2-column grid */
    @media (max-width: 767px) {
      .lp-stats { padding: 0; }
      .lp-stats-row { flex-wrap: wrap; }
      .lp-stat-cell {
        flex: 0 0 50%; max-width: 50%;
        padding: 20px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }
      .lp-stat-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
      .lp-stat-cell-tp {
        flex: 0 0 100%; max-width: 100%;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-bottom: none;
        padding: 22px 16px;
      }
      .lp-stat-num { font-size: 28px; }
      .lp-stat-chip { font-size: 11px; padding: 5px 10px; white-space: normal; }
    }

    /* Section spacing & titles */
    .lp-section-white { padding:60px 0; background:var(--bg-white); }
    .lp-section-tinted { padding:60px 0; background:var(--bg-section); }
    .lp-section-title { font-weight:800; margin-bottom:12px; color:var(--text-heading); }
    .lp-section-sub { color:var(--text-muted); margin-bottom:36px; font-size:16px; }

    /* Steps */
    .lp-step { text-align:center; padding:20px 15px; }
    .lp-step-num {
      width:56px; height:56px; border-radius:50%;
      background:linear-gradient(135deg, var(--accent-highlight), #FFD666);
      color:var(--text-heading); font-weight:800; font-size:22px;
      display:inline-flex; align-items:center; justify-content:center; margin-bottom:14px;
    }
    .lp-step h5 { font-weight:700; margin-bottom:8px; color:var(--text-heading); }
    .lp-step p { color:var(--text-body); }

    /* Subject pills */
    .lp-subjects { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
    .lp-pill {
      background:var(--bg-white); border:1px solid var(--border); border-radius:24px;
      padding:10px 22px; font-weight:600; font-size:14px; color:var(--text-heading);
    }

    /* Why cards */
    .lp-why-card {
      text-align:center; padding:28px 20px; border-radius:12px;
      background:var(--bg-white); box-shadow:0 2px 12px rgba(0,0,0,0.05); height:100%;
      display:flex; flex-direction:column; align-items:center;
    }
    .lp-why-card h5 { font-weight:700; margin:12px 0 8px; color:var(--text-heading); }
    .lp-why-card p { flex:1; color:var(--text-body); }
    .lp-why-icon {
      width:52px; height:52px; border-radius:50%;
      background:linear-gradient(135deg, var(--accent-highlight), #FFD666);
      display:inline-flex; align-items:center; justify-content:center;
      flex-shrink:0;
    }
    .lp-why-icon .ic { width:22px; height:22px; color:var(--text-heading); }
    .lp-why-icon i { font-size:22px; color:var(--text-heading); }

    /* Testimonials */
    /* Review marquee */
    .lp-rv-wrap { overflow:hidden; margin:0 -20px; }
    .lp-rv-track { display:flex; gap:16px; width:max-content; padding:0 8px; }
    .lp-rv-track-fwd { animation:rvScroll 80s linear infinite; }
    .lp-rv-track-rev { animation:rvScroll 80s linear infinite reverse; }
    .lp-rv-wrap:hover .lp-rv-track { animation-play-state:paused; }
    @keyframes rvScroll {
      0%   { transform:translateX(0); }
      100% { transform:translateX(-50%); }
    }
    .lp-rv-card {
      background:var(--bg-white); border-radius:12px; padding:20px 18px;
      box-shadow:0 2px 12px rgba(0,0,0,0.05); border-left:4px solid var(--accent-highlight);
      width:280px; flex-shrink:0; text-align:left;
    }
    .lp-rv-card p { font-style:italic; font-size:14px; line-height:1.6; color:var(--text-body); margin-bottom:10px; }
    .lp-rv-card .lp-author { font-weight:700; font-size:13px; color:var(--text-heading); }
    .lp-rv-card .lp-badge { font-size:12px; color:var(--text-muted); margin-top:4px; }
    .lp-stars { color:var(--accent-highlight); font-size:14px; margin-bottom:8px; }

    /* FAQ */
    .lp-faq details { border-bottom:1px solid var(--border); }
    .lp-faq summary { font-size:16px; font-weight:600; padding:18px 20px; cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center; color:var(--text-heading); }
    .lp-faq summary::-webkit-details-marker { display:none; }
    .lp-faq summary::after { content:'+'; font-size:22px; font-weight:300; color:var(--text-muted); flex-shrink:0; }
    .lp-faq details[open] summary::after { content:'\2212'; }
    .lp-faq .faq-body { padding:0 20px 18px; color:var(--text-body); line-height:1.7; }

    /* Final CTA */
    .lp-final-cta {
      background:linear-gradient(135deg, var(--text-heading) 0%, var(--accent-primary) 100%);
      color:var(--text-inverse); padding:60px 0; text-align:center;
    }
    .lp-final-cta h2 { color:var(--text-inverse); font-weight:800; margin-bottom:12px; }
    .lp-final-cta p { color:rgba(255,255,255,0.85); margin-bottom:24px; font-size:17px; }

    /* Standalone CTA buttons - always centred */
    .lp-cta-wrap { text-align:center; }
    .lp-cta-note { margin-top: 12px; font-size: 13px; line-height: 1.6; color: var(--text-muted); }
    .lp-cta-note-dark { color: rgba(255,255,255,0.72); }

    /* Footer */
    .lp-footer { text-align:center; padding:24px 0; background:var(--text-heading); color:rgba(255,255,255,0.7); font-size:14px; margin-bottom:0; }
    .lp-footer p { margin-bottom:0; }



    /* Tutor profile cards */
    .lp-tutor-card {
      text-align:center; padding:24px 16px; border-radius:12px;
      background:var(--bg-white); box-shadow:0 2px 12px rgba(0,0,0,0.05); height:100%;
    }
    .lp-tutor-img {
      width:96px; height:96px; border-radius:50%; object-fit:cover;
      margin-bottom:14px; border:3px solid var(--bg-section);
    }
    .lp-tutor-name { font-weight:700; font-size:16px; color:var(--text-heading); margin-bottom:2px; }
    .lp-tutor-subject { font-size:14px; color:var(--accent-primary); font-weight:600; margin-bottom:4px; }
    .lp-tutor-uni { font-size:13px; color:var(--text-muted); margin-bottom:8px; }
    .lp-tutor-exp {
      display:inline-block; background:var(--bg-success); color:var(--accent-success);
      font-size:12px; font-weight:600; border-radius:20px; padding:3px 12px;
    }

    /* Form guarantee note */
    .lp-form-guarantee { display:flex; align-items:center; justify-content:center; gap:6px; margin-top:12px; font-size:13px; color:var(--text-muted); }
    .lp-form-guarantee i { color:var(--accent-success); font-size:14px; }

    /* Form validation errors */
    label.error { color:var(--accent-error); font-size:13px; margin-top:-8px; margin-bottom:8px; display:block; }

    /* ATAR ticker */
    .lp-atar-strip { background:var(--text-heading); padding:18px 0; overflow:hidden; border-top:3px solid var(--accent-highlight); }
    .lp-atar-track { display:flex; gap:0; animation:lp-scroll 40s linear infinite; width:max-content; }
    .lp-atar-track:hover { animation-play-state:paused; }
    .lp-atar-item { display:inline-flex; align-items:center; gap:10px; padding:0 32px; white-space:nowrap; color:rgba(255,255,255,0.7); font-size:13px; font-weight:500; border-right:1px solid rgba(255,255,255,0.1); }
    .lp-atar-score { background:var(--accent-highlight); color:var(--text-heading); font-weight:800; font-size:14px; border-radius:6px; padding:3px 10px; }
    .lp-atar-name { color:#fff; font-weight:600; }
    @keyframes lp-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

    /* Session reel — Variation B */
    .lp-video-reel { overflow:hidden; }
    .lp-reel-head { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:32px; }
    .lp-reel-eyebrow { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:2px; color:var(--accent-primary); margin-bottom:10px; }
    .lp-reel-arrows { display:flex; gap:8px; padding-bottom:4px; }
    .lp-reel-arrow {
      width:40px; height:40px; border-radius:50%; flex-shrink:0;
      background:#fff; border:1.5px solid #E5E7EB;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer; color:var(--text-heading);
      transition:background 0.15s, border-colour 0.15s, transform 0.15s;
    }
    .lp-reel-arrow:hover { background:var(--text-heading); border-color:var(--text-heading); color:#fff; transform:scale(1.05); }
    .lp-reel-arrow svg { width:18px; height:18px; }
    .lp-reel-wrap {
      overflow-x:auto; scroll-behavior:smooth;
      scrollbar-width:none; -ms-overflow-style:none;
      cursor:grab; padding-bottom:4px;
    }
    .lp-reel-wrap::-webkit-scrollbar { display:none; }
    .lp-reel-wrap.ks-dragging { cursor:grabbing; scroll-behavior:auto; }
    .lp-reel-track {
      display:flex; gap:16px; width:max-content;
      padding: 4px max(28px, calc((100vw - 1100px) / 2 + 28px)) 8px;
    }
    .lp-reel-card {
      width:280px; flex-shrink:0; border-radius:16px; overflow:hidden;
      background:var(--bg-white); border:1px solid #E5E7EB;
      box-shadow:0 2px 12px rgba(13,27,62,0.07);
      transition:box-shadow 0.25s, transform 0.25s; position:relative; cursor:pointer;
    }
    .lp-reel-card:hover { box-shadow:0 12px 36px rgba(13,27,62,0.14); transform:translateY(-4px); }
    .lp-reel-card video { width:100%; display:block; height:175px; object-fit:cover; background:var(--text-heading); }
    .lp-reel-card-body { padding:14px 16px 16px; }
    .lp-reel-tag {
      display:inline-flex; align-items:center; gap:5px;
      border-radius:100px; padding:4px 10px;
      font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; margin-bottom:8px;
    }
    .lp-reel-tag svg { width:10px; height:10px; }
    .lp-reel-tag-maths   { background:#FEF3C7; color:#92400E; }
    .lp-reel-tag-science { background:#ECFDF5; color:#065F46; }
    .lp-reel-tag-english { background:#EEF2FF; color:#3730A3; }
    .lp-reel-tag-code    { background:#F5F3FF; color:#5B21B6; }
    .lp-reel-title { font-family:'Fraunces',Georgia,serif; font-size:16px; font-weight:700; color:var(--text-heading); letter-spacing:-0.02em; margin:0; line-height:1.3; }
    .lp-reel-play-overlay {
      position:absolute; top:0; left:0; right:0; height:175px;
      display:flex; align-items:center; justify-content:center;
      background:rgba(13,27,62,0); transition:background 0.2s; pointer-events:none;
    }
    .lp-reel-card:hover .lp-reel-play-overlay { background:rgba(13,27,62,0.25); }
    .lp-reel-play-btn {
      width:48px; height:48px; border-radius:50%; background:var(--accent-highlight);
      display:flex; align-items:center; justify-content:center;
      opacity:0; transform:scale(0.7);
      transition:opacity 0.2s, transform 0.25s cubic-bezier(0.22,1,0.36,1);
      box-shadow:0 4px 24px rgba(245,166,35,0.6);
    }
    .lp-reel-play-btn svg { width:18px; height:18px; fill:var(--text-heading); margin-left:3px; }
    .lp-reel-card:hover .lp-reel-play-btn { opacity:1; transform:scale(1); }

    /* Trustpilot badge in stats */
    .lp-tp-stat { display:flex; flex-direction:column; align-items:center; }
    .lp-tp-stars { color:#00B67A; font-size:13px; letter-spacing:1px; margin:4px 0 2px; }
    .lp-tp-label { font-size:11px; color:var(--text-muted); font-weight:600; }

    /* Mobile */
    @media (max-width:767.98px) {
      .lp-section-white, .lp-section-tinted { padding:40px 0; }
      .lp-problem, .lp-solution, .lp-stats { padding:40px 0; }
      .lp-final-cta { padding:40px 0; }
      .lp-section-title { font-size:24px; }
      .lp-section-sub { margin-bottom:24px; }
      .lp-step { padding:8px 15px; }
      .lp-trust-logos { display:grid; grid-template-columns:1fr 1fr; gap:16px; justify-items:center; }
      .lp-trust-logos img { width:120px; }
      .lp-why-col { flex:0 0 100%; max-width:100%; }
      .lp-solution { padding:40px 0; }
      .lp-solution-layout { grid-template-columns:1fr; gap:40px; }
      .lp-solution-rail { position:static; top:auto; }
      .lp-solution-feature { grid-template-columns:48px 1fr; gap:18px; padding:24px 0; }
      .lp-solution-num { font-size:34px; }
      /* stats mobile handled in .lp-stats block */
      .lp-review-badge { flex-wrap:wrap; justify-content:center; padding:8px 14px; gap:6px; }
      .lp-trust-badges { gap:16px; }
      .lp-trust-badge-item { font-size:13px; }
    }

/* ═══════════════════════════════════════════════════════════════
   KASSOOM DESIGN ELEVATION — v2.0
   Typography, colour depth, motion & micro-refinements
═══════════════════════════════════════════════════════════════ */

/* ── Typography system ──────────────────────────────────────── */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
}

/* ── Design token overrides ─────────────────────────────────── */
:root {
  --bg-base:    #F7F9FF;
  --bg-section: #EEF2FF;
  --bg-success: #ECFDF5;
  --text-heading: #0D1B3E;
  --accent-success: #059669;
}

/* ── Global letter-spacing ──────────────────────────────────── */
h1 { letter-spacing: -0.03em; }
h2 { letter-spacing: -0.025em; }
h3, h4, h5, h6 { letter-spacing: -0.02em; }
p, li, label { letter-spacing: -0.01em; }

/* ── Buttons ────────────────────────────────────────────────── */
.lp-btn-primary {
  border-radius: 10px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 2px 0 rgba(0,0,0,0.14), 0 4px 16px rgba(245,166,35,0.28) !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease !important;
  transform: translateY(0);
}
.lp-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 0 rgba(0,0,0,0.10), 0 12px 28px rgba(245,166,35,0.32) !important;
}
.lp-btn-primary:active {
  transform: translateY(1px) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.14) !important;
}
.lp-btn-secondary {
  border-radius: 10px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 2px 0 rgba(0,0,0,0.18), 0 4px 16px rgba(43,89,195,0.22) !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease !important;
}
.lp-btn-secondary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 0 rgba(0,0,0,0.14), 0 12px 28px rgba(43,89,195,0.28) !important;
}

/* ── Hero section ───────────────────────────────────────────── */
.lp-hero-section {
  background: linear-gradient(150deg, #EEF2FF 0%, #F7F9FF 55%, #ECFDF5 100%);
  position: relative;
  overflow: hidden;
}
.lp-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(43,89,195,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.lp-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58vw, 820px);
  background-image:
    linear-gradient(90deg, rgba(247,249,255,0.92) 0%, rgba(247,249,255,0.52) 26%, rgba(247,249,255,0.06) 58%),
    url('images/hero.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.45) 24%, #000 52%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.45) 24%, #000 52%);
}

/* Hero inner — padding lives here, not inline */
.lp-hero-inner {
  position: relative;
  z-index: 1;
  padding: 56px 0 68px;
}
@media (max-width: 991px) { .lp-hero-inner { padding: 44px 0 52px; } }
@media (max-width: 991px) {
  .lp-hero-section::after {
    width: 100%;
    opacity: 0.22;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
  }
}
@media (max-width: 639px) { .lp-hero-inner { padding: 36px 0 44px; } }

.lp-hero-section h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
}
.lp-hero-section .lp-hero-sub {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 28px;
}
.gradiant_text {
  background: linear-gradient(135deg, #1E3A8A 0%, #2B59C3 55%, #5B8DEF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Review badge — radius system: pills = 100px ────────────── */
.lp-review-badge {
  border-radius: 100px;           /* pill — consistent with value badge */
  border-color: rgba(0,182,122,0.22); /* TP green tint — intentional */
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(13,27,62,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
}

/* ── Hero form card ─────────────────────────────────────────── */
.lp-form-card {
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(13,27,62,0.18), 0 8px 24px rgba(13,27,62,0.08);
  border: 1px solid rgba(13,27,62,0.06);
}
.lp-form-card-header {
  background: linear-gradient(135deg, #0D1B3E 0%, #1E3A8A 100%);
  padding: 24px 28px 20px;
}
.lp-form-card-header h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lp-form-value-badge {
  border-radius: 100px;
  font-size: 10.5px;
  letter-spacing: 0.8px;
  padding: 5px 16px;
}
.lp-form-card .form-control {
  border-radius: 10px;
  height: 46px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.lp-form-card .lp-btn-primary {
  height: 54px !important;
  min-height: 54px !important;
  font-size: 16px !important;
  margin-top: 18px !important;
}
.lp-hero-signup-card {
  position: relative;
  z-index: 1;
  margin-top:150px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(255,255,255,0.46);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 24px 64px rgba(13,27,62,0.18), 0 8px 24px rgba(13,27,62,0.08);
  backdrop-filter: blur(8px);
}
@media (max-width: 991px) {
  .lp-hero-signup-card {
    margin-top: 28px;
  }
}
.lp-hero-signup-kicker {
  display: inline-block;
  background: var(--accent-highlight);
  color: var(--text-heading);
  font-size: 11px;
  font-weight: 800;
  border-radius: 100px;
  padding: 5px 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 14px;
}
.lp-hero-signup-card h3 {
  color: var(--text-heading);
  font-size: 25px;
  line-height: 1.18;
  margin-bottom: 12px;
}
.lp-hero-signup-card p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.lp-hero-signup-card .lp-open-form {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  justify-content: center;
}
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.lp-modal.is-open {
  display: flex;
}
.lp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,0.62);
  backdrop-filter: blur(8px);
}
.lp-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 44px);
  overflow: auto;
}
.lp-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lp-modal-close:hover {
  background: rgba(255,255,255,0.24);
}
body.lp-modal-open {
  overflow: hidden;
}

/* ── Stats ──────────────────────────────────────────────────── */
.lp-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;           /* white on dark navy background */
  line-height: 1;
}
.lp-stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lp-stat-tp-score {
  font-family: 'Fraunces', Georgia, serif;
}

/* ── Problem section ────────────────────────────────────────── */
.lp-problem h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.lp-problem-col {
  border: 1px solid rgba(43,89,195,0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.lp-problem-col:hover {
  box-shadow: 0 10px 36px rgba(13,27,62,0.10);
  transform: translateY(-3px);
}
.lp-problem-col h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* ── Section title ──────────────────────────────────────────── */
.lp-section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.15;
}

/* ── Solution section — Variation A refinements ───────────────── */
.lp-solution {
  background: var(--bg-base);
}
.lp-solution-rail {
  top: 88px;
}
.lp-solution-num {
  font-family: 'Fraunces', Georgia, serif;
}
.lp-solution-feature {
  transition: background 0.2s ease;
}

/* ── ATAR ticker ────────────────────────────────────────────── */
.lp-atar-strip {
  background: linear-gradient(90deg, #0D1B3E 0%, #1E3A8A 50%, #0D1B3E 100%);
}
.lp-atar-score { border-radius: 8px; }
.lp-atar-icon { color: var(--accent-highlight); }

/* ── Steps ──────────────────────────────────────────────────── */
.lp-step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  width: 62px;
  height: 62px;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
  border-radius: 50%;
}
.lp-step h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* ── Why cards ──────────────────────────────────────────────── */
.lp-why-card {
  border-radius: 16px;
  border: 1px solid rgba(43,89,195,0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.lp-why-card:hover {
  box-shadow: 0 12px 40px rgba(13,27,62,0.10);
  transform: translateY(-4px);
}
.lp-why-card h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.lp-why-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(245,166,35,0.32);
}

/* ── Review cards ───────────────────────────────────────────── */
.lp-rv-card {
  border-radius: 16px;
  border: 1px solid rgba(43,89,195,0.08);
  border-left: none;
  box-shadow: 0 2px 12px rgba(13,27,62,0.06);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}
.lp-rv-card::before {
  content: '\201C';
  position: absolute;
  top: -14px;
  right: 14px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 96px;
  color: rgba(43,89,195,0.07);
  line-height: 1;
  pointer-events: none;
}
.lp-rv-card p {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-body);
  position: relative;
  z-index: 1;
}
.lp-rv-card .lp-author {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.lp-stars { font-size: 13px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.lp-faq summary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 20px 20px;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, colour 0.15s ease;
}
.lp-faq summary:hover { background: rgba(43,89,195,0.04); }
.lp-faq details[open] > summary { color: var(--accent-primary); }
.lp-faq .faq-body {
  padding: 0 20px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

/* ── Final CTA ──────────────────────────────────────────────── */
.lp-final-cta {
  background: linear-gradient(135deg, #0D1B3E 0%, #1E3A8A 60%, #2B59C3 100%);
  position: relative;
  overflow: hidden;
}
.lp-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.lp-final-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
}

/* ── Tutor cards ────────────────────────────────────────────── */
.lp-tutor-card {
  border-radius: 16px;
  border: 1px solid rgba(43,89,195,0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.lp-tutor-card:hover {
  box-shadow: 0 12px 40px rgba(13,27,62,0.10);
  transform: translateY(-4px);
}
.lp-tutor-img {
  border: 3px solid rgba(43,89,195,0.12);
  box-shadow: 0 4px 16px rgba(13,27,62,0.10);
}
.lp-tutor-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  letter-spacing: -0.02em;
}

/* ── Video reel head title ───────────────────────────────────── */
.lp-video-reel .lp-section-title { margin: 0; }

/* ── Trustpilot stat number ─────────────────────────────────── */
.lp-tp-stat [style*="font-size:32px"] {
  font-family: 'Fraunces', Georgia, serif !important;
  letter-spacing: -0.03em;
}

/* ── Scroll reveal animations ───────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .ks-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .ks-reveal.ks-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .ks-reveal-delay-1 { transition-delay: 0.08s; }
  .ks-reveal-delay-2 { transition-delay: 0.16s; }
  .ks-reveal-delay-3 { transition-delay: 0.24s; }
}

/* HTML/CSS split utility classes */
.gtm-noscript-frame {
  display: none;
  visibility: hidden;
}

.lp-form-success-message {
  display: none;
  text-align: center;
  padding: 52px 32px;
  background: linear-gradient(150deg, #EEF2FF 0%, #F7F9FF 55%, #ECFDF5 100%);
}
.lp-form-success-icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lp-form-success-icon img {
  width: 74px;
  height: 74px;
  display: block;
  object-fit: contain;
}
.lp-form-success-title {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-heading);
}
.lp-form-success-copy {
  color: var(--text-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  margin: 0;
}
.lp-coupon-feedback {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-success);
}
.lp-coupon-feedback:empty {
  display: none;
}
.lp-form-submit {
  margin-top: 16px;
}
.lp-prob-result-unit-inline {
  font-size: 0.55em;
  letter-spacing: 0;
}
.lp-cta-wrap-lg {
  margin-top: 32px;
}
.lp-cta-wrap-md {
  margin-top: 24px;
}
.lp-rv-wrap-spaced {
  margin-bottom: 16px;
}
.lp-section-spacer {
  margin-top: 32px;
}

.lp-mid-cta {
  background: var(--text-heading);
  padding: 72px 0;
}
.lp-mid-cta-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--accent-highlight);
  margin-bottom: 14px;
}
.lp-mid-cta-title {
  color: #fff;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.lp-mid-cta-copy {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.lp-mid-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.lp-mid-cta-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 16px;
}
.lp-mid-cta-list-item-last {
  margin-bottom: 0;
}
.lp-mid-cta-check {
  width: 24px;
  height: 24px;
  background: var(--accent-highlight);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-mid-cta-check-icon {
  font-size: 11px;
  color: var(--text-heading);
}
.lp-mid-cta-button {
  font-size: 17px;
  padding: 16px 36px;
}
.lp-mid-cta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px;
}
.lp-mid-cta-card-head {
  text-align: center;
  margin-bottom: 28px;
}
.lp-mid-cta-card-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--accent-highlight);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.lp-mid-cta-card-icon {
  font-size: 26px;
  color: var(--text-heading);
}
.lp-mid-cta-card-title {
  color: #fff;
  font-weight: 800;
  margin-bottom: 6px;
}
.lp-mid-cta-card-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin: 0;
}
.lp-mid-cta-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-mid-cta-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lp-mid-cta-feature-icon {
  color: var(--accent-highlight);
  margin-top: 3px;
  flex-shrink: 0;
}
.lp-mid-cta-feature-title {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}
.lp-mid-cta-feature-copy {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

.lp-review-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.lp-review-proof .lp-review-badge {
  border-radius: 10px;
  margin-bottom: 0;
}
.lp-review-proof .lp-trustpilot-logo {
  height: 34px;
  width: auto;
  display: block;
}

/* Local SVG icon files */
.icon-img {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: middle;
  flex-shrink: 0;
}
.lp-phone-btn .icon-img {
  filter: invert(30%) sepia(54%) saturate(2144%) hue-rotate(211deg) brightness(86%) contrast(93%);
}
.object_list .icon-img,
.lp-form-trust-item .icon-img,
.lp-solution-check .icon-img {
  filter: invert(42%) sepia(95%) saturate(568%) hue-rotate(119deg) brightness(88%) contrast(96%);
}
.lp-form-success-icon .icon-img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
.lp-btn-primary .icon-img,
.lp-mid-cta-check .icon-img,
.lp-mid-cta-card-icon-wrap .icon-img,
.lp-reel-play-btn .icon-img {
  filter: invert(8%) sepia(21%) saturate(2541%) hue-rotate(203deg) brightness(92%) contrast(94%);
}
.lp-atar-icon,
.lp-mid-cta-feature-icon {
  filter: invert(72%) sepia(61%) saturate(882%) hue-rotate(344deg) brightness(100%) contrast(93%);
}
.lp-reel-arrow .icon-img {
  width: 20px;
  height: 20px;
}
.lp-reel-arrow:hover .icon-img {
  filter: brightness(0) invert(1);
}
.lp-reel-tag .icon-img {
  width: 12px;
  height: 12px;
}
.lp-reel-play-btn .icon-img {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}
.lp-mid-cta-card-icon {
  width: 30px;
  height: 30px;
}
.lp-mid-cta-feature-icon {
  width: 1em;
  height: 1em;
}

@media (max-width: 767.98px) {
  .lp-review-proof {
    gap: 10px;
  }
  .lp-review-proof .lp-trustpilot-logo {
    height: 30px;
  }
}
