/* ══════════════════════════════════════
       TOKENS — identité 24 Sourires exacte
    ══════════════════════════════════════ */
    :root {
      --rose: #F2829A;
      --rose-deep: #D95F7A;
      --rose-pale: #FADADD;
      --rose-bg: #FEF1F3;
      --lavande: #C9A8E2;
      --lav-bg: #F3EDFB;
      --jaune: #F7D070;
      --jau-bg: #FFFAED;
      --menthe: #A8D8BC;
      --men-bg: #EDFAF3;
      --ink: #2C1A24;
      --ink-soft: #6B4A58;
      --ink-ghost: #B89AA4;
      --creme: #FFF8F5;

      --font-display: 'Fraunces', serif;
      --font-body: 'DM Sans', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--creme);
      color: var(--ink);
      overflow-x: hidden;
      cursor: default;
    }

    /* ══════════════════════════════════════
       NAV
    ══════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 48px;
      background: rgba(255, 248, 245, 0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(242, 130, 154, 0.12);
    }

    /* Logo — conforme à l'identité */
    .logo {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      text-decoration: none;
      line-height: 1;
    }

    .logo-num {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.9rem;
      color: var(--rose);
      line-height: 0.9;
      letter-spacing: -0.03em;
      position: relative;
    }

    .logo-word {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 300;
      font-size: 0.85rem;
      color: var(--ink);
      letter-spacing: 0.14em;
      line-height: 1;
    }

    .logo-word::after {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      background: var(--rose);
      border-radius: 50%;
      margin-left: 3px;
      vertical-align: middle;
      margin-bottom: 1px;
    }

    .nav-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--rose-bg);
      border: 1px solid var(--rose-pale);
      border-radius: 100px;
      padding: 7px 16px;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--rose-deep);
      letter-spacing: 0.03em;
    }

    .nav-pill span {
      width: 7px;
      height: 7px;
      background: var(--rose);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

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

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

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 0;
      padding: 100px 0 0;
      position: relative;
      overflow: hidden;
    }

    /* Background mesh — couleurs DA */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(201, 168, 226, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 10% 80%, rgba(242, 130, 154, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 60% 90%, rgba(247, 208, 112, 0.12) 0%, transparent 55%);
      pointer-events: none;
    }

    /* Grain texture subtil */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: 0.4;
    }

    .hero-left {
      padding: 60px 60px 80px 80px;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--ink-ghost);
      margin-bottom: 28px;
      animation: fadeUp 0.8s 0s ease both;
    }

    .hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--rose-pale);
    }

    /* Grand logo hero */
    .hero-logo {
      margin-bottom: 32px;
      animation: fadeUp 0.8s 0.1s ease both;
    }

    .hero-logo-num {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(6rem, 10vw, 10rem);
      color: var(--rose);
      line-height: 0.88;
      letter-spacing: -0.04em;
      display: block;
      position: relative;
    }

    /* Shadow text décalé — effet DA */
    .hero-logo-num::before {
      content: '24';
      position: absolute;
      inset: 0;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--rose-pale);
      transform: translate(5px, 5px);
      z-index: -1;
      pointer-events: none;
    }

    .hero-logo-word {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.8rem, 3.2vw, 3.2rem);
      color: var(--ink);
      letter-spacing: 0.14em;
      display: block;
      padding-left: 4px;
      position: relative;
    }

    .hero-logo-word .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: var(--rose);
      border-radius: 50%;
      margin-left: 6px;
      vertical-align: middle;
      margin-bottom: 4px;
    }

    .hero-tagline {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 1.1rem;
      color: var(--ink-soft);
      line-height: 1.75;
      max-width: 400px;
      margin-bottom: 48px;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-tagline strong {
      font-weight: 500;
      color: var(--ink);
    }

    /* Form — intégration Tally */
    .form-block {
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .form-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-ghost);
      margin-bottom: 14px;
    }

    /* Tally embed wrapper */
    .tally-wrap {
      background: white;
      border-radius: 20px;
      border: 1.5px solid var(--rose-pale);
      padding: 28px;
      box-shadow:
        0 4px 24px rgba(242, 130, 154, 0.1),
        0 1px 4px rgba(44, 26, 36, 0.04);
      max-width: 420px;
    }

    /* Fallback form si Tally pas encore branché */
    .form-row {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 12px;
    }

    .form-input {
      width: 100%;
      border: 1.5px solid var(--rose-pale);
      border-radius: 12px;
      padding: 14px 18px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--ink);
      background: var(--creme);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-input::placeholder {
      color: var(--ink-ghost);
    }

    .form-input:focus {
      border-color: var(--rose);
      box-shadow: 0 0 0 3px rgba(242, 130, 154, 0.12);
      background: white;
    }

    .form-btn {
      width: 100%;
      background: var(--rose);
      color: white;
      border: none;
      border-radius: 12px;
      padding: 16px 24px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 6px 20px rgba(242, 130, 154, 0.35);
      position: relative;
      overflow: hidden;
    }

    .form-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
      pointer-events: none;
    }

    .form-btn:hover {
      background: var(--rose-deep);
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(217, 95, 122, 0.45);
    }

    .form-btn:active {
      transform: translateY(0);
    }

    .form-note {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 300;
      color: var(--ink-ghost);
      margin-top: 10px;
    }

    .form-note strong {
      color: var(--rose);
      font-weight: 500;
    }

    /* Success */
    .success-state {
      display: none;
      background: var(--men-bg);
      border: 1.5px solid var(--menthe);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
    }

    .success-state .s-icon {
      font-size: 2rem;
      margin-bottom: 8px;
    }

    .success-state .s-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .success-state .s-sub {
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--ink-soft);
    }

    /* ── Hero right — illustration décorative ── */
    .hero-right {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .cards-scene {
      position: relative;
      width: 380px;
      height: 420px;
    }

    .scene-card {
      position: absolute;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow:
        0 8px 32px rgba(44, 26, 36, 0.1),
        0 2px 8px rgba(44, 26, 36, 0.06);
      padding: 20px 16px;
    }

    .scene-card .c-emoji {
      font-size: 2rem;
    }

    .scene-card .c-text {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 300;
      font-size: 0.8rem;
      color: var(--ink-soft);
      text-align: center;
      line-height: 1.4;
    }

    .scene-card .c-logo {
      font-family: var(--font-display);
      font-size: 0.55rem;
      font-style: italic;
      color: var(--ink-ghost);
      letter-spacing: 0.08em;
      margin-top: 4px;
    }

    /* Positionnement + animations des cartes */
    .sc1 {
      width: 130px;
      height: 130px;
      background: var(--rose-bg);
      border: 1.5px solid var(--rose-pale);
      top: 20px;
      left: 30px;
      transform: rotate(-8deg);
      animation: float1 6s ease-in-out infinite;
    }

    .sc2 {
      width: 140px;
      height: 140px;
      background: var(--lav-bg);
      border: 1.5px solid rgba(201, 168, 226, 0.4);
      top: 10px;
      right: 20px;
      transform: rotate(5deg);
      animation: float2 7s ease-in-out infinite;
    }

    .sc3 {
      width: 145px;
      height: 145px;
      background: var(--jau-bg);
      border: 1.5px solid rgba(247, 208, 112, 0.5);
      bottom: 80px;
      left: 10px;
      transform: rotate(4deg);
      animation: float3 8s ease-in-out infinite;
    }

    .sc4 {
      width: 135px;
      height: 135px;
      background: var(--men-bg);
      border: 1.5px solid rgba(168, 216, 188, 0.5);
      bottom: 60px;
      right: 30px;
      transform: rotate(-6deg);
      animation: float4 6.5s ease-in-out infinite;
    }

    .sc5 {
      width: 120px;
      height: 120px;
      background: white;
      border: 1.5px solid var(--rose-pale);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-2deg);
      animation: float5 9s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes float1 {

      0%,
      100% {
        transform: rotate(-8deg) translateY(0px);
      }

      50% {
        transform: rotate(-8deg) translateY(-14px);
      }
    }

    @keyframes float2 {

      0%,
      100% {
        transform: rotate(5deg) translateY(0px);
      }

      50% {
        transform: rotate(5deg) translateY(-10px);
      }
    }

    @keyframes float3 {

      0%,
      100% {
        transform: rotate(4deg) translateY(0px);
      }

      50% {
        transform: rotate(4deg) translateY(-12px);
      }
    }

    @keyframes float4 {

      0%,
      100% {
        transform: rotate(-6deg) translateY(0px);
      }

      50% {
        transform: rotate(-6deg) translateY(-16px);
      }
    }

    @keyframes float5 {

      0%,
      100% {
        transform: translate(-50%, -50%) rotate(-2deg) scale(1);
      }

      50% {
        transform: translate(-50%, -50%) rotate(-2deg) scale(1.04);
      }
    }

    /* Enveloppe décorative en arrière plan */
    .envelope-bg {
      position: absolute;
      width: 280px;
      height: 180px;
      background: white;
      border-radius: 16px;
      border: 2px solid var(--rose-pale);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0.35;
      overflow: hidden;
    }

    .envelope-bg::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 55%;
      background: var(--rose-bg);
      clip-path: polygon(0 0, 100% 0, 50% 100%);
    }

    /* ══════════════════════════════════════
       SECTION — 3 RAISONS
    ══════════════════════════════════════ */
    .reasons {
      padding: 100px 80px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-eyebrow {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 0.7rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--ink-ghost);
      margin-bottom: 10px;
    }

    .section-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--ink);
      line-height: 1.1;
      margin-bottom: 60px;
    }

    .section-title em {
      font-style: italic;
      font-weight: 300;
      color: var(--rose);
    }

    .reasons-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .reason-card {
      background: white;
      border-radius: 24px;
      padding: 36px 30px;
      border: 1.5px solid transparent;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }

    .reason-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: 24px 24px 0 0;
      transition: opacity 0.3s;
      opacity: 0;
    }

    .reason-card:hover {
      border-color: var(--rose-pale);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(242, 130, 154, 0.1);
    }

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

    .reason-card.r1::before {
      background: var(--rose);
    }

    .reason-card.r2::before {
      background: var(--lavande);
    }

    .reason-card.r3::before {
      background: var(--jaune);
    }

    .reason-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .r1 .reason-icon {
      background: var(--rose-bg);
    }

    .r2 .reason-icon {
      background: var(--lav-bg);
    }

    .r3 .reason-icon {
      background: var(--jau-bg);
    }

    .reason-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--ink);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .reason-body {
      font-weight: 300;
      font-size: 0.9rem;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════
       SECTION — COMMENT ÇA MARCHE
    ══════════════════════════════════════ */
    .how {
      background: var(--ink);
      padding: 100px 80px;
      position: relative;
      overflow: hidden;
    }

    .how::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242, 130, 154, 0.08) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      pointer-events: none;
    }

    .how-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .how .section-eyebrow {
      color: rgba(255, 255, 255, 0.3);
    }

    .how .section-title {
      color: white;
    }

    .how .section-title em {
      color: var(--rose);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 24px;
      overflow: hidden;
    }

    .step {
      padding: 40px 28px;
      background: rgba(255, 255, 255, 0.03);
      position: relative;
      transition: background 0.3s;
    }

    .step:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .step-num {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: 4rem;
      color: rgba(255, 255, 255, 0.06);
      line-height: 1;
      margin-bottom: 16px;
      letter-spacing: -0.03em;
    }

    .step-emoji {
      font-size: 2rem;
      display: block;
      margin-bottom: 14px;
    }

    .step-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      color: white;
      margin-bottom: 8px;
    }

    .step-body {
      font-weight: 300;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.65;
    }

    .step-accent {
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 0;
      background: var(--rose);
      transition: height 0.4s ease;
    }

    .step:hover .step-accent {
      height: 100%;
    }

    /* ══════════════════════════════════════
       SECTION — PRIX
    ══════════════════════════════════════ */
    .pricing {
      padding: 100px 80px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .pricing-text .section-title {
      margin-bottom: 24px;
    }

    .pricing-detail {
      font-weight: 300;
      font-size: 0.95rem;
      color: var(--ink-soft);
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .perks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .perk {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--ink);
    }

    .perk-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .perk:nth-child(1) .perk-dot {
      background: var(--rose);
    }

    .perk:nth-child(2) .perk-dot {
      background: var(--lavande);
    }

    .perk:nth-child(3) .perk-dot {
      background: var(--jaune);
    }

    .perk:nth-child(4) .perk-dot {
      background: var(--menthe);
    }

    .perk:nth-child(5) .perk-dot {
      background: var(--rose);
    }

    .pricing-card-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .price-card {
      background: white;
      border-radius: 28px;
      width: 100%;
      max-width: 340px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(44, 26, 36, 0.1);
      position: relative;
    }

    .price-card-top {
      background: linear-gradient(140deg, var(--rose) 0%, var(--rose-deep) 100%);
      padding: 36px 32px;
      color: white;
      text-align: center;
      position: relative;
    }

    .price-card-top::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 28px;
      background: white;
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }

    .promo-chip {
      display: inline-block;
      background: var(--jaune);
      color: var(--ink);
      font-size: 0.72rem;
      font-weight: 500;
      padding: 4px 12px;
      border-radius: 100px;
      letter-spacing: 0.04em;
      margin-bottom: 16px;
    }

    .price-num {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: 4.5rem;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .price-num sup {
      font-size: 1.6rem;
      vertical-align: top;
      margin-top: 12px;
      font-weight: 300;
    }

    .price-num .cents {
      font-size: 2rem;
      font-weight: 700;
    }

    .price-per {
      font-size: 0.85rem;
      opacity: 0.75;
      font-weight: 300;
      margin-top: 4px;
    }

    .price-was {
      font-size: 0.78rem;
      opacity: 0.5;
      text-decoration: line-through;
      margin-top: 2px;
    }

    .price-card-body {
      padding: 32px;
    }

    .price-cta {
      display: block;
      width: 100%;
      background: var(--rose);
      color: white;
      border: none;
      border-radius: 14px;
      padding: 16px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 6px 20px rgba(242, 130, 154, 0.4);
    }

    .price-cta:hover {
      background: var(--rose-deep);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(217, 95, 122, 0.5);
    }

    .price-reassure {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 14px;
      flex-wrap: wrap;
    }

    .reassure-item {
      font-size: 0.72rem;
      color: var(--ink-ghost);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      border-top: 1px solid var(--rose-pale);
      padding: 48px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-links {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--ink-ghost);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--rose);
    }

    .footer-copy {
      font-size: 0.78rem;
      font-weight: 300;
      color: var(--ink-ghost);
    }

    /* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 900px) {
      .nav {
        padding: 16px 24px;
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-right {
        display: none;
      }

      .hero-left {
        padding: 40px 24px 60px;
      }

      .reasons {
        padding: 60px 24px;
      }

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

      .how {
        padding: 60px 24px;
      }

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

      .pricing {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 48px;
      }

      .pricing-card-wrap {
        align-items: stretch;
      }

      footer {
        padding: 36px 24px;
        flex-direction: column;
        align-items: flex-start;
      }
    }

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