    /* ─── SECTION 1 — HERO ─── */
    @keyframes meshMove1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(40px, -30px) scale(1.08); }
      66% { transform: translate(-20px, 40px) scale(0.95); }
    }
    @keyframes meshMove2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(-50px, 30px) scale(1.05); }
      66% { transform: translate(30px, -40px) scale(1.1); }
    }
    @keyframes meshMove3 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(20px, 20px) scale(1.06); }
    }
    .hero {
      min-height: 100vh;
      background: #0B1628;
      display: flex;
      align-items: center;
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero__mesh {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }
    .hero__blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.55;
    }
    .hero__blob--1 {
      width: 700px; height: 700px;
      top: -200px; left: -150px;
      background: radial-gradient(circle, #25347a 0%, #1a2255 60%, transparent 100%);
      animation: meshMove1 14s ease-in-out infinite;
    }
    .hero__blob--2 {
      width: 600px; height: 600px;
      top: -100px; right: -100px;
      background: radial-gradient(circle, #1a3a6e 0%, #112244 60%, transparent 100%);
      animation: meshMove2 18s ease-in-out infinite;
    }
    .hero__blob--3 {
      width: 500px; height: 500px;
      bottom: -150px; left: 30%;
      background: radial-gradient(circle, #2563eb44 0%, #1e40af22 60%, transparent 100%);
      animation: meshMove3 22s ease-in-out infinite;
    }
    .hero__grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero__inner {
      position: relative;
      z-index: 1;
      max-width: 820px;
    }
    .hero h1 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: #ffffff;
      margin-bottom: 24px;
    }
    .hero__sub {
      font-size: clamp(1rem, 1.8vw, 1.175rem);
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      max-width: 640px;
      margin-bottom: 40px;
    }
    .hero__actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .hero__soft-link {
      font-size: 0.9375rem;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.15s;
    }
    .hero__soft-link:hover { color: #fff; }

    /* ─── SECTION 2 — PROBLEM ─── */
    .problem {
      background: var(--white);
      padding: 120px 0;
    }
    .problem__header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 64px;
    }
    .problem__header .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 16px;
    }
    .section-h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.375rem);
      font-weight: 700;
      line-height: 1.22;
      letter-spacing: -0.015em;
      color: var(--text-primary);
      margin-bottom: 20px;
    }
    .section-body {
      font-size: 1.0625rem;
      color: var(--text-secondary);
      line-height: 1.72;
      margin-bottom: 0;
    }
    .problem__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    @media (max-width: 1024px) and (min-width: 769px) {
      .problem__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .problem__grid { grid-template-columns: 1fr; }
      .problem { padding: 72px 0; }
    }
    .problem-card {
      position: relative;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 2px 12px rgba(15,28,46,0.06);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .problem-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #2563EB 0%, #25347a 100%);
      border-radius: 16px 16px 0 0;
    }
    .problem-card:hover {
      transform: translateY(-6px);
      border-color: #2563EB;
      box-shadow: 0 12px 32px rgba(37,99,235,0.15);
    }
    .problem-card__num {
      position: absolute;
      top: 16px;
      right: 20px;
      font-family: 'Sora', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: #0F1C2E;
      opacity: 0.07;
      line-height: 1;
      user-select: none;
    }
    .problem-card__icon {
      width: 44px;
      height: 44px;
      margin-bottom: 20px;
      color: #2563EB;
    }
    .problem-card__title {
      font-family: 'Sora', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .problem-card__desc {
      font-size: 0.9375rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }


    /* ─── SECTION 3 — REFRAME ─── */
    .reframe {
      background: var(--white);
      padding: 120px 0;
    }
    .reframe__inner {
      display: grid;
      grid-template-columns: 55fr 45fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .reframe__label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--blue);
      margin-bottom: 20px;
    }
    .reframe__headline {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: #0F1C2E;
      margin-bottom: 28px;
    }
    .reframe__paras {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 28px;
    }
    .reframe__paras p {
      font-size: 1.0625rem;
      color: var(--text-secondary);
      line-height: 1.72;
    }
    .reframe__key {
      border-left: 4px solid var(--blue);
      padding-left: 20px;
      font-size: 1.05rem;
      font-weight: 600;
      color: #0F1C2E;
      font-style: italic;
      margin-top: 28px;
      line-height: 1.55;
    }
    .reframe__video-wrap {
      position: relative;
    }
    .reframe__video-box {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(15,28,46,0.14);
      position: relative;
      background: #0F1C2E;
    }
    .reframe__video-box video {
      display: block;
      width: 100%;
      height: auto;
    }
    .reframe__play-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: opacity 0.25s ease;
    }
    .reframe__play-btn.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .reframe__play-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(15,28,46,0.22);
      transition: transform 0.2s ease;
    }
    .reframe__play-btn:hover .reframe__play-circle {
      transform: scale(1.08);
    }
    .reframe__play-circle svg {
      width: 28px;
      height: 28px;
      margin-left: 4px;
    }
    .reframe__caption {
      font-size: 0.8125rem;
      color: #6B7280;
      text-align: center;
      margin-top: 12px;
    }
    @media (max-width: 1024px) {
      .reframe__inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }
    @media (max-width: 768px) {
      .reframe {
        padding: 80px 0;
      }
      .reframe__inner {
        gap: 36px;
      }
    }

    /* ─── SECTION 4 — HOW WE THINK ─── */
    /* ─── SECTION 4 — HOW IT WORKS (sticky scroll) ─── */
    .how {
      background: var(--white);
      position: relative;
    }
    .how__wrapper {
      display: flex;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    /* LEFT — sticky panel */
    .how__left {
      width: 44%;
      flex-shrink: 0;
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      padding: 3rem 3rem 3rem 1rem;
    }
    .how__left-inner { max-width: 400px; }
    .how__left-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--blue);
      background: rgba(37,99,235,0.08);
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 1.25rem;
    }
    .how__left-heading {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.5rem, 2.2vw, 2.1rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--text-primary);
      margin-bottom: 1.1rem;
    }
    .how__left-heading span { color: var(--blue); }
    .how__left-sub {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 1.75rem;
    }
    /* Progress dots */
    .how__dots {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    .how__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #c8d8e8;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
      outline: none;
    }
    .how__dot:focus-visible { box-shadow: 0 0 0 3px rgba(37,99,235,0.3); }
    .how__dot.active {
      width: 28px;
      border-radius: 4px;
      background: var(--blue);
    }
    .how__active-label {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.82rem;
      color: #7a8b9a;
      margin: 0;
    }
    #how-active-name {
      font-weight: 700;
      color: var(--blue);
      transition: opacity 0.25s ease;
    }
    .how__active-counter {
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.04em;
    }
    /* RIGHT — scrolling scenes */
    .how__right {
      flex: 1;
      padding: 8vh 1rem 8vh 2rem;
    }
    .how__scene {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 4rem 0;
    }
    .how__card {
      background: #fff;
      border: 1px solid #e8edf4;
      border-radius: 20px;
      padding: 2.5rem;
      width: 100%;
      box-shadow: 0 4px 24px rgba(37,99,235,0.06);
      transition: box-shadow 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
      opacity: 0.45;
      transform: translateY(12px);
    }
    .how__scene.is-active .how__card {
      opacity: 1;
      transform: translateY(0);
      box-shadow: 0 8px 40px rgba(37,99,235,0.12);
    }
    .how__card-header {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      margin-bottom: 1.5rem;
    }
    .how__card-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .how__card-icon svg {
      width: 26px;
      height: 26px;
    }
    .how__card-badge {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.4rem;
    }
    .how__card-title {
      font-family: 'Sora', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-primary);
      margin: 0 0 0.35rem;
    }
    .how__card-desc {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin: 0;
    }
    .how__card-body {
      border-top: 1px solid #f0f4f8;
      padding-top: 1.5rem;
    }
    .how__card-detail {
      font-size: 0.92rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }
    .how__card-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .how__chip {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--blue);
      background: rgba(37,99,235,0.08);
      padding: 4px 12px;
      border-radius: 20px;
    }
    .how__card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--blue);
      text-decoration: none;
      margin-top: 1.25rem;
      transition: gap 0.2s ease;
    }
    .how__card-link:hover { gap: 0.6rem; }

    /* ─── SECTION 4b — TOOLS GRID ─── */
    .tools {
      background: #f8fafc;
      padding: 72px 0;
      border-top: 1px solid #edf2f7;
      border-bottom: 1px solid #edf2f7;
    }
    .tools__header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 56px;
    }
    .tools__tag {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #2563eb;
      background: rgba(37,99,235,0.08);
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .tools__heading {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.6rem, 2.5vw, 2.1rem);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .tools__sub {
      font-size: 1rem;
      color: #64748b;
      line-height: 1.65;
      margin: 0;
    }
    .tools__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .tools__item {
      background: #fff;
      border: 1px solid #e8edf4;
      border-radius: 16px;
      padding: 28px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
      cursor: default;
    }
    .tools__item:hover {
      box-shadow: 0 8px 32px rgba(37,99,235,0.10);
      transform: translateY(-3px);
      border-color: #c7d7f8;
    }
    .tools__item img {
      height: 36px;
      width: auto;
      object-fit: contain;
      filter: grayscale(100%) opacity(0.6);
      transition: filter 0.3s ease;
    }
    .tools__item:hover img {
      filter: grayscale(0%) opacity(1);
    }
    .tools__item-name {
      font-size: 0.78rem;
      font-weight: 600;
      color: #94a3b8;
      letter-spacing: 0.02em;
      transition: color 0.3s ease;
    }
    .tools__item:hover .tools__item-name {
      color: #334155;
    }
    @media (max-width: 900px) {
      .tools__grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 600px) {
      .tools__grid { grid-template-columns: repeat(2, 1fr); }
      .tools__heading { font-size: 1.5rem; }
    }

    /* ─── SECTION 5 — BEFORE/AFTER ─── */
    .ba__section {
      background: #0a1628;
      padding: var(--section-py) 0;
    }
    .ba__header {
      max-width: 760px;
      margin: 0 auto 56px;
      text-align: center;
    }
    .ba__tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #1F8A99;
      background: rgba(31,138,153,0.12);
      border: 1px solid rgba(31,138,153,0.25);
      border-radius: 999px;
      padding: 4px 14px;
      margin-bottom: 20px;
    }
    .ba__header h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.625rem, 3vw, 2.125rem);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .ba__header p {
      font-size: 1rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      max-width: 640px;
      margin: 0 auto;
    }
    .ba__layout {
      display: grid;
      grid-template-columns: 1fr 48px 1fr;
      align-items: stretch;
      max-width: 1100px;
      margin: 0 auto;
    }
    .ba__col {
      border-radius: 16px;
      overflow: hidden;
    }
    .ba__col--before {
      background: #1a1f2e;
    }
    .ba__col--after {
      background: #0f2a30;
    }
    .ba__col-header {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 20px 28px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .ba__dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .ba__dot--before { background: #ef4444; }
    .ba__dot--after  { background: #1F8A99; }
    .ba__col-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .ba__col--before .ba__col-label { color: rgba(255,255,255,0.4); }
    .ba__col--after  .ba__col-label { color: rgba(31,138,153,0.9); }
    .ba__rows {
      padding: 8px 0;
    }
    .ba__row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px 28px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: background 0.2s;
    }
    .ba__row:last-child { border-bottom: none; }
    .ba__col--before .ba__row:hover { background: rgba(239,68,68,0.06); }
    .ba__col--after  .ba__row:hover { background: rgba(31,138,153,0.08); }
    .ba__icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      margin-top: 2px;
    }
    .ba__icon--x   { color: #ef4444; }
    .ba__icon--check { color: #1F8A99; }
    .ba__icon svg  { width: 100%; height: 100%; }
    .ba__text {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.72);
    }
    .ba__divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .ba__divider::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0; left: 50%;
      width: 1px;
      background: rgba(255,255,255,0.08);
      transform: translateX(-50%);
    }
    .ba__arrow-badge {
      position: relative;
      z-index: 1;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #1F8A99;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: #fff;
      box-shadow: 0 0 0 6px rgba(31,138,153,0.15), 0 0 0 12px rgba(31,138,153,0.06);
    }
    @media (max-width: 767px) {
      .ba__layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0;
      }
      .ba__divider {
        flex-direction: row;
        padding: 20px 0;
        height: 56px;
      }
      .ba__divider::before {
        top: 50%; left: 0; right: 0; bottom: auto;
        width: auto;
        height: 1px;
        transform: translateY(-50%);
      }
      .ba__col {
        border-radius: 0;
      }
      .ba__col--before { border-radius: 16px 16px 0 0; }
      .ba__col--after  { border-radius: 0 0 16px 16px; }
    }

    /* ─── SECTION 6 — FAQ ─── */
    .faq {
      background: var(--white);
      padding: var(--section-py) 0;
    }
    .faq__inner {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq__header {
      margin-bottom: 48px;
    }
    .accordion {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .accordion-item {
      border-bottom: 1px solid var(--border);
    }
    .accordion-item:last-child { border-bottom: none; }

    .accordion-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      text-align: left;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      transition: background 0.15s;
    }
    .accordion-trigger:hover { background: var(--off-white); }
    .accordion-trigger[aria-expanded="true"] { background: var(--off-white); }

    .accordion-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--accent-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s, background 0.15s;
    }
    .accordion-trigger[aria-expanded="true"] .accordion-icon {
      transform: rotate(180deg);
      background: var(--blue);
    }
    .accordion-icon svg {
      width: 12px;
      height: 12px;
      color: var(--text-secondary);
      transition: color 0.15s;
    }
    .accordion-trigger[aria-expanded="true"] .accordion-icon svg { color: var(--white); }

    .accordion-body {
      display: none;
      padding: 0 28px 24px;
      font-size: 0.9375rem;
      color: var(--text-secondary);
      line-height: 1.72;
    }
    .accordion-body.open { display: block; }

    /* ─── SECTION 7 — FINAL CTA ─── */
    .cta-final {
      background: var(--navy);
      padding: var(--section-py) 0;
      position: relative;
      overflow: hidden;
    }
    .cta-final::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-final__inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
    }
    .cta-final h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.75rem, 3.5vw, 2.625rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      letter-spacing: -0.015em;
    }
    .cta-final p {
      font-size: 1.0625rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.68;
      margin-bottom: 36px;
    }
    .cta-final__note {
      font-size: 0.875rem !important;
      color: rgba(255,255,255,0.5) !important;
      margin-top: 20px;
      margin-bottom: 0 !important;
    }
    .cta-final__btn-wrap { display: flex; justify-content: center; }

