:root {
      --bg: #050816;
      --bg-soft: #0b1020;
      --accent: #4f46e5;
      --accent-soft: rgba(79, 70, 229, 0.12);
      --accent-strong: #22c55e;
      --text: #f9fafb;
      --muted: #9ca3af;
      --border: #1f2937;
      --danger: #ef4444;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
      --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.7);
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%);
      color: var(--text);
      line-height: 1.8;          /* increased */
      font-size: 16.5px;         /* increased base font size */
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      max-width: 1120px;
      margin: 0 auto;
      padding: 20px 16px 64px;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0 24px;
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(16px);
      background: linear-gradient(
        to bottom,
        rgba(2, 6, 23, 0.95),
        rgba(2, 6, 23, 0.6),
        transparent
      );
      border-bottom: 1px solid rgba(31, 41, 55, 0.8);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 74px;
      height: 74px;
      border-radius: 999px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .logo-text-title {
      font-weight: 600;
      letter-spacing: 0.04em;
      font-size: 22px;
      text-transform: uppercase;
    }

    .logo-text-sub {
      font-size: 16px;
      color: var(--muted);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 15px;
      color: var(--muted);
    }

    nav a {
      position: relative;
      padding-bottom: 2px;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, #4f46e5, #22c55e);
      transition: width 0.18s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    .btn {
      border-radius: 999px;
      border: none;
      padding: 9px 20px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.12s ease, box-shadow 0.12s ease,
        background 0.12s ease;
    }

    .btn-primary {
      background: linear-gradient(120deg, #4f46e5, #22c55e);
      color: #ffffff;
      box-shadow: 0 10px 30px rgba(34, 197, 94, 0.6);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(34, 197, 94, 0.7);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(75, 85, 99, 0.9);
      color: var(--muted);
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 0.9);
    }

    .btn-strategy {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      min-width: 150px;
      border-radius: 999px;
      background: linear-gradient(90deg, #4f46e5 0%, #22c55e 100%);
      color: #e1e1e1;
      font-size: 1.00rem;
      font-weight: 500;
      padding: 10px 20px;
      box-shadow: 0 6px 32px rgba(34, 197, 94, 0.3);
      border: none;
      transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
      cursor: pointer;
    }

    .btn-strategy:hover {
      transform: translateY(-2px) scale(1.025);
      box-shadow: 0 12px 40px rgba(34, 197, 94, 0.45);
      background: linear-gradient(90deg, #3b32b6, #179e53);
      color: #1a1a1a;
    }

    .btn.btn-primary {
      padding: 10px 20px;
    }

    /* HERO */

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
      gap: 40px; /* more spacing */
      padding: 40px 0 48px;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(55, 65, 81, 0.9);
      color: var(--muted);
      margin-bottom: 18px;
    }

    .hero-eyebrow span.badge {
      background: rgba(34, 197, 94, 0.12);
      color: var(--accent-strong);
      padding: 3px 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 500;
    }

    .hero h1 {
      font-size: clamp(34px, 4.4vw, 46px);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .hero h1 span.gradient {
      background: linear-gradient(120deg, #4f46e5, #22c55e);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-sub {
      color: var(--muted);
      font-size: 15px;
      max-width: 520px;
      margin-bottom: 22px;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 22px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      font-size: 13px;
      color: var(--muted);
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-meta-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
    }

    .hero-card {
      background: radial-gradient(circle at top left, #111827, #020617);
      border-radius: var(--radius-xl);
      padding: 24px 20px;
      border: 1px solid rgba(55, 65, 81, 0.9);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-pill {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .hero-card h2 {
      font-size: 20px;
      margin-bottom: 14px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 12px;
    }

    .hero-small-card {
      background: rgba(15, 23, 42, 0.95);
      border-radius: 14px;
      padding: 12px 12px;
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 13px;
    }

    .hero-small-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
      margin-bottom: 5px;
    }

    .hero-small-main {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 5px;
    }

    .hero-small-sub {
      font-size: 13px;
      color: var(--muted);
    }

    .hero-blur {
      position: absolute;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(79, 70, 229, 0.4), transparent);
      top: -80px;
      right: -80px;
      filter: blur(18px);
      opacity: 0.9;
      pointer-events: none;
    }

    /* SECTIONS */

    section {
      padding: 64px 0; /* increased vertical spacing */
      border-top: 1px solid rgba(31, 41, 55, 0.9);
    }

    .section-header {
      margin-bottom: 24px;
    }

    .section-eyebrow {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .section-title {
      font-size: 26px; /* bigger */
      margin-bottom: 12px;
    }

    .section-sub {
      font-size: 15px;
      color: var(--muted);
      max-width: 540px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 48px; /* more gap */
      margin-bottom: 48px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 32px; /* more gap */
    }

    .card {
      background: rgba(15, 23, 42, 0.95);
      border-radius: var(--radius-lg);
      padding: 26px 22px;        /* increased padding */
      border: 1px solid rgba(55, 65, 81, 0.9);
      box-shadow: var(--shadow-card);
      font-size: 14.5px;         /* increased text size */
    }

    .card-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 12px;
      gap: 10px;
    }

    .card-title {
      font-size: 18px; /* bigger */
      font-weight: 600;
    }

    .card-tag {
      font-size: 12px;
      padding: 4px 22px;
      border-radius: 999px;
      background: rgba(31, 41, 55, 1);
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      white-space: nowrap;
    }

    .card-body {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .card-list {
      list-style: none;
      padding-left: 0;
      margin: 0;
      font-size: 14px;
      color: var(--muted);
    }

    .card-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;           /* wider gap */
      margin-bottom: 10px; /* more vertical spacing */
    }

    .card-bullet {
      width: 5px;
      height: 5px;
      border-radius: 999px;
      margin-top: 6px;
      background: var(--accent);
      flex-shrink: 0;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .pill {
      font-size: 12px;
      padding: 3px 9px;
      border-radius: 999px;
      background: rgba(31, 41, 55, 0.9);
      color: var(--muted);
    }

    /* Pricing */

    .pricing-card {
      position: relative;
    }

    .custom-package {
      margin-top: 48px;
    }

    .pricing-price {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .pricing-note {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .badge-accent {
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.14);
      color: var(--accent-strong);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    /* How it works steps */

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 32px; /* more gap */
    }

    .step {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
    }

    .step-index {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      border: 1px solid rgba(75, 85, 99, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: var(--muted);
    }

    .step-title {
      font-weight: 500;
      margin-bottom: 4px;
      font-size: 15px;
    }

    .disclaimer {
      font-size: 12px;
      color: var(--muted);
      border-radius: 10px;
      padding: 12px 14px;
      border: 1px dashed rgba(75, 85, 99, 0.9);
      background: rgba(15, 23, 42, 0.9);
      margin-top: 16px;
    }

    /* CTA & footer */

    .cta {
      text-align: center;
      padding: 44px 22px;
      border-radius: 22px;
      background: radial-gradient(circle at top, #111827, #020617);
      border: 1px solid rgba(55, 65, 81, 0.9);
      box-shadow: var(--shadow-soft);
      margin-top: 12px;
    }

    .cta h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .cta p {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 22px;
    }

    footer {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(31, 41, 55, 0.9);
      font-size: 13px;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    footer a {
      color: var(--muted);
    }

    /* Responsive */

    @media (max-width: 840px) {
      header {
        gap: 10px;
      }

      nav {
        display: none;
      }

      .hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
      }

      .hero-card {
        order: -1;
      }

      .grid-3 {
        grid-template-columns: minmax(0, 1fr);
      }

      .grid-2 {
        grid-template-columns: minmax(0, 1fr);
      }

      .steps {
        grid-template-columns: minmax(0, 1fr);
      }

      .page {
        padding-inline: 14px;
      }

      section {
        padding: 48px 0;
      }

      .testimonials-columns {
        grid-template-columns: 1fr;
        gap: 0;
        width: 96%;
      }

      .testimonial-card {
        font-size: 0.97rem;
        padding: 24px 14px 20px 14px;
      }
    }

    /* TESTIMONIALS SECTION */
    .testimonials-section {
      margin-top: 80px;
      padding: 64px 0 48px 0;
      position: relative;
      overflow: hidden;
      width: 100%;
      display: block;
      visibility: visible;
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 16px;
      padding-right: 16px;
    }

    .testimonials-header {
      text-align: center;
      color: var(--text);
      margin-bottom: 36px;
    }

    .testimonials-header h2 {
      font-size: 2.6rem;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .testimonials-header p {
      color: var(--muted);
      font-size: 1.1rem;
    }

    .testimonials-columns {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      align-items: start;
      width: 100%;
      margin: 0 auto;
      max-width: 1024px;
      overflow: hidden;
      height: 596px;
      position: relative;
      /* Gradient mask for fading top and bottom */
      mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    /* Column animation: pseudo-continuous loop using keyframes */
    .testimonials-anim {
      display: flex;
      flex-direction: column;
      gap: 32px;
      animation-duration: 18s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }

    .testimonials-anim-up {
      animation-name: testimonials-scroll-up;
    }

    .testimonials-anim-down {
      animation-name: testimonials-scroll-down;
    }

    @keyframes testimonials-scroll-up {
      0% {
        transform: translateY(0%);
      }
      100% {
        transform: translateY(-50%);
      }
    }

    @keyframes testimonials-scroll-down {
      0% {
        transform: translateY(-50%);
      }
      100% {
        transform: translateY(0%);
      }
    }

    .testimonials-column {
      min-width: 0;
      flex-shrink: 0;
      display: flex !important;
      flex-direction: column;
    }

    .testimonial-card {
      background: rgba(18, 22, 34, 0.93);
      border-radius: 24px;
      border: 1px solid rgba(200, 200, 255, 0.08);
      padding: 32px 28px 28px 28px;
      margin-bottom: 0;
      box-shadow: 0 4px 24px 0 rgba(56, 56, 78, 0.07);
      color: #e3e8ff;
      font-size: 1rem;
      max-width: 99%;
      transition: transform 0.3s;
      height: 180px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testimonial-card .testimonial-text {
      font-size: 1.13rem;
      color: var(--text);
      font-weight: 400;
      margin-bottom: 18px;
    }

    .testimonial-card .testimonial-author {
      font-weight: 500;
      background: linear-gradient(90deg, #4f46e5 0%, #22c55e 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-size: 1.03rem;
      text-align: left;
    }