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

  :root {
    --dp: #181818;
    --dp2: #2D2D2D;
    --dp3: #181818;
    --accent: #E0734B;
    --accent2: #D97757;
    --accent3: #E0734B;
    --cream: #FAF8F5;
    --gray: #f9fafb;
    --white: #ffffff;
    --text: #181818;
    --text-muted: #6b7280;
    --r: 20px;
    --r2: 32px;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─────────────────────────────────
     HERO
  ───────────────────────────────── */
  .hero-section {
    background: var(--dp);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
  }

  .hero-glow-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.35);
    border-radius: 50%;
    filter: blur(100px);
    top: -100px;
    left: -80px;
    pointer-events: none;
  }

  .hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(196, 181, 253, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    bottom: -80px;
    right: -60px;
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 181, 253, 0.12);
    border: 1px solid rgba(196, 181, 253, 0.25);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .hero-label-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: h-pulse 2s ease-in-out infinite;
  }

  @keyframes h-pulse {

    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: 0.6;
      transform: scale(0.85);
    }
  }

  .hero-h1 {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }

  .hero-h1 .italic-violet {
    color: var(--accent);
    font-style: italic;
  }

  .hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 36px;
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--dp);
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.15s, background 0.2s;
    letter-spacing: 0.01em;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    background: #fff;
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(196, 181, 253, 0.3);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.15s, background 0.2s;
  }

  .btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
  }

  /* Metric cards */
  .hero-metrics {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .metric-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(196, 181, 253, 0.2);
    border-radius: 16px;
    padding: 14px 18px;
    flex: 1;
    min-width: 90px;
  }

  .metric-value {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }

  .metric-value .italic-violet {
    color: var(--accent);
    font-style: italic;
  }

  .metric-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
  }

  /* Scrolling cards right column */
  .hero-scroll-cards {
    display: flex;
    gap: 8px;
    height: 340px;
    overflow: hidden;
  }

  .scroll-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
  }

  .scroll-col-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .scroll-col-inner.up {
    animation: scrollUp 10s linear infinite;
  }

  .scroll-col-inner.down {
    animation: scrollDown 12s linear infinite;
  }

  @keyframes scrollUp {
    0% {
      transform: translateY(0);
    }

    100% {
      transform: translateY(-50%);
    }
  }

  @keyframes scrollDown {
    0% {
      transform: translateY(-50%);
    }

    100% {
      transform: translateY(0);
    }
  }

  .sc-card {
    background: rgba(196, 181, 253, 0.1);
    border: 1px solid rgba(196, 181, 253, 0.18);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .sc-card.highlight {
    background: rgba(196, 181, 253, 0.2);
    border-color: rgba(196, 181, 253, 0.4);
    color: var(--accent);
  }

  /* ─────────────────────────────────
     MARQUEE URGENCE
  ───────────────────────────────── */
  .marquee-wrap {
    background: linear-gradient(90deg, var(--accent3), var(--dp2), var(--accent3));
    padding: 12px 0;
    overflow: hidden;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .marquee-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 16px;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* ─────────────────────────────────
     SECTIONS COMMUNES
  ───────────────────────────────── */
  section {
    padding: 80px 24px;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent3);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
  }

  .section-label .dot {
    width: 5px;
    height: 5px;
    background: var(--accent3);
    border-radius: 50%;
  }

  .section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .section-title .italic-violet {
    color: var(--accent3);
    font-style: italic;
  }

  .section-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 580px;
  }

  /* Dark section override */
  .section-dark {
    background: var(--dp);
  }

  .section-dark .section-label {
    background: rgba(196, 181, 253, 0.12);
    color: var(--accent);
  }

  .section-dark .section-label .dot {
    background: var(--accent);
  }

  .section-dark .section-title {
    color: #fff;
  }

  .section-dark .section-title .italic-violet {
    color: var(--accent);
  }

  .section-dark .section-sub {
    color: rgba(255, 255, 255, 0.6);
  }

  .section-cream {
    background: var(--cream);
  }

  .section-gray {
    background: var(--gray);
  }

  /* ─────────────────────────────────
     LOGOS / CERTIFICATIONS
  ───────────────────────────────── */
  .logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 44px;
  }

  .logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 52px;
    background: #fff;
    border: 1px solid rgba(45, 16, 96, 0.1);
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
    color: var(--dp);
    letter-spacing: 0.05em;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .logo-badge:hover {
    border-color: var(--accent3);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 44px;
  }

  .stat-card {
    background: #fff;
    border: 1px solid rgba(45, 16, 96, 0.08);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
  }

  .stat-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--dp);
    line-height: 1;
  }

  .stat-value span {
    color: var(--accent3);
    font-style: italic;
  }

  .stat-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 600;
  }

  /* ─────────────────────────────────
     INTRO SEO
  ───────────────────────────────── */
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 44px;
  }

  .intro-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .intro-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .intro-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(45, 16, 96, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
    transition: border-color 0.2s;
  }

  .intro-point:hover {
    border-color: var(--accent3);
  }

  .intro-point-icon {
    width: 32px;
    height: 32px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .intro-point-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dp);
    margin-bottom: 3px;
  }

  .intro-point-desc {
    font-size: 13px;
    color: var(--text-muted);
  }

  /* ─────────────────────────────────
     PLATEFORMES
  ───────────────────────────────── */
  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
  }

  .platform-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 181, 253, 0.18);
    border-radius: 24px;
    padding: 28px 24px;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .platform-card:hover {
    border-color: rgba(196, 181, 253, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
  }

  .platform-card.featured {
    border-color: var(--accent);
    background: rgba(196, 181, 253, 0.1);
  }

  .platform-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--dp);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .platform-logo {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .platform-name {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
  }

  .platform-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .platform-for {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .platform-for-val {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
  }

  .platform-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
  }

  .platform-perks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }

  .platform-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
  }

  .platform-perk::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─────────────────────────────────
     PROCESSUS
  ───────────────────────────────── */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 44px;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent3), var(--accent2));
    border-radius: 2px;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
  }

  .step-num {
    width: 56px;
    height: 56px;
    background: var(--dp);
    border: 2px solid var(--accent3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: border-color 0.2s, background 0.2s;
  }

  .process-step:hover .step-num {
    background: var(--accent3);
    border-color: var(--accent3);
    color: #fff;
  }

  .step-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--dp);
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ─────────────────────────────────
     PORTFOLIO
  ───────────────────────────────── */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 44px;
  }

  .portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(45, 16, 96, 0.1);
    background: #fff;
    transition: transform 0.15s, box-shadow 0.2s;
  }

  .portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
  }

  .portfolio-thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.05);
  }

  .portfolio-info {
    padding: 18px 20px;
  }

  .portfolio-sector {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .portfolio-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--dp);
    margin-bottom: 6px;
  }

  .portfolio-platform {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent3);
    margin-bottom: 10px;
  }

  .portfolio-result {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .portfolio-result strong {
    color: #16a34a;
  }

  /* ─────────────────────────────────
     SERVICES INCLUS
  ───────────────────────────────── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 44px;
  }

  .service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 181, 253, 0.15);
    border-radius: 20px;
    padding: 22px 18px;
    transition: border-color 0.2s, background 0.2s;
  }

  .service-item:hover {
    border-color: rgba(196, 181, 253, 0.4);
    background: rgba(255, 255, 255, 0.08);
  }

  .service-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 181, 253, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
  }

  .service-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
  }

  .service-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
  }

  /* ─────────────────────────────────
     TARIFS
  ───────────────────────────────── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
    align-items: start;
  }

  .pricing-card {
    background: #fff;
    border: 1px solid rgba(45, 16, 96, 0.1);
    border-radius: 24px;
    padding: 28px 24px;
    position: relative;
    transition: transform 0.15s, box-shadow 0.2s;
  }

  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.1);
  }

  .pricing-card.featured {
    border: 2px solid var(--accent3);
    background: linear-gradient(145deg, #fff, #f5f3ff);
    transform: scale(1.03);
  }

  .pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent3);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .pricing-plan {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }

  .pricing-price {
    font-size: 40px;
    font-weight: 900;
    color: var(--dp);
    line-height: 1;
    margin-bottom: 4px;
  }

  .pricing-price sup {
    font-size: 18px;
    vertical-align: super;
    margin-right: 2px;
    font-weight: 700;
  }

  .pricing-from {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
  }

  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #374151;
  }

  .pricing-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%237c3aed' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
  }

  .btn-pricing {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.15s, background 0.2s;
  }

  .btn-pricing.outline {
    border: 2px solid rgba(124, 58, 237, 0.3);
    color: var(--accent3);
  }

  .btn-pricing.outline:hover {
    background: rgba(124, 58, 237, 0.05);
  }

  .btn-pricing.filled {
    background: var(--accent3);
    color: #fff;
  }

  .btn-pricing.filled:hover {
    background: var(--dp2);
    transform: translateY(-2px);
  }

  /* ─────────────────────────────────
     AVIS
  ───────────────────────────────── */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
  }

  .review-card {
    background: #fff;
    border: 1px solid rgba(45, 16, 96, 0.08);
    border-radius: 20px;
    padding: 24px;
    transition: border-color 0.2s, transform 0.15s;
  }

  .review-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
  }

  .review-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
  }

  .review-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
  }

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

  .review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
  }

  .av1 {
    background: linear-gradient(135deg, var(--dp), var(--accent3));
  }

  .av2 {
    background: linear-gradient(135deg, #0c4a6e, #1d4ed8);
  }

  .av3 {
    background: linear-gradient(135deg, #831843, #be185d);
  }

  .review-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--dp);
  }

  .review-company {
    font-size: 13px;
    color: var(--text-muted);
  }

  .reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
    padding: 20px 32px;
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 20px;
  }

  .reviews-big-score {
    font-size: 48px;
    font-weight: 900;
    color: var(--dp);
    line-height: 1;
  }

  .reviews-stars-big {
    font-size: 24px;
    color: #f59e0b;
    letter-spacing: 2px;
  }

  .reviews-count {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* ─────────────────────────────────
     FAQ
  ───────────────────────────────── */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 44px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-item {
    background: #fff;
    border: 1px solid rgba(45, 16, 96, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .faq-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dp);
    text-align: left;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent3);
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent3);
    color: #fff;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
  }

  .faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(45, 16, 96, 0.06);
    padding-top: 16px;
  }

  /* ─────────────────────────────────
     CTA FINAL
  ───────────────────────────────── */
  .cta-section {
    background: var(--dp);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
  }

  .cta-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(124, 58, 237, 0.4);
    border-radius: 50%;
    filter: blur(120px);
    top: -200px;
    left: -100px;
    pointer-events: none;
  }

  .cta-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(196, 181, 253, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    bottom: -100px;
    right: -60px;
    pointer-events: none;
  }

  .cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 181, 253, 0.12);
    border: 1px solid rgba(196, 181, 253, 0.25);
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .cta-h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .cta-h2 .italic-violet {
    color: var(--accent);
    font-style: italic;
  }

  .cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
  }

  .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .cta-guar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
  }

  .cta-guar-item::before {
    content: '✓';
    color: #4ade80;
    font-weight: 800;
  }

  /* ─────────────────────────────────
     RESPONSIVE
  ───────────────────────────────── */
  @media (max-width: 900px) {
    .hero-inner {
      grid-template-columns: 1fr;
    }

    .hero-scroll-cards {
      display: none;
    }

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

    .process-steps {
      grid-template-columns: 1fr 1fr;
    }

    .process-steps::before {
      display: none;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-card.featured {
      transform: none;
    }

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

    .portfolio-grid {
      grid-template-columns: repeat(2, 1fr);
    }

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

  @media (max-width: 600px) {
    .portfolio-grid {
      grid-template-columns: 1fr;
    }

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

    .stats-row {
      grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
      grid-template-columns: 1fr;
    }

    .reviews-summary {
      flex-direction: column;
      text-align: center;
    }
  }