    /* ─── CSS Custom Properties ─────────────────────────────── */
    :root {
      --bg:            #FAF8F4;
      --bg-card:       #EDE8DF;
      --bg-dark:       #1C1410;
      --brown:         #4A3728;
      --brown-light:   #7A5C46;
      --sage:          #6E9B5F;
      --sage-light:    #A8C89A;
      --gold:          #C8A440;
      --gold-dark:     #A07C20;
      --text-primary:  #1C1410;
      --text-secondary:#5A4A3A;
      --text-muted:    #8A7A6A;
      --border:        #D8CFC4;
      --white:         #FFFFFF;

      --font-display:  'Playfair Display', Georgia, serif;
      --font-body:     'Inter', system-ui, sans-serif;

      --radius-sm:     6px;
      --radius-md:     12px;
      --radius-lg:     20px;

      --shadow-sm:     0 2px 8px rgba(28,20,16,0.08);
      --shadow-md:     0 6px 24px rgba(28,20,16,0.12);
      --shadow-lg:     0 16px 48px rgba(28,20,16,0.16);

      --section-gap:   5rem;
      --content-width: 780px;
      --wide-width:    1080px;
    }

    /* ─── Reset & Base ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.75;
      color: var(--text-primary);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; display: block; }

    a { color: var(--sage); text-decoration: none; transition: color .2s; }
    a:hover { color: var(--sage-light); }

    /* ─── Layout Utilities ──────────────────────────────────── */
    .container {
      width: 100%;
      max-width: var(--content-width);
      margin-inline: auto;
      padding-inline: 1.5rem;
    }

    .container--wide {
      max-width: var(--wide-width);
      margin-inline: auto;
      padding-inline: 1.5rem;
    }

    /* ─── Navigation ────────────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250,248,244,0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }

    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      height: 64px;
      max-width: var(--wide-width);
      margin-inline: auto;
      padding-inline: 1.5rem;
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }

    .nav__logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--brown);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav__logo-mark svg { width: 20px; height: 20px; }

    .nav__logo-text {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -0.01em;
    }

    .nav__links {
      display: flex;
      list-style: none;
      gap: 0.25rem;
    }

    .nav__links a {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-secondary);
      text-decoration: none;
      padding: 0.4rem 0.85rem;
      border-radius: var(--radius-sm);
      transition: background .2s, color .2s;
    }

    .nav__links a:hover {
      background: var(--bg-card);
      color: var(--text-primary);
    }
/* ─── Copy To Notification Styling ─────────────────────── */
    .copy-toast {
      position: absolute;
      top: -45px;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: var(--sage);
      color: var(--white);
      padding: 6px 16px;
      font-size: 0.85rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-sm);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
      pointer-events: none;
      z-index: 10;
    }

    .copy-toast.show {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .nav__cta {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--white) !important;
      background: var(--gold);
      padding: 0.45rem 1rem !important;
      border-radius: var(--radius-sm);
      transition: background .2s !important;
    }

    .nav__cta:hover {
      background: var(--gold-dark) !important;
      color: var(--white) !important;
    }

    @media (max-width: 640px) {
      .nav__links { display: none; }
    }

    /* ─── Hero ──────────────────────────────────────────────── */
    .hero {
      background: var(--bg-dark);
      color: var(--white);
      padding: 5rem 1.5rem 4rem;
      position: relative;
      overflow: hidden;
    }

    /* Organic background texture */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(110,155,95,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200,164,64,0.08) 0%, transparent 55%);
      pointer-events: none;
    }

    .hero__inner {
      position: relative;
      max-width: var(--content-width);
      margin-inline: auto;
    }

    .hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sage-light);
      margin-bottom: 1.5rem;
    }

    .hero__eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--sage-light);
      border-radius: 2px;
    }

    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .hero__title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.5rem;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
    }

    .hero__meta span {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hero__rating {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2rem;
      padding: 1rem 1.25rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      width: fit-content;
    }

    .hero__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.05em; }

    .hero__rating-text {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.7);
    }

    .hero__rating-score {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
    }

    /* ─── Section Divider (Mushroom SVG) ───────────────────── */
    .divider {
      width: 100%;
      text-align: center;
      padding: 1.5rem 0 0;
      overflow: hidden;
      line-height: 0;
    }

    .divider svg {
      width: 100%;
      max-height: 48px;
    }

    /* ─── Prose Section ─────────────────────────────────────── */
    .prose-section {
      padding: var(--section-gap) 1.5rem;
    }

    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.015em;
      color: var(--text-primary);
      margin-bottom: 1.75rem;
    }

    .prose p {
      color: var(--text-secondary);
      margin-bottom: 1.35rem;
      font-size: 1rem;
      line-height: 1.8;
    }

    .prose p:last-child { margin-bottom: 0; }

    .prose strong { color: var(--text-primary); font-weight: 600; }

    /* Pull quote */
    .pull-quote {
      border-left: 3px solid var(--sage);
      padding: 0.75rem 1.5rem;
      margin: 2rem 0;
      background: var(--bg-card);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }

    .pull-quote p {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-style: italic;
      color: var(--brown) !important;
      margin-bottom: 0 !important;
      line-height: 1.6;
    }

    /* Verdict Pills */
    .verdict-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 1.75rem 0;
    }

    .verdict-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      font-weight: 500;
      padding: 0.4rem 0.9rem;
      border-radius: 100px;
    }

    .verdict-pill--pro {
      background: rgba(110,155,95,0.12);
      color: #3d7a2e;
      border: 1px solid rgba(110,155,95,0.25);
    }

    .verdict-pill--con {
      background: rgba(180,80,60,0.08);
      color: #9b4030;
      border: 1px solid rgba(180,80,60,0.18);
    }

    /* ─── Ingredients Section ───────────────────────────────── */
    .ingredients-section {
      background: var(--bg-dark);
      color: var(--white);
      padding: var(--section-gap) 1.5rem;
    }

    .ingredients-section .section-label { color: var(--sage-light); }

    .ingredients-section .section-title { color: var(--white); }

    .ingredients-intro {
      color: rgba(255,255,255,0.65);
      font-size: 0.97rem;
      line-height: 1.75;
      margin-bottom: 2.5rem;
      max-width: 600px;
    }

    .shroom-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.25rem;
    }

    .shroom-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      transition: background .25s, border-color .25s;
    }

    .shroom-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(110,155,95,0.4);
    }

    .shroom-card__header {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .shroom-card__icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      background: rgba(110,155,95,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }

    .shroom-card__name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 0.2rem;
    }

    .shroom-card__latin {
      font-size: 0.74rem;
      font-style: italic;
      color: rgba(255,255,255,0.35);
    }

    .shroom-card__benefit {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.65;
    }

    .shroom-card__tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--sage-light);
      background: rgba(110,155,95,0.15);
      border-radius: 100px;
      padding: 0.2rem 0.65rem;
      margin-top: 0.85rem;
    }

    /* ─── Benefits Section ──────────────────────────────────── */
    .benefits-section {
      padding: var(--section-gap) 1.5rem;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }

    .benefit-item {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      padding: 1.4rem 1.25rem;
      border: 1px solid var(--border);
    }

    .benefit-item__icon {
      font-size: 1.6rem;
      margin-bottom: 0.75rem;
    }

    .benefit-item__title {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.4rem;
    }

    .benefit-item__desc {
      font-size: 0.84rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ─── Taste Section ─────────────────────────────────────── */
    .taste-section {
      background: var(--bg-card);
      padding: var(--section-gap) 1.5rem;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .score-bars {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin: 2rem 0;
    }

    .score-bar__row {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .score-bar__label {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-secondary);
      width: 110px;
      flex-shrink: 0;
    }

    .score-bar__track {
      flex: 1;
      height: 8px;
      background: var(--border);
      border-radius: 100px;
      overflow: hidden;
    }

    .score-bar__fill {
      height: 100%;
      border-radius: 100px;
      background: linear-gradient(90deg, var(--sage), var(--sage-light));
    }

    .score-bar__val {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-primary);
      width: 32px;
      text-align: right;
      flex-shrink: 0;
    }

    /* ─── Discount Callout ──────────────────────────────────── */
    .discount-section {
      padding: var(--section-gap) 1.5rem;
    }

    .discount-box {
      background: linear-gradient(135deg, #2a1f0e 0%, #1C1410 60%, #0f1a0a 100%);
      border: 1px solid rgba(200,164,64,0.3);
      border-radius: var(--radius-lg);
      padding: 3rem 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(200,164,64,0.08) inset;
    }

    .discount-box::before {
      content: '';
      position: absolute;
      top: -40%;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 200px;
      background: radial-gradient(ellipse, rgba(200,164,64,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .discount-box__eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .discount-box__title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 0.75rem;
    }

    .discount-box__sub {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 2rem;
      max-width: 480px;
      margin-inline: auto;
      margin-bottom: 2rem;
    }

    .coupon-block {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 1.75rem;
      flex-wrap: wrap;
    }

    .coupon-label {
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-right: none;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    }

    .coupon-code {
      font-family: 'Courier New', monospace;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--gold);
      background: rgba(200,164,64,0.1);
      border: 1px solid rgba(200,164,64,0.4);
      padding: 0.75rem 1.4rem;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      user-select: all;
    }

    .discount-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--gold);
      color: var(--bg-dark);
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      padding: 1rem 2.25rem;
      border-radius: var(--radius-sm);
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(200,164,64,0.35);
      letter-spacing: 0.01em;
    }

    .discount-cta:hover {
      background: var(--gold-dark);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(200,164,64,0.4);
    }

    .discount-cta:active { transform: translateY(0); }

    .discount-cta svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .discount-disclaimer {
      margin-top: 1.25rem;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.28);
    }
