
    :root {
      --primary: #6d3f78;
      --primary-dark: #3c2345;
      --accent: #c894d8;
      --soft: #fbf7fc;
      --cream: #fffaf4;
      --text: #2d2630;
      --muted: #6f6473;
      --white: #ffffff;
      --green: #426b55;
      --shadow: 0 20px 55px rgba(61, 35, 69, 0.14);
      --radius: 24px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, var(--soft), var(--cream));
      line-height: 1.65;
    }

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(255, 250, 255, 0.86);
      border-bottom: 1px solid rgba(109, 63, 120, 0.12);
    }

    .nav {
      max-width: 1180px;
      margin: 0 auto;
      padding: 16px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--primary-dark);
      font-size: 20px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: radial-gradient(circle at 30% 30%, #f5d2ff, #7a4388);
      box-shadow: 0 8px 22px rgba(109, 63, 120, 0.25);
      color: white;
      font-size: 22px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      color: var(--muted);
      font-weight: 600;
    }

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

    .hero {
      position: relative;
      overflow: hidden;
      padding: 86px 22px 70px;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -160px;
      top: -180px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(200, 148, 216, 0.42), rgba(200, 148, 216, 0));
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      left: -170px;
      bottom: -180px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(66, 107, 85, 0.18), rgba(66, 107, 85, 0));
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1180px;
      margin: 0 auto;
      position: relative;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 42px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(109, 63, 120, 0.09);
      color: var(--primary);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 18px;
    }

    h1 {
      font-size: clamp(42px, 6vw, 72px);
      line-height: 0.96;
      letter-spacing: -0.07em;
      color: var(--primary-dark);
      margin-bottom: 22px;
    }

    .hero p {
      font-size: 19px;
      color: var(--muted);
      max-width: 650px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 34px;
    }

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

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #9a5dad);
      color: white;
      box-shadow: 0 16px 32px rgba(109, 63, 120, 0.28);
    }

    .btn-secondary {
      background: white;
      color: var(--primary-dark);
      border: 1px solid rgba(109, 63, 120, 0.14);
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 650px;
    }

    .trust-item {
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(109, 63, 120, 0.10);
      padding: 16px;
      border-radius: 18px;
      box-shadow: 0 10px 30px rgba(61, 35, 69, 0.07);
    }

    .trust-item strong {
      display: block;
      color: var(--primary-dark);
      font-size: 20px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .trust-item span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    .orchid-card {
      position: relative;
      min-height: 560px;
      border-radius: 36px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0)),
        radial-gradient(circle at 50% 10%, #f6d7ff, #8f56a0 45%, #44264e 100%);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid;
      place-items: center;
      padding: 24px;
    }

    .orchid-illustration {
      position: relative;
      width: min(360px, 90%);
      height: 430px;
    }

    .stem {
      position: absolute;
      width: 7px;
      height: 330px;
      background: linear-gradient(#9cc4a9, #315d43);
      left: 50%;
      bottom: 30px;
      transform: translateX(-50%) rotate(-5deg);
      border-radius: 999px;
    }

    .leaf {
      position: absolute;
      width: 150px;
      height: 58px;
      background: linear-gradient(135deg, #588866, #264d38);
      border-radius: 100% 0 100% 0;
      bottom: 70px;
      left: 45px;
      transform: rotate(-18deg);
      box-shadow: 0 16px 30px rgba(0,0,0,.18);
    }

    .leaf.two {
      left: auto;
      right: 50px;
      bottom: 112px;
      transform: rotate(205deg);
    }

    .flower {
      position: absolute;
      width: 176px;
      height: 176px;
      left: 50%;
      transform: translateX(-50%);
      top: 42px;
      animation: float 4s ease-in-out infinite;
    }

    .flower.small {
      transform: translateX(-50%) scale(.72);
      top: 220px;
      left: 68%;
      animation-delay: .8s;
    }

    .petal {
      position: absolute;
      width: 84px;
      height: 116px;
      background: radial-gradient(circle at 45% 35%, #fff, #f0b8ff 55%, #a75db6);
      border-radius: 80% 20% 80% 20%;
      left: 45px;
      top: 15px;
      transform-origin: 50% 80%;
      box-shadow: inset 0 -12px 26px rgba(107, 43, 122, 0.18);
    }

    .p1 { transform: rotate(0deg) translateY(-32px); }
    .p2 { transform: rotate(72deg) translateY(-32px); }
    .p3 { transform: rotate(144deg) translateY(-32px); }
    .p4 { transform: rotate(216deg) translateY(-32px); }
    .p5 { transform: rotate(288deg) translateY(-32px); }

    .flower-center {
      position: absolute;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: radial-gradient(circle, #ffd6ec, #7a2d8d);
      left: 61px;
      top: 63px;
      border: 4px solid rgba(255,255,255,.65);
    }

    @keyframes float {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-12px); }
    }

    .floating-note {
      position: absolute;
      left: 24px;
      bottom: 24px;
      right: 24px;
      border-radius: 22px;
      padding: 18px;
      background: rgba(255,255,255,.87);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 35px rgba(0,0,0,.18);
      color: var(--primary-dark);
    }

    .floating-note strong {
      display: block;
      margin-bottom: 4px;
    }

    section {
      padding: 72px 22px;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-title.center {
      text-align: center;
      margin: 0 auto 38px;
    }

    .section-title h2 {
      color: var(--primary-dark);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: -0.045em;
      margin-bottom: 14px;
    }

    .section-title p {
      color: var(--muted);
      font-size: 17px;
    }

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

    .info-card {
      background: white;
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 14px 38px rgba(61, 35, 69, 0.08);
      border: 1px solid rgba(109, 63, 120, 0.08);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(109, 63, 120, 0.10);
      color: var(--primary);
      font-size: 25px;
      margin-bottom: 18px;
    }

    .info-card h3 {
      color: var(--primary-dark);
      font-size: 21px;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .info-card p {
      color: var(--muted);
      font-size: 15px;
    }

    .split {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 34px;
      align-items: center;
    }

    .panel {
      background: white;
      border-radius: 32px;
      padding: 34px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(109, 63, 120, 0.08);
    }

    .check-list {
      display: grid;
      gap: 16px;
      margin-top: 22px;
    }

    .check {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      align-items: start;
      color: var(--muted);
    }

    .check b {
      color: var(--text);
    }

    .check span:first-child {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(66, 107, 85, 0.12);
      color: var(--green);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .timeline {
      display: grid;
      gap: 18px;
    }

    .step {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 18px;
      align-items: start;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(109, 63, 120, 0.10);
      border-radius: 22px;
      padding: 20px;
    }

    .number {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--primary), #a96fbb);
      color: white;
      font-weight: 900;
      box-shadow: 0 12px 22px rgba(109, 63, 120, 0.25);
    }

    .step h3 {
      color: var(--primary-dark);
      margin-bottom: 4px;
      font-size: 19px;
    }

    .step p {
      color: var(--muted);
      font-size: 15px;
    }

    .species {
      background: linear-gradient(135deg, #392142, #6d3f78);
      color: white;
    }

    .species .section-title h2,
    .species .section-title p {
      color: white;
    }

    .species-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .species-card {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 24px;
      padding: 24px;
      backdrop-filter: blur(12px);
    }

    .species-card .emoji {
      font-size: 34px;
      margin-bottom: 14px;
    }

    .species-card h3 {
      font-size: 19px;
      margin-bottom: 8px;
    }

    .species-card p {
      color: rgba(255,255,255,.78);
      font-size: 14px;
    }



    .access-section {
      background:
        radial-gradient(circle at 80% 10%, rgba(200, 148, 216, 0.20), transparent 30%),
        linear-gradient(180deg, #ffffff, #fbf7fc);
    }

    .access-box {
      max-width: 980px;
      margin: 0 auto;
      background: white;
      border-radius: 34px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(109, 63, 120, 0.10);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 0.9fr;
    }

    .access-content {
      padding: 42px;
    }

    .access-content h2 {
      color: var(--primary-dark);
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: -0.05em;
      margin-bottom: 14px;
    }

    .access-content p {
      color: var(--muted);
      font-size: 16px;
      margin-bottom: 22px;
    }

    .access-list {
      display: grid;
      gap: 13px;
      margin-top: 20px;
    }

    .access-list div {
      display: grid;
      grid-template-columns: 30px 1fr;
      gap: 10px;
      color: var(--muted);
      font-size: 15px;
      align-items: start;
    }

    .access-list span {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(66, 107, 85, 0.12);
      color: var(--green);
      display: grid;
      place-items: center;
      font-weight: 900;
    }

    .price-panel {
      padding: 42px;
      background:
        radial-gradient(circle at 30% 10%, rgba(255,255,255,.28), transparent 32%),
        linear-gradient(135deg, var(--primary), #9a5dad);
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .price-label {
      display: inline-flex;
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.20);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .price {
      font-size: 70px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.07em;
      margin-bottom: 12px;
    }

    .price-panel p {
      color: rgba(255,255,255,.82);
      margin-bottom: 24px;
    }

    .price-panel .btn {
      justify-content: center;
      background: white;
      color: var(--primary);
      box-shadow: 0 18px 36px rgba(0,0,0,.18);
    }

    .safe-note {
      margin-top: 16px;
      color: rgba(255,255,255,.75);
      font-size: 13px;
      text-align: center;
    }

    .social-proof {
      background:
        radial-gradient(circle at 12% 10%, rgba(200, 148, 216, 0.24), transparent 28%),
        linear-gradient(180deg, #fffaf4, #fbf7fc);
    }

    .proof-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 30px;
    }

    .proof-stat {
      background: white;
      border-radius: 22px;
      padding: 22px;
      text-align: center;
      border: 1px solid rgba(109, 63, 120, 0.10);
      box-shadow: 0 14px 36px rgba(61, 35, 69, 0.07);
    }

    .proof-stat strong {
      display: block;
      color: var(--primary-dark);
      font-size: 30px;
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 8px;
    }

    .proof-stat span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

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

    .testimonial-card {
      position: relative;
      background: white;
      border-radius: 26px;
      padding: 26px;
      border: 1px solid rgba(109, 63, 120, 0.10);
      box-shadow: 0 18px 45px rgba(61, 35, 69, 0.08);
      overflow: hidden;
    }

    .testimonial-card::before {
      content: "“";
      position: absolute;
      right: 20px;
      top: -18px;
      color: rgba(109, 63, 120, 0.10);
      font-size: 110px;
      font-family: Georgia, serif;
      line-height: 1;
    }

    .stars {
      color: #c48a2c;
      letter-spacing: 2px;
      font-size: 15px;
      margin-bottom: 14px;
    }

    .testimonial-card p {
      color: var(--muted);
      font-size: 15px;
      position: relative;
      z-index: 1;
      margin-bottom: 20px;
    }

    .customer {
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 10px 20px rgba(109, 63, 120, 0.22);
    }

    .customer b {
      display: block;
      color: var(--primary-dark);
      line-height: 1.1;
    }

    .customer span {
      color: var(--muted);
      font-size: 13px;
    }

    .proof-highlight {
      margin-top: 24px;
      padding: 24px;
      border-radius: 26px;
      background: linear-gradient(135deg, rgba(109, 63, 120, 0.10), rgba(66, 107, 85, 0.10));
      border: 1px solid rgba(109, 63, 120, 0.12);
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 16px;
      align-items: center;
    }

    .proof-highlight-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: white;
      color: var(--primary);
      font-size: 27px;
      box-shadow: 0 12px 26px rgba(61, 35, 69, 0.08);
    }

    .proof-highlight strong {
      color: var(--primary-dark);
      display: block;
      margin-bottom: 4px;
      font-size: 18px;
    }

    .proof-highlight p {
      color: var(--muted);
      font-size: 15px;
      margin: 0;
    }

    .faq {
      display: grid;
      gap: 14px;
      max-width: 880px;
      margin: 0 auto;
    }

    .faq-item {
      background: white;
      border-radius: 20px;
      border: 1px solid rgba(109, 63, 120, 0.10);
      box-shadow: 0 12px 30px rgba(61, 35, 69, 0.06);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 22px;
      text-align: left;
      color: var(--primary-dark);
      font-size: 16px;
      font-weight: 900;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 14px;
    }

    .faq-answer {
      display: none;
      padding: 0 22px 22px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .cta-band {
      padding: 78px 22px;
      background:
        radial-gradient(circle at 20% 0%, rgba(255,255,255,.25), transparent 34%),
        linear-gradient(135deg, var(--green), var(--primary-dark));
      color: white;
      text-align: center;
    }

    .cta-band h2 {
      font-size: clamp(32px, 4vw, 52px);
      letter-spacing: -0.05em;
      line-height: 1.05;
      max-width: 820px;
      margin: 0 auto 16px;
    }

    .cta-band p {
      max-width: 720px;
      margin: 0 auto 26px;
      color: rgba(255,255,255,.82);
      font-size: 17px;
    }

    footer {
      background: #211827;
      color: white;
      padding: 38px 22px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      flex-wrap: wrap;
    }

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

    .footer-links button {
      background: none;
      border: none;
      color: #e7c9ef;
      cursor: pointer;
      font-weight: 700;
    }

    .footer-links button:hover {
      color: white;
    }

    .copy {
      color: rgba(255,255,255,.62);
      font-size: 14px;
      margin-top: 6px;
    }

    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(22, 14, 26, .72);
      z-index: 100;
      padding: 20px;
    }

    .modal.show {
      display: flex;
    }

    .modal-box {
      width: min(820px, 100%);
      max-height: 82vh;
      overflow-y: auto;
      background: white;
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 30px 90px rgba(0,0,0,.35);
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: start;
      margin-bottom: 14px;
    }

    .modal-head h2 {
      color: var(--primary-dark);
      letter-spacing: -0.03em;
    }

    .close {
      border: none;
      background: rgba(109, 63, 120, .10);
      color: var(--primary-dark);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      cursor: pointer;
      font-weight: 900;
    }

    .modal-body {
      color: var(--muted);
      font-size: 15px;
    }

    .modal-body h3 {
      color: var(--primary-dark);
      margin: 18px 0 6px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: all .7s ease;
    }

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

    @media (max-width: 930px) {
      .hero-inner,
      .split {
        grid-template-columns: 1fr;
      }

      .orchid-card {
        min-height: 480px;
      }

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

      .nav-links {
        display: none;
      }

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

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

    }

    @media (max-width: 620px) {
      .hero {
        padding-top: 56px;
      }

      .trust-row,
      .grid-3,
      .species-grid {
        grid-template-columns: 1fr;
      }

      .panel {
        padding: 24px;
      }

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


      .proof-stats {
        grid-template-columns: 1fr;
      }

      .proof-highlight {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        display: block;
      }

      .footer-links {
        margin-top: 18px;
      }
    }
  
    /* =========================
       RESPONSIVE OPTIMIZATION
       Desktop + Tablet + Mobile
       ========================= */

    img {
      max-width: 100%;
      height: auto;
    }

    .brand img {
      max-height: 46px;
      object-fit: contain;
    }

    @media (min-width: 1180px) {
      .hero {
        min-height: 760px;
        display: flex;
        align-items: center;
      }

      .wrap,
      .hero-inner,
      .nav,
      .footer-inner {
        width: 100%;
      }
    }

    @media (max-width: 1024px) {
      .hero {
        padding: 70px 22px 58px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .orchid-card {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
      }

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

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

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

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

      .access-box {
        grid-template-columns: 1fr;
      }

      .price-panel {
        text-align: center;
      }

      .price-label {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 768px) {
      .nav {
        padding: 12px 16px;
      }

      .brand {
        font-size: 16px;
        gap: 8px;
      }

      .brand img {
        max-height: 38px !important;
      }

      .nav-links {
        display: none;
      }

      .hero {
        padding: 46px 16px 46px;
      }

      h1 {
        font-size: 42px;
        line-height: 1.02;
        letter-spacing: -0.055em;
      }

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

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .trust-row,
      .proof-stats,
      .grid-3,
      .species-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 54px 16px;
      }

      .section-title h2,
      .access-content h2,
      .cta-band h2 {
        font-size: 32px;
        line-height: 1.08;
      }

      .section-title p {
        font-size: 15px;
      }

      .panel,
      .access-content,
      .price-panel {
        padding: 26px;
      }

      .access-box {
        border-radius: 24px;
      }

      .price {
        font-size: 56px;
      }

      .orchid-card {
        min-height: 420px;
        border-radius: 26px;
      }

      .orchid-illustration {
        transform: scale(0.82);
      }

      .floating-note {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
        font-size: 14px;
      }

      .step {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .proof-highlight {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .footer-inner {
        display: grid;
        gap: 20px;
      }

      .footer-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .footer-links button {
        text-align: left;
        padding: 8px 0;
      }

      .modal-box {
        padding: 22px;
        border-radius: 18px;
      }
    }

    @media (max-width: 420px) {
      .brand span:last-child {
        font-size: 15px;
      }

      h1 {
        font-size: 36px;
      }

      .hero p,
      .access-content p,
      .price-panel p,
      .cta-band p {
        font-size: 15px;
      }

      .trust-item,
      .info-card,
      .species-card,
      .testimonial-card,
      .proof-stat {
        padding: 20px;
        border-radius: 20px;
      }

      .orchid-card {
        min-height: 370px;
      }

      .orchid-illustration {
        transform: scale(0.70);
      }

      .price {
        font-size: 48px;
      }

      .faq-question {
        font-size: 15px;
        padding: 18px;
      }

      .faq-answer {
        padding: 0 18px 18px;
      }
    }

  

/* Layout hotfix: prevent orchid illustration styles from affecting content sections */
.section-title,
.section-title.center,
.reveal,
.faq,
.social-proof,
.access-section {
  position: relative;
}

.flower .flower-center {
  position: absolute;
}