/* ═══════════════════════════════════════ */
/* HOMEPAGE v1 — MISSING STYLES            */
/* ═══════════════════════════════════════ */

/* ─── v1 HERO ─── */
.v1hero {
  min-height: 100vh;
  background: #0B1628;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.v1hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.v1hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.v1hero__blob--1 {
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, #25347a 0%, #1a2255 60%, transparent 100%);
  animation: meshMove1 14s ease-in-out infinite;
}
.v1hero__blob--2 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, #1a3a6e 0%, #112244 60%, transparent 100%);
  animation: meshMove2 18s ease-in-out infinite;
}
.v1hero__blob--3 {
  width: 500px; height: 500px;
  bottom: -150px; left: 30%;
  background: radial-gradient(circle, #2563eb44 0%, #1e40af22 60%, transparent 100%);
  animation: meshMove3 22s ease-in-out infinite;
}
.v1hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.v1hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.v1hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 24px;
}
.v1hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}
.v1hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.v1hero__soft-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.v1hero__soft-link:hover { color: #fff; }
.v1hero__support {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
}

/* ─── v1 REFRAME OVERRIDES ─── */
.v1reframe__h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.375rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.v1reframe__paras {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v1reframe__paras p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* reframe__content is used in v1 but not in original */
.reframe__content {
  max-width: 520px;
}

/* ─── COMPARISON TABS CAROUSEL ─── */
.ctabs {
  background: var(--white);
  padding: var(--section-py) 0;
}
.ctabs__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.ctabs__h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.ctabs__body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin: 0;
}
.ctabs__carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.ctabs__indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.ctabs__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ctabs__dot.active {
  background: var(--blue);
  width: 32px;
  border-radius: 5px;
}
.ctabs__counter {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}
.ctabs__slide {
  display: none;
  animation: fadeIn 0.4s ease;
}
.ctabs__slide.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ctabs__framing {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.ctabs__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.9375rem;
}
.ctabs__table thead th {
  text-align: left;
  padding: 16px 20px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.ctabs__table thead th:first-child { width: 50%; }
.ctabs__table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  line-height: 1.6;
}
.ctabs__table tbody tr:last-child td { border-bottom: none; }
.ctabs__table tbody td:last-child {
  color: var(--text-primary);
  font-weight: 500;
}
.ctabs__closing {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 8px;
  font-style: italic;
}
.ctabs__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.ctabs__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ctabs__btn:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(37,99,235,0.04);
}
.ctabs__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.ctabs__btn svg {
  width: 20px;
  height: 20px;
}