/* Comparison Section */

.comparison-section {
  padding: 60px 0;
  background-color: #f4f1ea; /* Matching your exact light cream/beige background */
}

.section-title {
  font-family: serif; /* Matches your premium "Frequently Asked" font */
  font-size: 2.2rem;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: #706556; /* Soft warm charcoal/coffee tone */
  font-size: 1rem;
  margin-bottom: 35px;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: separate; /* Fixes browser border-radius rendering glitch */
  border-spacing: 0;         /* Ensures cells touch seamlessly */
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #e1dbcf; /* Soft warm border matching the FAQ boxes */
  min-width: 650px;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: center; /* Center product details for premium data presentation */
  border-bottom: 1px solid #f0ebe1;
  color: #2c2c2c;
  font-size: 0.95rem;
}

.comparison-table th:first-child, 
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table th {
  background-color: #1a1a1a; /* Dark sleek header for competitors */
  color: #ffffff;
  font-weight: 700; /* Increased for better legibility on dark backgrounds */
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-bottom: none;
}

.comparison-table th.highlight-column {
  background-color: var(--brown); /* Rich espresso brown */
  color: var(--gold);
}

.comparison-table td.highlight-column {
  background-color: rgba(74, 53, 37, 0.03); /* Soft warm mocha tint */
  font-weight: 600; /* Makes RYZE features stand out gracefully */
  border-left: 1px solid rgba(74, 53, 37, 0.1);
  border-right: 1px solid rgba(74, 53, 37, 0.1);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-disclaimer {
  font-size: 0.78rem;
  color: #8c857b;
  text-align: center;
  margin-top: 20px;
  line-height: 1.4;
}
    /* ─── FAQ Section ───────────────────────────────────────── */
    .faq-section {
      padding: var(--section-gap) 1.5rem;
      background: var(--bg-card);
      border-top: 1px solid var(--border);
    }

    .faq-list {
      list-style: none;
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .faq-item {
      background: var(--white);
    }

    .faq-item summary {
      font-weight: 600;
      font-size: 0.97rem;
      color: var(--text-primary);
      padding: 1.1rem 1.25rem;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: background .18s;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: '+';
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--text-muted);
      flex-shrink: 0;
      transition: transform .2s;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-item summary:hover {
      background: var(--bg-card);
    }

    .faq-item__body {
      padding: 0 1.25rem 1.1rem;
      font-size: 0.92rem;
      color: var(--text-secondary);
      line-height: 1.75;
      border-top: 1px solid var(--border);
    }

    /* ─── Author / Footer ───────────────────────────────────── */
    .author-section {
      padding: 3rem 1.5rem 0;
    }

    .author-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem;
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      box-shadow: var(--shadow-sm);
    }

    .author-card__avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brown), var(--sage));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
    }

    .author-card__info { flex: 1; }

    .author-card__byline {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.3rem;
    }

    .author-card__name {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
    }

    .author-card__bio {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 1rem;
    }

    .author-card__link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--brown);
      background: var(--bg-card);
      padding: 0.4rem 0.9rem;
      border-radius: 100px;
      border: 1px solid var(--border);
      text-decoration: none;
      transition: background .18s, border-color .18s;
    }

    .author-card__link:hover {
      background: var(--border);
      color: var(--brown);
      border-color: var(--brown-light);
    }

    @media (max-width: 480px) {
      .author-card { flex-direction: column; }
      .author-card__avatar { width: 56px; height: 56px; font-size: 1.3rem; }
    }

    /* ─── Site Footer ───────────────────────────────────────── */
    footer {
      margin-top: 3rem;
      padding: 2rem 1.5rem;
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .footer__disclaimer {
      font-size: 0.76rem;
      color: var(--text-muted);
      max-width: 640px;
      margin-inline: auto;
      line-height: 1.7;
    }

    .footer__copy {
      font-size: 0.74rem;
      color: var(--border);
      margin-top: 1rem;
    }

    /* ─── Responsive tweaks ─────────────────────────────────── */
    @media (max-width: 600px) {
      :root { --section-gap: 3.5rem; }
      .hero { padding: 3.5rem 1.25rem 3rem; }
      .discount-box { padding: 2rem 1.25rem; }
      .coupon-block { flex-direction: column; gap: 0.5rem; }
      .coupon-label { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; border-radius: var(--radius-sm) var(--radius-sm) 0 0; width: 100%; text-align: center; }
      .coupon-code { border-radius: 0 0 var(--radius-sm) var(--radius-sm); width: 100%; text-align: center; }
      .shroom-grid { grid-template-columns: 1fr; }
      .benefits-grid { grid-template-columns: 1fr 1fr; }
      .coupon-label { 
        border-right: 1px solid rgba(255,255,255,0.1); 
        border-bottom: none; 
        border-radius: var(--radius-sm) var(--radius-sm) 0 0; 
        width: 100%; 
        text-align: center; 
      }
      
      .coupon-code { 
        border-radius: 0 0 var(--radius-sm) var(--radius-sm); 
        width: 100%; 
        text-align: center; 
        /* 👇 NEW FIXES FOR 320px SCREENS 👇 */
        font-size: 0.95rem !important;      /* Slightly shrinks the letters */
        letter-spacing: 0.04em !important;   /* Tightens the text gaps */
        padding: 0.75rem 0.5rem !important; /* Shuts down heavy side paddings */
      }
    }

    @media (max-width: 400px) {
      .benefits-grid { grid-template-columns: 1fr; }
    }
