:root {
      --bg: #050816;
      --bg-alt: #0b1020;
      --card-bg: #0f172a;
      --accent: #38bdf8;
      --accent-soft: rgba(56, 189, 248, 0.12);
      --accent-2: #22c55e;
      --text: #e5e7eb;
      --text-muted: #9ca3af;
      --border-subtle: rgba(148, 163, 184, 0.35);
      --danger: #ef4444;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.65);
      --radius-lg: 18px;
      --radius-xl: 26px;
      --transition-fast: 0.18s ease-out;
      --transition: 0.25s ease;
      --max-width: 1120px;
    }

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

    html, body {
      height: 100%;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top, #0f172a 0, #020617 45%, #000 100%);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
    }

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

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

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(16px);
      background: linear-gradient(to bottom, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.7), transparent);
      border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 0;
      gap: 1rem;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-circle {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #38bdf8, #0ea5e9 40%, #0f172a 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4), 0 14px 35px rgba(15, 23, 42, 0.85);
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-title {
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .brand-subtitle {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.15rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: linear-gradient(to right, var(--accent), var(--accent-2));
      transition: width var(--transition-fast);
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.55rem 1.15rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      background: transparent;
      color: var(--text);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    }

    .btn-primary {
      background: radial-gradient(circle at 10% 0%, #38bdf8, #0ea5e9);
      border-color: rgba(56, 189, 248, 0.8);
      color: #0b1220;
      box-shadow: 0 16px 40px rgba(37, 99, 235, 0.55);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 55px rgba(37, 99, 235, 0.7);
    }

    .btn-ghost {
      border-color: rgba(148, 163, 184, 0.45);
      background: rgba(15, 23, 42, 0.85);
    }

    .btn-ghost:hover {
      border-color: rgba(148, 163, 184, 0.9);
      background: rgba(15, 23, 42, 1);
      transform: translateY(-1px);
    }

    .btn span.icon {
      font-size: 1rem;
      line-height: 1;
    }

    /* HERO */
    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
      gap: 2.4rem;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      background: radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
      border: 1px solid rgba(56, 189, 248, 0.35);
      font-size: 0.78rem;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .eyebrow-badge {
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 0.7rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .hero-title {
      font-size: clamp(2.3rem, 3vw, 2.9rem);
      line-height: 1.08;
      margin-bottom: 0.9rem;
      letter-spacing: 0.01em;
    }

    .hero-title span.gradient {
      background: linear-gradient(to right, #38bdf8, #22c55e);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 34rem;
      margin-bottom: 1.2rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.5rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent-2);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1rem;
    }

    .hero-guarantee {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.6rem 1.2rem;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .hero-guarantee span {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .hero-guarantee .shield {
      width: 16px;
      height: 16px;
      border-radius: 6px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    .hero-card {
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 55%), radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.1), transparent 55%), var(--card-bg);
      border-radius: var(--radius-xl);
      padding: 1.4rem 1.4rem 1.4rem;
      border: 1px solid rgba(148, 163, 184, 0.45);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 60%);
      opacity: 0.9;
      pointer-events: none;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1.1rem;
      position: relative;
      z-index: 1;
    }

    .hero-card-title {
      font-size: 0.92rem;
      font-weight: 600;
    }

    .hero-card-badge {
      font-size: 0.7rem;
      padding: 0.18rem 0.6rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.88);
      border: 1px solid rgba(148, 163, 184, 0.55);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.7rem;
      margin-bottom: 1.1rem;
      position: relative;
      z-index: 1;
    }

    .hero-stat {
      padding: 0.6rem 0.7rem;
      border-radius: 0.9rem;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: rgba(15, 23, 42, 0.92);
    }

    .hero-stat-label {
      font-size: 0.68rem;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .hero-stat-value {
      font-size: 0.9rem;
      font-weight: 600;
    }

    .hero-tagline {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
      position: relative;
      z-index: 1;
    }

    .hero-price-row {
      display: flex;
      align-items: baseline;
      gap: 0.65rem;
      margin-bottom: 0.6rem;
      position: relative;
      z-index: 1;
    }

    .hero-price-old {
      font-size: 0.9rem;
      color: var(--text-muted);
      text-decoration: line-through;
    }

    .hero-price {
      font-size: 1.45rem;
      font-weight: 700;
    }

    .hero-price-pill {
      font-size: 0.72rem;
      padding: 0.18rem 0.5rem;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.18);
      border: 1px solid rgba(34, 197, 94, 0.7);
      color: #bbf7d0;
    }

    .hero-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-top: 0.8rem;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }

    .hero-card-note {
      font-size: 0.72rem;
      color: var(--text-muted);
      max-width: 12rem;
    }

    .hero-card-badge-2 {
      font-size: 0.7rem;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px dashed rgba(148, 163, 184, 0.7);
    }

    /* SECTION WRAPPERS */
    section {
      padding: 2.8rem 0 2.2rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-kicker {
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-size: 1.6rem;
      margin-bottom: 0.4rem;
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 34rem;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* BENEFITS */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.3rem;
    }

    .benefit-card {
      background: var(--bg-alt);
      border-radius: var(--radius-lg);
      padding: 1.1rem 1rem;
      border: 1px solid var(--border-subtle);
      position: relative;
      overflow: hidden;
    }

    .benefit-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 65%);
      opacity: 0;
      transition: opacity var(--transition);
      pointer-events: none;
    }

    .benefit-card:hover::before {
      opacity: 1;
    }

    .benefit-icon {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      margin-bottom: 0.7rem;
    }

    .benefit-title {
      font-size: 0.98rem;
      margin-bottom: 0.3rem;
    }

    .benefit-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* PROGRAM */
    .program-wrapper {
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(0, 2.2fr);
      gap: 1.9rem;
      align-items: flex-start;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.9rem;
    }

    .pill {
      font-size: 0.75rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.5);
      color: var(--text-muted);
    }

    .program-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-top: 0.9rem;
    }

    .program-alert {
      margin-top: 0.9rem;
      font-size: 0.8rem;
      padding: 0.7rem 0.8rem;
      border-radius: 0.9rem;
      border: 1px dashed rgba(234, 179, 8, 0.7);
      background: rgba(24, 24, 27, 0.85);
      color: #facc15;
    }

    .modules-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .module-card {
      background: var(--bg-alt);
      border-radius: var(--radius-lg);
      padding: 0.9rem 0.95rem;
      border: 1px solid var(--border-subtle);
    }

    .module-label {
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.2rem;
    }

    .module-title {
      font-size: 0.92rem;
      margin-bottom: 0.4rem;
    }

    .module-items {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.7;
      list-style: none;
      padding-left: 0;
    }

    .module-items li::before {
      content: "• ";
      color: var(--accent);
    }

    /* TARGET + BONUSES + SOCIAL PROOF */
    .triple-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr) minmax(0, 1.6fr);
      gap: 1.4rem;
    }

    .card {
      background: var(--bg-alt);
      border-radius: var(--radius-lg);
      padding: 1.15rem 1.05rem;
      border: 1px solid var(--border-subtle);
    }

    .card h3 {
      font-size: 0.98rem;
      margin-bottom: 0.35rem;
    }

    .card p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 0.5rem;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.22rem 0.55rem;
      border-radius: 999px;
      font-size: 0.72rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }

    .ul-check {
      list-style: none;
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.7;
      padding-left: 0;
    }

    .ul-check li {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0.25rem;
    }

    .ul-check span.icon {
      font-size: 0.9rem;
      margin-top: 0.05rem;
      color: var(--accent-2);
    }

    .quote {
      font-size: 0.8rem;
      line-height: 1.7;
      margin-bottom: 0.6rem;
    }

    .quote small {
      display: block;
      margin-top: 0.45rem;
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .avatar-row {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 0.4rem;
    }

    .avatar-circle {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      background: radial-gradient(circle at 10% 0%, #38bdf8, #16a34a);
      border: 1px solid rgba(148, 163, 184, 0.8);
    }

    .avatar-text {
      font-size: 0.75rem;
    }

    .avatar-text span {
      display: block;
    }

    .avatar-text span.name {
      font-weight: 500;
    }

    .rating {
      font-size: 0.75rem;
      color: #fde68a;
      margin-top: 0.15rem;
    }

    /* PRICING */
    .pricing-section {
      padding-top: 1.5rem;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(0, 2fr);
      gap: 1.8rem;
      align-items: center;
    }

    .pricing-card {
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 60%), radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.12), transparent 60%), #020617;
      border-radius: var(--radius-xl);
      padding: 1.4rem 1.3rem;
      border: 1px solid rgba(148, 163, 184, 0.65);
      box-shadow: var(--shadow-soft);
    }

    .pricing-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-bottom: 0.7rem;
    }

    .pricing-pill {
      font-size: 0.7rem;
      padding: 0.2rem 0.65rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.75);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .pricing-main {
      margin-bottom: 0.8rem;
    }

    .pricing-amount-row {
      display: flex;
      align-items: flex-end;
      gap: 0.7rem;
      margin-bottom: 0.4rem;
    }

    .pricing-amount {
      font-size: 2rem;
      font-weight: 700;
    }

    .pricing-amount-row span.small {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .pricing-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .pricing-badge {
      font-size: 0.78rem;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.18);
      border: 1px solid rgba(34, 197, 94, 0.75);
      color: #bbf7d0;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-bottom: 0.9rem;
    }

    .pricing-list {
      list-style: none;
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.8;
      padding-left: 0;
      margin-bottom: 0.9rem;
    }

    .pricing-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0.25rem;
    }

    .pricing-list span.icon {
      font-size: 0.9rem;
      margin-top: 0.1rem;
      color: var(--accent-2);
    }

    .pricing-footer {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .pricing-footer small {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .pricing-right p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 0.8rem;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 0.7rem;
    }

    .badge {
      font-size: 0.75rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: var(--text-muted);
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
      gap: 1.7rem;
      align-items: flex-start;
    }

    .faq-intro p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-top: 0.5rem;
    }

    .faq-list {
      border-radius: var(--radius-lg);
      background: var(--bg-alt);
      border: 1px solid var(--border-subtle);
      overflow: hidden;
    }

    .faq-item {
      border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      width: 100%;
      text-align: left;
      background: transparent;
      border: none;
      color: inherit;
      padding: 0.85rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      font-size: 0.9rem;
      cursor: pointer;
    }

    .faq-toggle {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 1rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
      transition: max-height 0.2s ease, padding-bottom 0.2s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding-bottom: 0.9rem;
    }

    .faq-item.open .faq-toggle {
      background: rgba(148, 163, 184, 0.9);
      color: #020617;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid rgba(30, 64, 175, 0.5);
      padding: 1.5rem 0 1.6rem;
      margin-top: 1.5rem;
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.98));
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .footer-links a {
      opacity: 0.8;
    }

    .footer-links a:hover {
      opacity: 1;
    }

    /* RESPONSIVE */
    .nav-toggle {
      display: none;
      background: transparent;
      border: none;
      color: var(--text);
      font-size: 1.1rem;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-card {
        order: 0;
      }

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

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

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

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

    @media (max-width: 720px) {
      header {
        background: rgba(15, 23, 42, 0.98);
      }

      .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 0.7rem 1.5rem 0.9rem;
        background: rgba(15, 23, 42, 0.98);
        border-bottom: 1px solid rgba(30, 64, 175, 0.7);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.18s ease-out, opacity 0.18s ease-out;
      }

      .nav-links.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
      }

      .nav-links a {
        display: block;
        padding: 0.25rem 0;
      }

      .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
      }

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

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

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

      .hero {
        padding-top: 2.4rem;
      }

      section {
        padding: 2.3rem 0 1.8rem;
      }

      .footer-inner {
        flex-direction: column-reverse;
        align-items: flex-start;
      }
    }


    /* ===== PAGE VIDEO ===== */