/* ─── CASE STUDIES ─── */
.cs {
  background: var(--off-white);
  padding: var(--section-py) 0;
  overflow: hidden;
}
.cs__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 32px;
}
.cs__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37,99,235,0.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.cs__heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cs__sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.cs__track-outer {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 24px;
}
.cs__track-outer::-webkit-scrollbar { display: none; }
.cs__track-outer.active { cursor: grabbing; }
.cs__track {
  display: flex;
  gap: 24px;
  padding: 0 32px;
  width: max-content;
}
.cs__card {
  width: 380px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(15,28,46,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cs__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,28,46,0.1);
}
.cs__num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.cs__company {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.cs__product {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.cs__challenge {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}
.cs__outcome {
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 20px;
}
.cs__divider {
  height: 1px;
  background: var(--border-light);
  margin: 20px 0;
}
.cs__quote-wrap {
  position: relative;
}
.cs__quote-mark {
  font-size: 1.5rem;
  color: var(--blue);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.cs__quote {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ─── v1 CTA ─── */
.v1cta {
  background: var(--navy);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.v1cta::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.v1cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.v1cta__h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.v1cta__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.68;
  margin-bottom: 36px;
}
.v1cta__btn-wrap { display: flex; justify-content: center; }
.v1cta__note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  margin-bottom: 0;
}

/* ─── v1 RESPONSIVE ADDITIONS ─── */
@media (max-width: 900px) {
  .ctabs__carousel { padding: 0 20px; }
  .cs__card { width: 340px; }
  .cs__track { padding: 0 20px; }
}

@media (max-width: 600px) {
  .v1hero { min-height: auto; padding: 120px 0 60px; }
  .v1hero__actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ctabs__table { font-size: 0.875rem; }
  .ctabs__table thead th,
  .ctabs__table tbody td { padding: 12px 14px; }
  .cs__card { width: 300px; padding: 24px; }
}



/* ─── HOMEPAGE RESPONSIVE ─── */
@media (max-width: 900px) {
  :root { --section-py: 72px; }

  .how__wrapper { flex-direction: column; }
  .how__left {
    width: 100%;
    position: relative;
    height: auto;
    padding: var(--section-py) 1rem 2rem;
  }
  .how__right { padding: 0 1rem var(--section-py); }
  .how__scene { min-height: auto; padding: 1.5rem 0; }
  .how__card { opacity: 1; transform: none; }
  .how__dots, .how__active-label { display: none; }

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

@media (max-width: 600px) {
  :root { --section-py: 56px; }

  .hero { min-height: auto; padding: 100px 0 60px; }

  .how__card { padding: 1.75rem; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__links { flex-wrap: wrap; gap: 16px; }
  .footer__copy { text-align: left; }
}

/* ════════════════════════════════════════════════
   ABOUT PAGE STYLES
   ════════════════════════════════════════════════ */

/* ─── HERO ─── */
.about-hero {
  min-height: 70vh;
  background: #0B1628;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.about-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.about-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.about-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.about-hero__blob--1 {
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, #25347a 0%, #1a2255 60%, transparent 100%);
  animation: meshMove1 14s ease-in-out infinite;
}
.about-hero__blob--2 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, #1a3a6e 0%, #112244 60%, transparent 100%);
  animation: meshMove2 18s ease-in-out infinite;
}
.about-hero__blob--3 {
  width: 500px; height: 500px;
  bottom: -150px; left: 30%;
  background: radial-gradient(circle, #2563eb44 0%, #1e40af22 60%, transparent 100%);
  animation: meshMove3 22s ease-in-out infinite;
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.about-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 24px;
}
.about-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}
.about-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about-hero__soft-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.about-hero__soft-link:hover { color: #fff; }

/* ─── STATS BAR ─── */
.about-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.about-stats__num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.about-stats__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── STORY ─── */
.about-story {
  background: var(--white);
  padding: 120px 0;
}
.about-story__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.about-story__body {
  max-width: 760px;
  margin: 0 auto;
}
.about-story__body .section-body {
  margin-bottom: 24px;
}
.about-story__body .section-body:last-child {
  margin-bottom: 0;
}

/* ─── REVIEWS ─── */
.about-reviews {
  background: #F6F8FB;
  padding: 120px 0;
}
.about-reviews__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.about-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(15,28,46,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-review::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB 0%, #25347a 100%);
  border-radius: 16px 16px 0 0;
}
.about-review:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.15);
}
.about-review__quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: #2563EB;
  opacity: 0.4;
  margin-bottom: 12px;
  display: block;
}
.about-review__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 24px;
}
.about-review__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-review__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.about-review__role {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ─── CTA ─── */
.about-cta {
  background: #0B1628;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.about-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.about-cta .section-h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.about-cta .section-body {
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}
.about-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── ABOUT RESPONSIVE ─── */
@media (max-width: 1024px) and (min-width: 769px) {
  .about-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-hero { min-height: auto; padding: 120px 0 60px; }
  .about-hero__actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { padding: 72px 0; }
  .about-reviews__grid { grid-template-columns: 1fr; }
  .about-reviews { padding: 72px 0; }
  .about-cta { padding: 72px 0; }
}

/* ════════════════════════════════════════════════
   CONTACT SALES PAGE STYLES
   ════════════════════════════════════════════════ */

/* ─── HERO ─── */
.csales-hero {
  min-height: 50vh;
  background: #0B1628;
  display: flex;
  align-items: center;
  padding: 160px 0 60px;
  position: relative;
  overflow: hidden;
}
.csales-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.csales-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.csales-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.csales-hero__blob--1 {
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, #25347a 0%, #1a2255 60%, transparent 100%);
  animation: meshMove1 14s ease-in-out infinite;
}
.csales-hero__blob--2 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, #1a3a6e 0%, #112244 60%, transparent 100%);
  animation: meshMove2 18s ease-in-out infinite;
}
.csales-hero__blob--3 {
  width: 500px; height: 500px;
  bottom: -150px; left: 30%;
  background: radial-gradient(circle, #2563eb44 0%, #1e40af22 60%, transparent 100%);
  animation: meshMove3 22s ease-in-out infinite;
}
.csales-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.csales-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}
.csales-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── WHAT TO EXPECT ─── */
.csales-expect {
  background: var(--white);
  padding: 100px 0;
}
.csales-expect__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.csales-expect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.csales-expect__item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(15,28,46,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.csales-expect__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB 0%, #25347a 100%);
  border-radius: 16px 16px 0 0;
}
.csales-expect__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.15);
}
.csales-expect__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #0F1C2E;
  opacity: 0.07;
  line-height: 1;
  user-select: none;
}
.csales-expect__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.csales-expect__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin: 0;
}

