:root {
      --bg: #f8f1e5;
      --paper: #fffdf7;
      --ink: #10192e;
      --blue: #0b1530;
      --muted: #647085;
      --line: rgba(16, 25, 46, 0.12);
      --mint: #40e0a5;
      --mint-2: #b7ffe1;
      --mint-dark: #078260;
      --indigo: #30245f;
      --indigo-soft: #eee9fb;
      --white: #ffffff;
      --shadow: 0 28px 80px rgba(16, 25, 46, 0.13);
      --shadow-soft: 0 16px 46px rgba(16, 25, 46, 0.08);
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at 10% 7%, rgba(64, 224, 165, 0.26), transparent 27%),
        radial-gradient(circle at 91% 12%, rgba(48, 36, 95, 0.16), transparent 30%),
        linear-gradient(180deg, var(--bg), #fffaf2 48%, var(--bg));
      color: var(--ink);
      overflow-x: hidden;
    }

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

    .site-shell {
      position: relative;
      min-height: 100vh;
    }

    .site-shell::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 0;
      opacity: 0.4;
      pointer-events: none;
      background-image:
        linear-gradient(116deg, transparent 0 18%, rgba(48, 36, 95, 0.045) 18.15% 18.7%, transparent 18.85% 100%),
        linear-gradient(116deg, transparent 0 44%, rgba(64, 224, 165, 0.07) 44.15% 44.7%, transparent 44.85% 100%),
        linear-gradient(116deg, transparent 0 70%, rgba(48, 36, 95, 0.04) 70.15% 70.7%, transparent 70.85% 100%);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(255, 250, 240, 0.84);
      border-bottom: 1px solid rgba(16, 25, 46, 0.08);
    }

    .header-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 18px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--blue);
      font-weight: 950;
      letter-spacing: -0.05em;
      white-space: nowrap;
    }

    .brand-logo {
      display: block;
      height: 50px;
      width: auto;
      max-width: none;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      color: white;
      font-size: 18px;
      font-weight: 950;
      background: linear-gradient(135deg, var(--mint), var(--mint-2) 44%, var(--indigo) 45% 100%);
      box-shadow: 0 16px 34px rgba(7, 130, 96, 0.26);
    }

    .logo-fallback {
      display: none;
    }

    .brand-text {
      font-size: 25px;
      line-height: 0.86;
    }

    .brand-line-main {
      display: inline-flex;
      align-items: baseline;
      gap: 3px;
      margin-top: 0;
      color: var(--blue);
      font-size: 27px;
      font-weight: 950;
      letter-spacing: -0.04em;
    }

    .brand-line-sub {
      display: block;
      margin-top: 6px;
      color: var(--mint-dark);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .brand-n1 { color: var(--blue); }
    .brand-sep { color: rgba(11, 21, 48, 0.55); }
    .brand-n2 { color: #66BD9C; }
    .brand-word { color: var(--blue); margin-left: 4px; }

    .nav {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 14px;
      font-weight: 850;
    }

    .nav-list {
      display: flex;
      align-items: center;
      gap: 27px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-list li {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav a {
      position: relative;
      color: var(--blue);
    }

    .nav a:not(.nav-cta)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -7px;
      height: 2px;
      border-radius: 999px;
      background: var(--mint-dark);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.18s ease;
    }

    .nav a:not(.nav-cta):hover::after {
      transform: scaleX(1);
    }

    .btn,
    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 950;
      font-size: 13px;
      letter-spacing: 0.02em;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .nav-cta {
      margin-left: 8px;
      white-space: nowrap;
    }

    .btn-primary,
    .nav-cta {
      color: #061c16;
      background: var(--mint);
      box-shadow: 0 14px 32px rgba(64, 224, 165, 0.3);
    }

    .btn-secondary {
      color: var(--indigo);
      background: var(--white);
      border-color: rgba(48, 36, 95, 0.18);
    }

    .btn-dark {
      color: white;
      background: var(--indigo);
      box-shadow: 0 16px 36px rgba(48, 36, 95, 0.24);
    }

    .btn:hover,
    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(16, 25, 46, 0.17);
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      max-width: var(--max);
      margin: 0 auto;
      padding: 62px 28px;
    }

    .hero {
      padding-top: 74px;
      padding-bottom: 38px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
      gap: 32px;
      align-items: stretch;
    }

    .hero-ticket {
      position: relative;
      overflow: hidden;
      min-height: 575px;
      padding: 54px;
      border-radius: 40px;
      border: 1px solid rgba(48, 36, 95, 0.12);
      background:
        linear-gradient(145deg, rgba(255, 253, 247, 0.97), rgba(255, 250, 240, 0.88)),
        repeating-linear-gradient(90deg, transparent 0 28px, rgba(48, 36, 95, 0.035) 29px 30px);
      box-shadow: var(--shadow);
    }

    .hero-ticket::before,
    .hero-ticket::after,
    .ticket-card::before,
    .ticket-card::after,
    .price-card::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: var(--bg);
      box-shadow: inset 0 0 0 1px rgba(48, 36, 95, 0.1);
    }

    .hero-ticket::before,
    .hero-ticket::after {
      top: 50%;
      width: 54px;
      height: 54px;
      transform: translateY(-50%);
      z-index: 2;
    }

    .hero-ticket::before { left: -27px; }
    .hero-ticket::after { right: -27px; }

    .ticket-dash {
      position: absolute;
      inset: 28px 34px;
      border: 1px dashed rgba(48, 36, 95, 0.22);
      border-radius: 29px;
      pointer-events: none;
    }

    .race-lines {
      position: absolute;
      right: -110px;
      top: -72px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      border: 1px solid rgba(48, 36, 95, 0.12);
    }

    .race-lines::before,
    .race-lines::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(64, 224, 165, 0.26);
    }

    .race-lines::before { inset: 42px; }
    .race-lines::after {
      inset: 88px;
      border-color: rgba(48, 36, 95, 0.12);
    }

    .giant-number {
      position: absolute;
      pointer-events: none;
      user-select: none;
      font-weight: 950;
      line-height: 0.78;
      letter-spacing: -0.14em;
    }

    .giant-one {
      right: 120px;
      bottom: 34px;
      color: rgba(64, 224, 165, 0.18);
      font-size: 350px;
    }

    .giant-two {
      right: -28px;
      bottom: -22px;
      color: rgba(48, 36, 95, 0.06);
      font-size: 330px;
    }

    .eyebrow {
      position: relative;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--mint-dark);
      font-size: 12px;
      text-transform: uppercase;
      font-weight: 950;
      letter-spacing: 0.16em;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      border-radius: 999px;
      background: var(--mint-dark);
    }

    .hero-title {
      position: relative;
      z-index: 3;
      max-width: 735px;
      margin: 0;
      color: var(--blue);
      font-size: clamp(48px, 7.2vw, 90px);
      line-height: 0.9;
      letter-spacing: -0.078em;
    }

    .hero-title .accent {
      color: var(--indigo);
    }

    .hero-copy {
      position: relative;
      z-index: 3;
      max-width: 590px;
      margin: 26px 0 0;
      color: #28344a;
      font-size: 18px;
      line-height: 1.65;
    }

    .hero-points {
      position: relative;
      z-index: 3;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
      max-width: 380px;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(16, 25, 46, 0.1);
      color: var(--blue);
      font-size: 13px;
      font-weight: 800;
    }

    .hero-pill::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--mint-dark);
    }

    .hero-actions {
      position: relative;
      z-index: 3;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .side-panel {
      display: grid;
      gap: 18px;
    }

    .quick-card {
      position: relative;
      overflow: hidden;
      min-height: 286px;
      padding: 34px;
      border-radius: 34px;
      color: white;
      background: var(--indigo);
      box-shadow: var(--shadow);
    }

    .quick-card::before {
      content: "";
      position: absolute;
      width: 270px;
      height: 270px;
      right: -94px;
      top: -104px;
      border-radius: 50%;
      background: rgba(64, 224, 165, 0.22);
    }

    .quick-card::after {
      content: "12";
      position: absolute;
      right: 22px;
      bottom: -27px;
      color: rgba(255, 255, 255, 0.08);
      font-size: 150px;
      line-height: 0.8;
      font-weight: 950;
      letter-spacing: -0.12em;
    }

    .quick-card h2 {
      position: relative;
      z-index: 1;
      margin: 0;
      font-size: 37px;
      line-height: 0.96;
      letter-spacing: -0.055em;
    }

    .quick-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 13px;
      margin: 26px 0 0;
      padding: 0;
      list-style: none;
    }

    .quick-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 15px;
      line-height: 1.35;
    }

    .quick-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      flex: 0 0 10px;
      border-radius: 50%;
      background: var(--mint);
    }

    .stat-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .stat {
      min-height: 144px;
      padding: 23px;
      border-radius: 28px;
      border: 1px solid rgba(16, 25, 46, 0.08);
      background: rgba(255, 255, 255, 0.68);
      box-shadow: var(--shadow-soft);
    }

    .stat strong {
      display: block;
      margin-bottom: 10px;
      color: var(--indigo);
      font-size: 30px;
      line-height: 1;
      letter-spacing: -0.06em;
    }

    .stat span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.42;
    }

    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 26px;
      margin-bottom: 30px;
    }

    .section-heading h2 {
      max-width: 650px;
      margin: 0;
      color: var(--blue);
      font-size: clamp(33px, 4vw, 56px);
      line-height: 0.95;
      letter-spacing: -0.062em;
    }

    .section-heading p {
      max-width: 440px;
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.58;
    }

    .ticket-panel {
      position: relative;
      overflow: hidden;
      padding: 42px;
      border-radius: 38px;
      border: 1px solid rgba(16, 25, 46, 0.1);
      background:
        linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(243, 255, 249, 0.92)),
        repeating-linear-gradient(90deg, transparent 0 33px, rgba(48, 36, 95, 0.04) 34px 35px);
      box-shadow: var(--shadow);
    }

    .ticket-panel::after {
      content: "1-2";
      position: absolute;
      right: -22px;
      bottom: -34px;
      color: rgba(48, 36, 95, 0.06);
      font-size: 165px;
      line-height: 0.8;
      font-weight: 950;
      letter-spacing: -0.15em;
    }

    .value-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 26px;
    }

    .ticket-card {
      position: relative;
      overflow: hidden;
      min-height: 242px;
      padding: 28px;
      border-radius: 30px;
      border: 1px solid rgba(16, 25, 46, 0.1);
      background: rgba(255, 253, 247, 0.88);
      box-shadow: var(--shadow-soft);
    }

    .ticket-card::before,
    .ticket-card::after {
      top: 50%;
      width: 28px;
      height: 28px;
      transform: translateY(-50%);
    }

    .ticket-card::before { left: -14px; }
    .ticket-card::after { right: -14px; }

    .ticket-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      margin-bottom: 30px;
      border-radius: 16px;
      color: var(--indigo);
      background: var(--indigo-soft);
      font-weight: 950;
    }

    .ticket-card:nth-child(2) .ticket-num,
    .ticket-card:nth-child(4) .ticket-num {
      color: #087555;
      background: rgba(64, 224, 165, 0.24);
    }

    .ticket-card h3 {
      margin: 0 0 13px;
      font-size: 23px;
      letter-spacing: -0.04em;
    }

    .ticket-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .live-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .live-box {
      padding: 30px;
      border-radius: 30px;
      border: 1px solid rgba(16, 25, 46, 0.1);
      background: rgba(255, 255, 255, 0.64);
      box-shadow: var(--shadow-soft);
    }

    .live-box h3 {
      margin: 0 0 10px;
      font-size: 29px;
      letter-spacing: -0.045em;
    }

    .live-box > p {
      margin: 0 0 20px;
      color: var(--muted);
      line-height: 1.5;
    }

    .content-slot {
      position: relative;
      overflow: hidden;
      min-height: 132px;
      padding: 24px 24px 24px 28px;
      border-radius: 23px;
      border: 1px solid rgba(48, 36, 95, 0.14);
      background: var(--paper);
      color: #344058;
    }

    .content-slot::before {
      content: "";
      position: absolute;
      left: 0;
      top: 18px;
      bottom: 18px;
      width: 5px;
      border-radius: 999px;
      background: var(--mint);
    }

    .slot-empty strong {
      display: block;
      margin-bottom: 6px;
      color: var(--blue);
      font-size: 15px;
    }

    .slot-empty span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .pricing-band {
      position: relative;
      overflow: hidden;
      padding: 50px;
      border-radius: 42px;
      color: white;
      background:
        linear-gradient(140deg, rgba(48, 36, 95, 0.96), rgba(16, 25, 46, 0.985)),
        linear-gradient(90deg, transparent, rgba(64, 224, 165, 0.18));
      box-shadow: var(--shadow);
    }

    .pricing-band::before {
      content: "";
      position: absolute;
      inset: -80px auto auto -90px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      border: 1px solid rgba(64, 224, 165, 0.24);
    }

    .pricing-band::after {
      content: "";
      position: absolute;
      right: -60px;
      bottom: -70px;
      width: 330px;
      height: 330px;
      border-radius: 50%;
      background: rgba(64, 224, 165, 0.12);
    }

    .pricing-head {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .pricing-head h2 {
      margin: 0;
      font-size: clamp(34px, 4.8vw, 62px);
      line-height: 0.95;
      letter-spacing: -0.065em;
    }

    .pricing-head p {
      max-width: 460px;
      margin: 0;
      color: rgba(255, 255, 255, 0.73);
      line-height: 1.55;
    }

    .price-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: stretch;
    }

    .price-card {
      position: relative;
      overflow: hidden;
      min-height: 360px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      border-radius: 30px;
      color: var(--ink);
      background: rgba(255, 253, 247, 0.96);
      box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
    }

    .price-card.featured {
      background: linear-gradient(180deg, #f3fff9, #ffffff);
      outline: 2px solid var(--mint);
      transform: translateY(-10px);
    }

    .price-card::before {
      content: none;
    }

    .price-card::after {
      right: -15px;
      top: 92px;
      width: 30px;
      height: 30px;
    }

    .plan-name {
      margin: 0 0 28px;
      color: var(--mint-dark);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      position: relative;
      padding-bottom: 12px;
    }

    .plan-name::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      border-top: 1px dashed rgba(16, 25, 46, 0.18);
    }

    .offer-label {
      display: block;
      margin-bottom: 8px;
      color: var(--blue);
      font-size: 17px;
      font-weight: 950;
      letter-spacing: -0.035em;
      min-height: 44px;
    }

    .offer-status {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      min-height: 30px;
      margin: 0 0 12px;
      padding: 0 12px;
      border-radius: 999px;
      color: var(--mint-dark);
      background: rgba(64, 224, 165, 0.16);
      border: 1px solid rgba(7, 130, 96, 0.16);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .price {
      margin: 0;
      color: var(--muted);
      font-size: 23px;
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .duration {
      margin: 14px 0 14px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .price-card p:not(.plan-name):not(.duration) {
      color: var(--muted);
      line-height: 1.5;
    }

    .price-card p:not(.plan-name):not(.duration):not(.price) {
      min-height: 72px;
    }

    .price-card .btn {
      width: 100%;
      margin-top: auto;
    }

    .workflow {
      display: grid;
      grid-template-columns: 0.84fr 1.16fr;
      gap: 26px;
      align-items: stretch;
    }

    .workflow-title {
      padding: 42px;
      border-radius: 36px;
      border: 1px solid rgba(16, 25, 46, 0.1);
      background: var(--paper);
      box-shadow: var(--shadow-soft);
    }

    .workflow-title h2 {
      margin: 0;
      font-size: clamp(34px, 4vw, 56px);
      line-height: 0.96;
      letter-spacing: -0.06em;
    }

    .workflow-title p {
      margin: 20px 0 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .workflow-list {
      display: grid;
      gap: 16px;
    }

    .workflow-item {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      align-items: center;
      padding: 24px;
      border-radius: 28px;
      border: 1px solid rgba(16, 25, 46, 0.09);
      background: rgba(255, 255, 255, 0.68);
      box-shadow: var(--shadow-soft);
    }

    .workflow-step {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 19px;
      color: var(--mint-dark);
      background: rgba(64, 224, 165, 0.22);
      font-weight: 950;
    }

    .workflow-item:nth-child(2) .workflow-step {
      color: var(--indigo);
      background: var(--indigo-soft);
    }

    .workflow-item h3 {
      margin: 0 0 5px;
      font-size: 20px;
      letter-spacing: -0.035em;
    }

    .workflow-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.45;
    }

    /* Desktop fix: workflow cards 01/02/03 with comfortable readable width */
    @media (min-width: 1041px) {
      .workflow {
        grid-template-columns: 0.5fr 1.5fr;
      }

      .workflow-list {
        gap: 18px;
      }

      .workflow-item {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        min-height: 150px;
        padding: 28px 30px;
      }

      .workflow-step {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        margin-bottom: 12px;
      }

      .workflow-item h3 {
        font-size: 22px;
      }

      .workflow-item p {
        font-size: 15px;
        line-height: 1.52;
      }
    }

    .final-cta {
      position: relative;
      overflow: hidden;
      padding: 56px;
      border-radius: 42px;
      border: 1px solid rgba(16, 25, 46, 0.1);
      background:
        linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(243, 255, 249, 0.92)),
        repeating-linear-gradient(90deg, transparent 0 34px, rgba(48, 36, 95, 0.04) 35px 36px);
      box-shadow: var(--shadow);
    }

    .final-cta::after {
      content: "1-2";
      position: absolute;
      right: -18px;
      bottom: -34px;
      color: rgba(48, 36, 95, 0.07);
      font-size: 170px;
      line-height: 0.8;
      letter-spacing: -0.15em;
      font-weight: 950;
    }

    .final-cta h2 {
      position: relative;
      z-index: 1;
      max-width: 760px;
      margin: 0;
      font-size: clamp(38px, 5vw, 70px);
      line-height: 0.93;
      letter-spacing: -0.07em;
    }

    .final-actions {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .site-footer {
      position: relative;
      z-index: 1;
      margin-top: 50px;
      color: white;
      background: #101a2f;
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 44px 28px;
      display: grid;
      gap: 34px;
    }

    .footer-top {
      display: block;
      padding-bottom: 26px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 950;
      font-size: 25px;
      letter-spacing: -0.05em;
    }

    .footer-logo {
      height: 46px;
      width: auto;
    }

    .footer-brand .brand-mark {
      box-shadow: none;
    }

    .footer-links,
    .legal-links {
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
      font-weight: 800;
    }

    .footer-links-list,
    .legal-links-list {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-links-list li,
    .legal-links-list li {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-bottom {
      display: block;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px;
    }

    .footer-bottom-left {
      display: grid;
      gap: 12px;
      justify-items: center;
      text-align: center;
    }

    .footer-brand-mini {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.92);
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .footer-copy {
      color: rgba(255, 255, 255, 0.62);
    }

    @media (max-width: 1040px) {
      .header-inner {
        align-items: flex-start;
      }

      .nav {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 14px;
      }

      .hero-grid,
      .live-grid,
      .workflow {
        grid-template-columns: 1fr;
      }

      .hero-ticket {
        min-height: auto;
        padding: 44px 34px;
      }

      .value-grid,
      .price-grid {
        grid-template-columns: 1fr;
      }

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

      .pricing-head,
      .section-heading {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 720px) {
      .header-inner {
        flex-direction: column;
        padding: 16px 18px;
      }

      .brand-logo {
        height: 38px;
      }

      .footer-logo {
        height: 36px;
      }

      .nav {
        width: 100%;
        justify-content: flex-start;
      }

      .nav-list {
        width: 100%;
        justify-content: flex-start;
        gap: 12px 16px;
        flex-wrap: wrap;
      }

      .nav a {
        font-size: 13px;
      }

      .nav-cta {
        min-height: 42px;
        padding: 0 16px;
      }

      .section {
        padding: 44px 18px;
      }

      .hero {
        padding-top: 38px;
      }

      .hero-ticket,
      .pricing-band,
      .final-cta,
      .workflow-title,
      .ticket-panel {
        border-radius: 28px;
        padding: 30px 22px;
      }

      .hero-title {
        font-size: clamp(42px, 14vw, 62px);
      }

      .hero-copy {
        font-size: 16px;
      }

      .giant-one {
        right: 70px;
        bottom: 20px;
        font-size: 210px;
      }

      .giant-two {
        font-size: 205px;
      }

      .stat-strip {
        grid-template-columns: 1fr;
      }

      .quick-card {
        min-height: 230px;
        padding: 28px;
      }

      .quick-card h2 {
        font-size: 30px;
      }

      .footer-top,
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .brand-line-main {
        font-size: 22px;
      }

      .btn {
        width: 100%;
      }
    }


/* Pages internes */
.page-hero {
  padding-top: 74px;
  padding-bottom: 34px;
}

.page-ticket {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: 40px;
  border: 1px solid rgba(48, 36, 95, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.97), rgba(255, 250, 240, 0.88)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(48, 36, 95, 0.035) 29px 30px);
  box-shadow: var(--shadow);
}

.page-ticket::before,
.page-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  z-index: 2;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px rgba(48, 36, 95, 0.1);
}

.page-ticket::before { left: -27px; }
.page-ticket::after { right: -27px; }

.page-title {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.page-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 24px 0 0;
  color: #28344a;
  font-size: 18px;
  line-height: 1.65;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.info-panel {
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(16, 25, 46, 0.1);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.info-panel h2,
.info-panel h3 {
  margin: 0 0 14px;
  color: var(--blue);
  letter-spacing: -0.045em;
}

.info-panel h2 { font-size: 34px; }
.info-panel h3 { font-size: 25px; }

.info-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.clean-list {
  display: grid;
  gap: 13px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.48;
  font-weight: 750;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint-dark);
}

.form-card {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 13px;
  font-weight: 900;
  color: var(--blue);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(16, 25, 46, 0.14);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 15px 16px;
  outline: none;
}

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

.notice {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(7, 130, 96, 0.16);
  background: rgba(64, 224, 165, 0.13);
  color: var(--mint-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.result-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(16, 25, 46, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.result-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.result-table th,
.result-table td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(16, 25, 46, 0.08);
}

.result-table th {
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-table td {
  color: var(--muted);
  font-weight: 750;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--mint-dark);
  background: rgba(64, 224, 165, 0.16);
  border: 1px solid rgba(7, 130, 96, 0.16);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-content {
  display: grid;
  gap: 20px;
  max-width: 880px;
}

.legal-content h2 {
  margin: 28px 0 0;
  color: var(--blue);
  font-size: 30px;
  letter-spacing: -0.045em;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

@media (max-width: 720px) {
  .page-hero {
    padding-top: 38px;
  }

  .page-ticket {
    border-radius: 28px;
    padding: 30px 22px;
  }

  .page-title {
    font-size: clamp(42px, 14vw, 62px);
  }

  .page-copy {
    font-size: 16px;
  }

  .info-panel {
    padding: 24px;
    border-radius: 26px;
  }
}