.hero-video {
  padding: 3.5rem 0 3rem;
}

.video-title {
  text-align: center;
  margin-bottom: 0.8rem;
}

.video-intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.8rem;
}

/* vidéo responsive */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at top, #0f172a, #020617);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* pavé d’offre qui s’affiche après N secondes */
.offer-panel {
  max-width: 900px;
  margin: 1.9rem auto 0;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);

  /* caché au début */
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.offer-panel.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.offer-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.offer-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* responsive */
@media (max-width: 720px) {
  .hero-video {
    padding-top: 2.4rem;
  }

  .offer-panel {
    padding: 1.2rem 1.1rem;
    margin-top: 1.5rem;
  }

  .offer-title {
    font-size: 1.1rem;
  }
}


img {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.img-hero {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.65);
}

/* === GRILLE 2 COLONNES AVEC IMAGE + TEXTE === */

.two-columns {
  padding: 2.8rem 0 2.2rem;
}

.two-columns-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 2.2rem;
  align-items: center;
}

.two-col-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}

.two-col-text .section-title {
  margin-bottom: 0.6rem;
}

.two-col-paragraph {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .two-columns-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .two-col-text {
    order: 2;
  }

  .two-col-image {
    order: 1;
  }

  .two-col-paragraph {
    text-align: left;
  }
}