/* ─── FORM SECTION ─── */
.csales-form {
  background: #F6F8FB;
  padding: 100px 0;
}
.csales-form__inner {
  max-width: 720px;
  margin: 0 auto;
}
.csales-form__header {
  text-align: center;
  margin-bottom: 48px;
}

/* ─── ALTERNATIVE PATHS ─── */
.csales-alt {
  background: var(--white);
  padding: 100px 0;
  text-align: center;
}
.csales-alt__inner {
  max-width: 640px;
  margin: 0 auto;
}
.csales-alt .section-h2 {
  margin-bottom: 16px;
}
.csales-alt .section-body {
  margin-bottom: 36px;
}
.csales-alt__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FORM STYLES (used by contact-sales.php inline form) ─── */
.wf-form__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wf-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.wf-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wf-form__field--full {
  grid-column: 1 / -1;
}
.wf-form__label-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}
.wf-form__label-text span {
  color: #DC2626;
}
.wf-form__input,
.wf-form__textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wf-form__input::placeholder,
.wf-form__textarea::placeholder {
  color: var(--text-muted);
}
.wf-form__input:hover,
.wf-form__textarea:hover {
  border-color: var(--text-muted);
}
.wf-form__input:focus,
.wf-form__textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.wf-form__input.wf-form__input--error,
.wf-form__textarea.wf-form__input--error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.wf-form__textarea {
  resize: vertical;
  min-height: 140px;
}
.wf-form__error {
  display: none;
  font-size: 0.8125rem;
  color: #DC2626;
  margin-top: -4px;
}
.wf-form__error.is-visible {
  display: block;
}
.wf-form__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.wf-form__btn {
  min-width: 180px;
}
.wf-form__success {
  display: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #059669;
}
.wf-form__success.is-visible {
  display: block;
}

