    /* -------------------------------------------------------------
       3. HERO SECTION
       ------------------------------------------------------------- */
    /* Hero Background Image Styling */
    .hero-image-wrap {
      position: absolute;
      left: 0;
      top: 0;
      width: 100% !important;
      height: 100% !important;
      z-index: 1;
      display: block;
      pointer-events: none;
      overflow: hidden;
      border-radius: 0 !important;
    }

    /* Gradient overlay on top of the video to keep text fully legible */
    .hero-image-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(26, 44, 66, 0.95) 0%, rgba(26, 44, 66, 0.75) 100%);
      z-index: 2;
    }

    .hero-image {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      opacity: 0.85; /* slight transparency to let the website gradient background blend in */
      border-radius: 0 !important;
    }

    .hero {
      position: relative;
      padding-top: 108px;
      padding-bottom: 40px;
      min-height: 80vh;
      display: flex;
      align-items: center;
      background: linear-gradient(to bottom, rgba(26, 44, 66, 0.85) 0%, rgba(26, 44, 66, 0.5) 100%);
      border-bottom: 1px solid var(--border-card);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 50px;
      align-items: center;
      width: 100%;
    }

    @media (min-width: 1024px) {
      .hero-image-wrap::after {
        background: linear-gradient(to right, rgba(26, 44, 66, 0.95) 0%, rgba(26, 44, 66, 0.65) 35%, transparent 85%);
      }

      .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 80px; /* Push content below the header (80px nav) */
        padding-bottom: 0;
        overflow: hidden;
        border-bottom: none !important;
        background: linear-gradient(to right, rgba(26, 44, 66, 0.9) 0%, rgba(26, 44, 66, 0.4) 50%, rgba(26, 44, 66, 0.1) 100%);
      }

      .hero-grid {
        display: grid !important;
        grid-template-columns: 1.25fr 0.75fr;
        align-items: center;
        gap: 60px;
        height: 100%;
        width: 100%;
        position: relative !important;
        z-index: 2;
      }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 700px;
      text-align: left;
    }

    .hero-title {
      font-size: 2.2rem;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    
    @media (min-width: 768px) {
      .hero-title {
        font-size: 3.5rem;
        margin-bottom: 24px;
      }
    }
    
    @media (min-width: 1200px) {
      .hero-title {
        font-size: 4rem;
      }
    }

    .hero-subtitle {
      font-size: 1rem;
      color: var(--text-light-blue);
      margin-bottom: 40px;
      font-weight: 400;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 16px;
      margin-bottom: 50px;
    }

    @media (min-width: 480px) {
      .hero-buttons {
        flex-direction: row;
      }
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px 0;
      max-width: 650px;
      margin-top: 30px;
    }

    @media (min-width: 768px) {
      .hero-stats {
        display: flex;
        flex-direction: row;
        gap: 0;
      }
    }

    .hero-stats-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      text-align: left;
      gap: 12px;
    }

    @media (max-width: 767px) {
      /* Left column */
      .hero-stats-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0 16px 0 0;
      }
      /* Right column */
      .hero-stats-item:nth-child(even) {
        padding: 0 0 0 16px;
      }
      /* Last odd item alone on row (3-item case) — no border */
      .hero-stats-item:nth-child(odd):last-child {
        border-right: none;
        padding: 0;
      }
    }

    @media (min-width: 768px) {
      .hero-stats-item {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        padding: 0 25px;
      }
      .hero-stats-item:first-child {
        padding-left: 0;
      }
      .hero-stats-item:last-child {
        border-right: none;
        padding-right: 0;
      }
    }

    .hero-stats-text-col {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .hero-stats-icon {
      width: 28px;
      height: 28px;
      stroke: var(--accent-cyan);
      flex-shrink: 0;
    }

    .hero-stats-value {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-white);
      font-family: var(--font-serif);
      line-height: 1;
    }

    .hero-stats-label {
      font-size: 0.85rem;
      color: var(--text-light-blue);
      opacity: 0.8;
      line-height: 1.2;
    }

    /* Decorative Phone wire */
    .hero-decor-ring {
      position: absolute;
      width: 120%;
      height: 120%;
      top: -10%;
      left: -10%;
      border: 1px dashed rgba(97, 117, 162, 0.15);
      border-radius: 50%;
      pointer-events: none;
      animation: rotate-ring 40s linear infinite;
    }

    @keyframes rotate-ring {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* -------------------------------------------------------------
       4. STATS BAR
       ------------------------------------------------------------- */
    .stats-bar {
      background: rgba(8, 12, 24, 0.8);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(8px);
      padding: 50px 0;
      position: relative;
      z-index: 3;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 20px;
      text-align: center;
    }

    @media (min-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .stats-grid {
        grid-template-columns: repeat(6, 1fr);
      }
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .stat-number {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-white);
      line-height: 1;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .stat-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* -------------------------------------------------------------
       10. O NAS / ABOUT SECTION
       ------------------------------------------------------------- */
    .about {
      position: relative;
      background: transparent;
      overflow: hidden;
      padding-top: var(--section-vertical-padding);
      padding-bottom: var(--section-vertical-padding);
    }

    .about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('../images/home_about_bg.webp');
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, transparent 100%);
      mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, transparent 100%);
      z-index: 1;
    }

    /* Extra dark shading over the column artwork (on top of the fade mask above) */
    .about::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 45%, rgba(6, 23, 48, 0.55) 0%, rgba(6, 23, 48, 0.25) 45%, transparent 75%);
      z-index: 1;
      pointer-events: none;
    }

    .about .container {
      max-width: 100%;
      padding-left: var(--section-padding);
      padding-right: var(--section-padding);
      position: relative;
      z-index: 2;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .about::before {
        background-image: url('../images/home_about_bg.webp');
        background-position: right -50px center;
        background-size: auto 100%;
        -webkit-mask-image: linear-gradient(90deg, transparent 30%, rgba(0, 0, 0, 1) 70%);
        mask-image: linear-gradient(90deg, transparent 30%, rgba(0, 0, 0, 1) 70%);
      }
      .about::after {
        background: radial-gradient(circle at 65% 40%, rgba(6, 23, 48, 0.55) 0%, rgba(6, 23, 48, 0.28) 40%, transparent 72%);
      }
      .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 0;
      }
      .about-content {
        position: relative;
        z-index: 2;
        padding-right: 40px;
      }
    }

    .about-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .about-content .section-title {
      margin-bottom: 0;
    }

    .about-lead {
      font-size: 1.25rem;
      color: var(--text-light-blue);
    }

    /* About Advantages Row (inside About section after CTA) */
    .about-adv-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 36px;
    }

    @media (min-width: 640px) {
      .about-adv-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 32px;
      }
    }

    .about-adv-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 12px;
    }

    .about-adv-icon {
      width: 28px;
      height: 28px;
      stroke: var(--accent-cyan);
      flex-shrink: 0;
    }

    .about-adv-text-col {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .about-adv-value {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-white);
      font-family: var(--font-serif);
      line-height: 1;
    }

    .about-adv-label {
      font-size: 0.85rem;
      color: var(--text-light-blue);
      opacity: 0.8;
      line-height: 1.2;
    }

    /* -------------------------------------------------------------
       10a. ONBOARDING SECTION
       ------------------------------------------------------------- */
    .onboarding-section {
      padding-top: 0;
      padding-bottom: 0;
    }

    .onboarding-card {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid var(--border-card);
      max-width: var(--container-max);
      margin: 0 auto;
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .onboarding-card > .onboarding-content {
      width: 50%;
    }

    .onboarding-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('../images/onboarding-bg-20260729b.webp');
      background-position: center top;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: 0;
      transition: filter 0.4s ease;
    }

    .onboarding-card:hover::before,
    .onboarding-card.onboarding-tapped::before {
      filter: blur(6px) brightness(0.55);
    }

    /* Dark gradient overlay — behind text, shifted left so it stays transparent over the statue */
    .onboarding-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 30%;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(26, 44, 66, 0.85) 40%, rgba(26, 44, 66, 0.97) 100%);
      z-index: 0;
      pointer-events: none;
    }

    /* Hover overlay */
    .onboarding-hover-overlay {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 48px;
      gap: 16px;
      text-align: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .onboarding-card:hover .onboarding-hover-overlay,
    .onboarding-card.onboarding-tapped .onboarding-hover-overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .onboarding-hover-text {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .onboarding-hover-title {
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 700;
      color: var(--text-primary);
      margin: 0;
      line-height: 1.2;
    }

    .onboarding-hover-sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin: 0;
    }

    .onboarding-hover-actions {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      flex-wrap: wrap;
    }

    .onboarding-hover-btn,
    .onboarding-call-btn {
      white-space: nowrap;
    }

    .onboarding-content {
      position: relative;
      z-index: 1;
      padding: 40px;
      text-align: left;
      transition: filter 0.4s ease, opacity 0.4s ease;
    }

    .onboarding-card:hover .onboarding-content,
    .onboarding-card.onboarding-tapped .onboarding-content {
      filter: blur(4px);
      opacity: 0.3;
    }

    .onboarding-content .section-title {
      margin-bottom: 0;
    }

    .onboarding-steps {
      display: flex;
      flex-direction: row;
      gap: 0;
      align-items: flex-start;
      width: 100%;
    }

    .onboarding-step {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex: 1;
      padding-right: 20px;
    }

    .onboarding-step:last-child {
      padding-right: 0;
    }

    .onboarding-step:not(:last-child) .onboarding-step-top {
      width: calc(100% + 20px);
    }

    .onboarding-step-top {
      display: flex;
      flex-direction: row;
      align-items: center;
      width: 100%;
      margin-bottom: 14px;
    }

    .onboarding-step-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--accent-cyan);
      color: var(--accent-cyan);
      font-size: 1.1rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(97, 117, 162, 0.08);
      flex-shrink: 0;
      position: relative;
    }

    /* Пульсирующее кольцо */
    .onboarding-step-circle::after {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 1.5px solid var(--accent-cyan);
      opacity: 0;
    }

    .onboarding-step:nth-child(1) .onboarding-step-circle::after {
      animation: ob-pulse 3.6s ease-in-out infinite;
      animation-delay: 0s;
    }
    .onboarding-step:nth-child(2) .onboarding-step-circle::after {
      animation: ob-pulse 3.6s ease-in-out infinite;
      animation-delay: 1.2s;
    }
    .onboarding-step:nth-child(3) .onboarding-step-circle::after {
      animation: ob-pulse 3.6s ease-in-out infinite;
      animation-delay: 2.4s;
    }

    @keyframes ob-pulse {
      0%   { opacity: 0;    transform: scale(0.85); }
      15%  { opacity: 0.7;  transform: scale(1);    }
      40%  { opacity: 0;    transform: scale(1.25); }
      100% { opacity: 0;    transform: scale(1.25); }
    }

    /* Цифра кружка белеет во время своей пульсации, возвращается к cyan после 3-го */
    .onboarding-step:nth-child(1) .onboarding-step-circle {
      animation: ob-number-color-1 3.6s ease-in-out infinite;
      animation-delay: 0s;
    }
    .onboarding-step:nth-child(2) .onboarding-step-circle {
      animation: ob-number-color-2 3.6s ease-in-out infinite;
      animation-delay: 0s;
    }
    .onboarding-step:nth-child(3) .onboarding-step-circle {
      animation: ob-number-color-3 3.6s ease-in-out infinite;
      animation-delay: 0s;
    }

    /* Кружок 1: белеет с 0% до ~40%, потом cyan */
    @keyframes ob-number-color-1 {
      0%   { color: #ffffff; }
      33%  { color: #ffffff; }
      40%  { color: var(--accent-cyan); }
      100% { color: var(--accent-cyan); }
    }

    /* Кружок 2: белеет с ~33% до ~73% (задержка 1.2s / 3.6s = 33%) */
    @keyframes ob-number-color-2 {
      0%   { color: var(--accent-cyan); }
      33%  { color: var(--accent-cyan); }
      34%  { color: #ffffff; }
      66%  { color: #ffffff; }
      73%  { color: var(--accent-cyan); }
      100% { color: var(--accent-cyan); }
    }

    /* Кружок 3: белеет с ~67% до 100%, все возвращаются к cyan на 100% */
    @keyframes ob-number-color-3 {
      0%   { color: var(--accent-cyan); }
      66%  { color: var(--accent-cyan); }
      67%  { color: #ffffff; }
      99%  { color: #ffffff; }
      100% { color: var(--accent-cyan); }
    }

    .onboarding-step-connector {
      flex: 1;
      height: 1px;
      background: rgba(97, 117, 162, 0.3);
      position: relative;
      overflow: hidden;
    }

    /* Бегущее утолщение по линии */
    .onboarding-step-connector::after {
      content: '';
      position: absolute;
      top: -1.5px;
      left: -100%;
      width: 100%;
      height: 4px;
      border-radius: 2px;
      background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
      opacity: 0.8;
    }

    .onboarding-step:nth-child(1) .onboarding-step-connector::after {
      animation: ob-line 3.6s ease-in-out infinite;
      animation-delay: 0.4s;
    }
    .onboarding-step:nth-child(2) .onboarding-step-connector::after {
      animation: ob-line 3.6s ease-in-out infinite;
      animation-delay: 1.6s;
    }

    @keyframes ob-line {
      0%   { left: -100%; opacity: 0;   }
      10%  { opacity: 0.8; }
      50%  { left: 100%;  opacity: 0.8; }
      60%  { opacity: 0;  }
      100% { left: 100%;  opacity: 0;   }
    }

    .onboarding-step-text {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .onboarding-step-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-white);
      font-family: var(--font-serif);
    }

    .onboarding-step-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    @media (max-width: 1023px) {
      .onboarding-card {
        justify-content: flex-start;
      }
      .onboarding-card > .onboarding-content {
        width: 100%;
      }
      .onboarding-hover-overlay {
        padding: 0 24px;
      }
      .onboarding-hover-actions {
        flex-direction: column;
        align-items: center;
      }
      .onboarding-hover-btn,
      .onboarding-call-btn {
        width: auto;
        align-self: center;
      }
      .onboarding-content {
        padding: 32px 24px;
      }
      .onboarding-card::before {
        background-size: cover;
        background-position: center top;
      }
      .onboarding-card::after {
        left: 0;
        background: linear-gradient(180deg, rgba(26, 44, 66, 0.15) 0%, rgba(26, 44, 66, 0.55) 40%, rgba(26, 44, 66, 0.82) 100%);
      }
    }

    @media (max-width: 600px) {
      .onboarding-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
      }
      .onboarding-step {
        flex: none;
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding-right: 0;
        position: relative;
      }
      .onboarding-step-top,
      .onboarding-step:not(:last-child) .onboarding-step-top {
        width: auto;
        margin-bottom: 0;
        flex-shrink: 0;
      }
      .onboarding-step-text {
        flex: 1;
        min-width: 0;
        padding-top: 10px;
      }
      .onboarding-step-connector {
        display: none;
      }

      /* Статичная серая вертикальная линия */
      .onboarding-step:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 22px;
        top: 44px;
        bottom: -24px;
        width: 2px;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.14);
        border-radius: 2px;
      }

      /* Бегущая голубая полоска */
      .onboarding-step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 22px;
        top: 44px;
        bottom: -24px;
        width: 2px;
        transform: translateX(-50%);
        background-image: linear-gradient(180deg, transparent 0, var(--accent-cyan) 28px, transparent 56px);
        background-repeat: no-repeat;
        background-size: 2px 56px;
        background-position: 0 -56px;
        pointer-events: none;
      }

      .onboarding-step:nth-child(1)::after { animation: ob-line-v 3.6s linear infinite; animation-delay: 0s; }
      .onboarding-step:nth-child(2)::after { animation: ob-line-v 3.6s linear infinite; animation-delay: 1.2s; }

      @keyframes ob-line-v {
        0%   { background-position: 0 -56px; }
        25%  { background-position: 0 calc(100% + 56px); }
        100% { background-position: 0 calc(100% + 56px); }
      }
    }

    /* -------------------------------------------------------------
       10b. PARTNERS SECTION
       ------------------------------------------------------------- */
    @keyframes partners-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .partners-section {
      padding: clamp(50px, 6vw, 90px) 0;
      position: relative;
      background: transparent;
      border-top: 1px solid rgba(255, 255, 255, 0.03);
      z-index: 2;
      overflow: hidden;
    }

    .partners-marquee-wrapper {
      overflow: hidden;
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 24px;
      box-sizing: border-box;
      /* fade edges */
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .partners-marquee-track {
      display: flex;
      align-items: center;
      gap: 60px;
      width: max-content;
      animation: partners-scroll 28s linear infinite;
    }

    .partners-marquee-track:hover {
      animation-play-state: paused;
    }

    .partner-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-white);
      opacity: 0.45;
      transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
      text-decoration: none;
      flex-shrink: 0;
      height: 60px;
      padding: 0 20px;
    }

    .partner-logo-item:hover {
      opacity: 0.95;
      transform: translateY(-2px);
      color: var(--accent-cyan);
    }

    .partner-logo-svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .partner-logo-img {
      width: auto;
      height: 100%;
      max-width: 200px;
      display: block;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: filter 0.3s ease;
    }

    .partner-logo-item:hover .partner-logo-img {
      filter: brightness(0) invert(1) sepia(1) saturate(0.5) hue-rotate(193deg) brightness(0.75);
    }

    @media (max-width: 768px) {
      .partner-logo-item {
        height: 44px;
        padding: 0 16px;
      }
      .partner-logo-img {
        max-width: 140px;
      }
      .partners-marquee-track {
        gap: 40px;
        animation-duration: 22s;
      }
    }

    /* -------------------------------------------------------------
       12. CTA BANNER
       ------------------------------------------------------------- */
    .cta-banner {
      position: relative;
      padding: 80px 0;
      text-align: center;
      z-index: 2;
    }

    .cta-box {
      background: radial-gradient(circle at top right, rgba(97, 117, 162, 0.15) 0%, rgba(13, 21, 48, 0.6) 80%);
      border: 1px solid rgba(97, 117, 162, 0.2);
      border-radius: 24px;
      padding: 60px 24px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      max-width: 1000px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
    }
    
    @media (min-width: 768px) {
      .cta-box {
        padding: 80px 60px;
      }
    }

    .cta-box-title {
      font-size: 2.25rem;
      margin-bottom: 16px;
      font-family: var(--font-serif);
      font-weight: 600;
    }
    
    @media (min-width: 768px) {
      .cta-box-title {
        font-size: 3rem;
      }
    }

    .cta-box-subtext {
      font-size: 1.1rem;
      color: var(--text-light-blue);
      max-width: 600px;
      margin: 0 auto 40px auto;
    }

    .cta-box-buttons {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
    }

    @media (min-width: 480px) {
      .cta-box-buttons {
        flex-direction: row;
      }
    }

    /* -------------------------------------------------------------
       13. EMBEDDED LEAD CAPTURE FORM
       ------------------------------------------------------------- */
    .lead-form-section {
      background: transparent;
      border-top: 1px solid var(--border-card);
    }

    .lead-form-container {
      max-width: var(--container-max);
      margin: 0 auto;
      background: var(--bg-card);
      border: 1px solid var(--border-card);
      border-radius: 8px;
      padding: 24px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    
    @media (min-width: 768px) {
      .lead-form-container {
        padding: 40px;
      }
    }

    @media (min-width: 1024px) {
      .lead-form-container {
        padding: 50px;
      }
    }

    .lead-form-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .lead-form-subtitle {
      text-align: center;
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 40px;
    }

    .lead-form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .lead-form-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    .form-comment-submit-row {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }

    @media (min-width: 768px) {
      .form-comment-submit-row {
        flex-direction: row;
        gap: 24px;
        align-items: center;
      }
      .form-comment-submit-row .form-input {
        flex-grow: 1;
      }
      .form-comment-submit-row .btn {
        flex-shrink: 0;
        white-space: nowrap;
      }
    }

    .form-label {
      font-size: 0.85rem;
      color: var(--text-light-blue);
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    .form-input {
      background: rgba(10, 15, 30, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 14px 16px;
      color: var(--text-white);
      font-family: var(--font-sans);
      font-size: 0.95rem;
      transition: var(--transition-fast);
      width: 100%;
    }

    .form-input:focus {
      outline: none;
      border-color: var(--accent-cyan);
      box-shadow: 0 0 10px rgba(97, 117, 162, 0.25);
      background: rgba(10, 15, 30, 1);
    }

    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-submit-container {
      margin-top: 30px;
      display: flex;
      justify-content: flex-end;
    }

    .form-submit-container .btn {
      width: 100%;
    }

    @media (min-width: 768px) {
      .form-submit-container .btn {
        width: auto;
        padding-left: 45px;
        padding-right: 45px;
      }
    }

    .btn-form-submit {
      background-color: #889cc4 !important;
      color: #0a0f1e !important;
      border: none !important;
      box-shadow: none !important;
      border-radius: 8px;
      font-weight: 500;
      padding: 14px 36px;
      transition: var(--transition-smooth);
      cursor: pointer;
    }
    
    .btn-form-submit:hover {
      background-color: #a3b7de !important;
      transform: translateY(-2px);
    }

    /* Success state */
    .form-success-message {
      display: none;
      text-align: center;
      padding: 40px 0;
    }

    .form-success-icon {
      width: 64px;
      height: 64px;
      background: rgba(97, 117, 162, 0.1);
      border: 1px solid var(--accent-cyan);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px auto;
      color: var(--accent-cyan);
    }

    .form-success-icon svg {
      width: 32px;
      height: 32px;
      fill: currentColor;
    }

    .form-success-text-title {
      font-family: var(--font-serif);
      font-size: 1.75rem;
      margin-bottom: 12px;
    }

    .form-success-text-sub {
      color: var(--text-muted);
      max-width: 450px;
      margin: 0 auto;
    }