/* ─── CONTACT SALES RESPONSIVE ─── */
@media (max-width: 1024px) and (min-width: 769px) {
  .csales-expect__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .csales-hero { min-height: auto; padding: 120px 0 60px; }
  .csales-expect__grid { grid-template-columns: 1fr; }
  .csales-expect { padding: 72px 0; }
  .csales-form { padding: 72px 0; }
  .csales-alt { padding: 72px 0; }
  .wf-form__row { grid-template-columns: 1fr; gap: 20px; }
}

/* ════════════════════════════════════════════════
   CUSTOMER SUPPORT PAGE STYLES
   ════════════════════════════════════════════════ */

/* ─── HERO ─── */
.support-hero {
  min-height: 50vh;
  background: #0B1628;
  display: flex;
  align-items: center;
  padding: 160px 0 60px;
  position: relative;
  overflow: hidden;
}
.support-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.support-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.support-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.support-hero__blob--1 {
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, #25347a 0%, #1a2255 60%, transparent 100%);
  animation: meshMove1 14s ease-in-out infinite;
}
.support-hero__blob--2 {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, #1a3a6e 0%, #112244 60%, transparent 100%);
  animation: meshMove2 18s ease-in-out infinite;
}
.support-hero__blob--3 {
  width: 500px; height: 500px;
  bottom: -150px; left: 30%;
  background: radial-gradient(circle, #2563eb44 0%, #1e40af22 60%, transparent 100%);
  animation: meshMove3 22s ease-in-out infinite;
}
.support-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.support-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}
.support-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── SUPPORT CHANNELS ─── */
.support-channels {
  background: var(--white);
  padding: 100px 0;
}
.support-channels__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.support-channels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.support-channel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(15,28,46,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-channel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB 0%, #25347a 100%);
  border-radius: 16px 16px 0 0;
}
.support-channel:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.15);
}
.support-channel__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #0F1C2E;
  opacity: 0.07;
  line-height: 1;
  user-select: none;
}
.support-channel__title {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.support-channel__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 16px;
}
.support-channel__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.15s;
}
.support-channel__link:hover { opacity: 0.7; }

/* ─── SUPPORT FORM ─── */
.support-form {
  background: #F6F8FB;
  padding: 100px 0;
}
.support-form__inner {
  max-width: 720px;
  margin: 0 auto;
}
.support-form__header {
  text-align: center;
  margin-bottom: 48px;
}

/* ─── COMMON TOPICS ─── */
.support-topics {
  background: var(--white);
  padding: 100px 0;
}
.support-topics__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.support-topics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.support-topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.support-topic:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(37,99,235,0.08);
}
.support-topic__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}
.support-topic__arrow {
  font-size: 1.125rem;
  color: var(--text-muted);
  transition: color 0.15s, transform 0.15s;
}
.support-topic:hover .support-topic__arrow {
  color: var(--blue);
  transform: translateX(4px);
}

/* ─── ALTERNATIVE PATHS ─── */
.support-alt {
  background: #0B1628;
  padding: 100px 0;
  text-align: center;
}
.support-alt__inner {
  max-width: 640px;
  margin: 0 auto;
}
.support-alt .section-h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.support-alt .section-body {
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}
.support-alt__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── SUPPORT RESPONSIVE ─── */
@media (max-width: 1024px) and (min-width: 769px) {
  .support-channels__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .support-hero { min-height: auto; padding: 120px 0 60px; }
  .support-channels__grid { grid-template-columns: 1fr; }
  .support-channels { padding: 72px 0; }
  .support-form { padding: 72px 0; }
  .support-topics { padding: 72px 0; }
  .support-topics__grid { grid-template-columns: 1fr; }
  .support-alt { padding: 72px 0; }
}
