/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 16 2026 | 11:24:45 */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --orange: #F07E1E;
    --teal: #0396A5;
    --beige: #E8D9C4;
    --beige-light: #F5EFE6;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --grey: #6B6B6B;
    --grey-light: #F8F8F6;
    --border: #E8E4DF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 60px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
  }
  .nav-logo-icon {
    width: 36px; height: 36px;
  }
  .nav-logo-text {
    font-size: 18px; font-weight: 800; letter-spacing: 0.12em;
    color: var(--orange);
  }
  .nav-logo-sub {
    font-size: 9px; font-weight: 500; letter-spacing: 0.18em;
    color: var(--grey); text-transform: uppercase; margin-top: 1px;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--black);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange); color: white;
    padding: 11px 24px; border-radius: 100px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: #d96e10; transform: translateY(-1px); }

  /* ── HERO ── */
/*
  .hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: flex-start;
    overflow: hidden;
  }
*/

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1440px; margin: 0 auto; width: 100%;
    padding: 0 30px; padding-top: 30px;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    padding: 8px 18px; margin-bottom: 18px;
  }
  .hero-eyebrow span {
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: white;
  }
  .hero-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange);
  }
  .hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800; line-height: 1.05;
    color: white; max-width: 700px;
    margin-bottom: 20px; letter-spacing: -0.02em;
  }
  .hero h1 em { font-style: normal; color: var(--orange); }
  .hero-sub {
    font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.88);
    max-width: 480px; line-height: 1.65; margin-bottom: 14px;
  }
  .hero-badges {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; margin-top: 20px;
  }
  .hero-badge {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px; padding: 7px 16px;
    font-size: 12px; font-weight: 600; color: white;
    letter-spacing: 0.04em;
  }
  .hero-buttons {
    display: flex; gap: 14px; flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: white;
    padding: 16px 32px; border-radius: 100px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.2s; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: #d96e10; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(240,126,30,0.35); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: white; padding: 16px 32px; border-radius: 100px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.2s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
  .hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .hero-scroll span {
    font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
  }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--black);
    padding: 28px 60px;
  }
  .trust-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    flex: 1; justify-content: center;
  }
  .trust-item + .trust-item {
    border-left: 1px solid rgba(255,255,255,0.12);
    padding-left: 20px;
  }
  .trust-icon {
    width: 28px; height: 28px; color: var(--orange); flex-shrink: 0;
  }
  .trust-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.85);
    line-height: 1.4;
  }

  /* ── SECTION SHARED ── */
  section { padding: 100px 60px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
  }
  .section-title {
    font-size: clamp(28px, 3vw, 44px); font-weight: 800;
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--black); margin-bottom: 18px;
  }
  .section-sub {
    font-size: 16px; font-weight: 400; color: var(--grey);
    line-height: 1.65; max-width: 540px;
  }

  /* ── PRODUCTS ── */
  .products-section { background: var(--grey-light); }
  .products-header { text-align: center; margin-bottom: 60px; }
  .products-header .section-sub { margin: 0 auto; }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .product-card {
    background: white; border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden; position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
  }
  .product-card.featured {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(240,126,30,0.15);
  }
  .product-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--orange); color: white;
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
    z-index: 2;
  }
  .product-badge.eco { background: var(--teal); }
  .product-badge.pack { background: var(--black); }
  .product-image-zone {
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige) 100%);
    height: 260px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  /* Bottle SVG illustration embedded */
  .product-bottle {
    width: 110px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
    transition: transform 0.3s;
  }
  .product-card:hover .product-bottle { transform: translateY(-6px) rotate(2deg); }
  .product-body { padding: 28px; }
  .product-name {
    font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 4px;
  }
  .product-volume {
    font-size: 13px; font-weight: 500; color: var(--grey); margin-bottom: 16px;
    letter-spacing: 0.04em;
  }
  .product-features {
    list-style: none; margin-bottom: 24px;
  }
  .product-features li {
    font-size: 13px; font-weight: 500; color: var(--grey);
    padding: 5px 0; display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--border);
  }
  .product-features li:last-child { border-bottom: none; }
  .feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
  .product-footer {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  .product-price {
    font-size: 26px; font-weight: 800; color: var(--black);
  }
  .product-price span { font-size: 14px; font-weight: 500; color: var(--grey); }
  .btn-add {
    flex: 1; background: var(--orange); color: white;
    border: none; border-radius: 100px;
    padding: 13px 20px; font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; cursor: pointer;
    transition: all 0.2s;
  }
  .btn-add:hover { background: #d96e10; transform: translateY(-2px); }
  .btn-add.outline {
    background: transparent; border: 2px solid var(--black); color: var(--black);
  }
  .btn-add.outline:hover { background: var(--black); color: white; transform: translateY(-2px); }

  /* ── BENEFITS ── */
  .benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    border: 1px solid var(--border); border-radius: 24px; overflow: hidden;
    margin-top: 60px;
  }
  .benefit-card {
    padding: 40px 36px; background: white;
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    transition: background 0.25s;
  }
  .benefit-card:hover { background: var(--beige-light); }
  .benefit-card:nth-child(3n) { border-right: none; }
  .benefit-card:nth-child(n+4) { border-bottom: none; }
  .benefit-icon {
    width: 44px; height: 44px; margin-bottom: 18px;
    color: var(--orange);
  }
  .benefit-title {
    font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px;
  }
  .benefit-desc {
    font-size: 13px; font-weight: 400; color: var(--grey); line-height: 1.6;
  }

  /* ── COMPARISON TABLE ── */
  .comparison-section { background: var(--black); }
  .comparison-section .section-title { color: white; }
  .comparison-section .section-eyebrow { color: var(--orange); }
  .comparison-section .section-sub { color: rgba(255,255,255,0.55); }
  .comparison-table {
    width: 100%; margin-top: 48px; border-collapse: collapse;
  }
  .comparison-table th {
    padding: 20px 28px; text-align: left;
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .comparison-table th:nth-child(2) { color: var(--orange); }
  .comparison-table th:nth-child(3) { color: rgba(255,255,255,0.4); }
  .comparison-table td {
    padding: 20px 28px; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
  }
  .comparison-table tr:last-child td { border-bottom: none; }
  .comparison-table td:nth-child(2) { font-weight: 700; color: white; }
  .check { color: #4ADE80; font-size: 18px; }
  .cross { color: rgba(255,255,255,0.25); font-size: 18px; }
  .comparison-header-cell {
    display: flex; align-items: center; gap: 10px;
  }
  .col-ardesun-header {
    background: rgba(240,126,30,0.12);
    border-radius: 12px 12px 0 0;
  }

  /* ── BRAND STORY ── */
  .story-section {
    background: var(--beige-light);
  }
  .story-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    margin-top: 60px;
  }
  .story-image-mock {
    border-radius: 20px; overflow: hidden;
    background: linear-gradient(135deg, #8B7355 0%, #6B5A3E 40%, #4A3E2A 100%);
    height: 480px; position: relative;
    display: flex; align-items: flex-end; padding: 32px;
  }
  .story-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(3,150,165,0.2), rgba(0,0,0,0.4));
  }
  .story-quote {
    position: relative; z-index: 1;
    font-size: 22px; font-weight: 700; color: white; line-height: 1.4;
    font-style: italic;
  }
  .story-text { }
  .story-text .section-title { margin-bottom: 24px; }
  .story-para {
    font-size: 15px; font-weight: 400; color: var(--grey);
    line-height: 1.75; margin-bottom: 20px;
  }
  .story-stat-row {
    display: flex; gap: 40px; margin-top: 36px;
  }
  .story-stat { }
  .story-stat-num {
    font-size: 36px; font-weight: 800; color: var(--orange); line-height: 1;
  }
  .story-stat-label {
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--grey); margin-top: 6px;
  }

  /* ── ACTIVITIES ── */
  .activities-section { }
  .activities-header { margin-bottom: 48px; }
  .activities-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .activity-card {
    border-radius: 20px; overflow: hidden; position: relative;
    height: 320px; cursor: pointer;
    transition: transform 0.3s;
  }
  .activity-card:hover { transform: scale(1.02); }
  .activity-card:hover .activity-overlay { opacity: 1; }
  .activity-bg {
    position: absolute; inset: 0;
  }
  .activity-bg-1 { background: linear-gradient(160deg, #5B8FA8 0%, #2d6080 100%); }
  .activity-bg-2 { background: linear-gradient(160deg, #7B9E6B 0%, #3d6040 100%); }
  .activity-bg-3 { background: linear-gradient(160deg, #4B8A8A 0%, #1d5555 100%); }
  .activity-bg-4 { background: linear-gradient(160deg, #C8A96E 0%, #8B6914 100%); }
  .activity-overlay {
    position: absolute; inset: 0;
    background: rgba(240,126,30,0.5);
    opacity: 0; transition: opacity 0.3s;
  }
  .activity-icon-wrap {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 56px; height: 56px; background: rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
  }
  .activity-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 20px 20px 22px;
    font-size: 15px; font-weight: 700; color: white; letter-spacing: 0.04em;
  }

  /* ── FAQ ── */
  .faq-section { background: var(--grey-light); }
  .faq-grid {
    display: grid; grid-template-columns: 340px 1fr; gap: 80px;
    align-items: start; margin-top: 60px;
  }
  .faq-list { }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 22px 0; cursor: pointer;
    font-size: 15px; font-weight: 600; color: var(--black); line-height: 1.4;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--orange); }
  .faq-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--border); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 16px; color: var(--grey);
    transition: background 0.2s, color 0.2s;
  }
  .faq-item.open .faq-toggle { background: var(--orange); color: white; }
  .faq-answer {
    font-size: 14px; font-weight: 400; color: var(--grey); line-height: 1.7;
    padding-bottom: 22px; display: none;
  }
  .faq-item.open .faq-answer { display: block; }

  /* ── FINAL CTA ── */
  .final-cta {
    background: linear-gradient(135deg, var(--teal) 0%, #025c66 100%);
    text-align: center; padding: 120px 60px;
  }
  .final-cta .section-eyebrow { color: rgba(255,255,255,0.6); }
  .final-cta .section-title { color: white; margin: 0 auto 20px; max-width: 600px; }
  .final-cta .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 48px; }
  .final-cta-buttons {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  }
  .btn-white {
    background: white; color: var(--teal);
    padding: 16px 36px; border-radius: 100px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }
  .btn-white-outline {
    background: transparent; color: white;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 16px 36px; border-radius: 100px;
    font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none;
    transition: all 0.2s;
  }
  .btn-white-outline:hover { border-color: white; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--black); padding: 60px 60px 40px;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
  }
  .footer-top {
    display: grid; grid-template-columns: 280px 1fr;
    gap: 80px; margin-bottom: 48px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-logo-text {
    font-size: 22px; font-weight: 800; color: var(--orange);
    letter-spacing: 0.1em; margin-bottom: 6px;
  }
  .footer-logo-sub {
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4);
    letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px;
  }
  .footer-desc {
    font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.45);
    line-height: 1.65;
  }
  .footer-nav-cols {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .footer-nav-title {
    font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
  }
  .footer-nav-list { list-style: none; }
  .footer-nav-list li + li { margin-top: 10px; }
  .footer-nav-list a {
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-nav-list a:hover { color: var(--orange); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    flex-wrap: wrap;
  }
  .footer-copy {
    font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.3);
  }
  .footer-copy a { color: rgba(255,255,255,0.45); text-decoration: none; }
  .footer-copy a:hover { color: rgba(255,255,255,0.7); }
  .footer-badges {
    display: flex; gap: 16px; align-items: center;
  }
  .footer-badge-pill {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px; padding: 6px 14px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
  }

  /* ── DIVIDER ── */
  .divider { height: 1px; background: var(--border); max-width: 1200px; margin: 0 auto; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeUp 0.7s 0.2s both; }
  .hero h1 { animation: fadeUp 0.7s 0.4s both; }
  .hero-sub { animation: fadeUp 0.7s 0.55s both; }
  .hero-badges { animation: fadeUp 0.7s 0.65s both; }
  .hero-buttons { animation: fadeUp 0.7s 0.75s both; }

  /* ── NAV HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 6px; margin-left: 12px;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--black); border-radius: 2px;
    transition: all 0.25s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-mobile-menu {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--border);
    padding: 20px 20px 28px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  .nav-mobile-menu.open { display: block; }
  .nav-mobile-menu ul {
    list-style: none; display: flex; flex-direction: column; gap: 0;
  }
  .nav-mobile-menu ul li a {
    display: block; padding: 14px 0;
    font-size: 15px; font-weight: 600; color: var(--black);
    text-decoration: none; letter-spacing: 0.04em;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-menu ul li:last-child a { border-bottom: none; }
  .nav-mobile-menu .nav-cta-mobile {
    display: block; margin-top: 20px;
    background: var(--orange); color: white;
    padding: 15px 24px; border-radius: 100px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none; text-align: center;
  }

  /* ══════════════════════════════════════
     RESPONSIVE — MOBILE FIRST ≤ 768px
  ══════════════════════════════════════ */
  @media (max-width: 768px) {

    /* NAV */
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    /* HERO */
    .hero { min-height: 100svh; }
    .hero-content {
      padding: 0 20px;
      padding-top: 80px;
    }
    .hero h1 {
      font-size: clamp(30px, 8vw, 42px);
      max-width: 100%;
    }
    .hero-sub { font-size: 15px; max-width: 100%; }
    .hero-badges { gap: 8px; }
    .hero-badge { font-size: 11px; padding: 6px 12px; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-secondary {
      width: 100%; justify-content: center;
      padding: 16px 20px;
    }
    .hero-scroll { display: none; }

    /* TRUST STRIP */
    .trust-strip { padding: 28px 20px; }
    .trust-inner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .trust-item {
      flex: none;
      justify-content: flex-start;
    }
    .trust-item + .trust-item {
      border-left: none;
      padding-left: 0;
    }
    .trust-item:nth-child(2n) {
      border-left: 1px solid rgba(255,255,255,0.12);
      padding-left: 16px;
    }

    /* SECTIONS */
    section { padding: 60px 20px; }
    .section-title { font-size: clamp(24px, 6vw, 36px); }

    /* PRODUCTS */
    .products-grid { grid-template-columns: 1fr; }
    .product-image-zone { height: 220px; }

    /* BENEFITS HEADER (inline grid) */
    #formula .section-inner > div[style] {
      display: block !important;
    }
    #formula .section-sub { max-width: 100%; margin-top: 16px; }

    /* BENEFITS GRID */
    .benefits-grid {
      grid-template-columns: 1fr;
      margin-top: 40px;
    }
    .benefit-card { border-right: none; border-bottom: 1px solid var(--border); }
    .benefit-card:nth-child(3n) { border-right: none; }
    .benefit-card:last-child { border-bottom: none; }
    .benefit-card { padding: 28px 24px; }

    /* COMPARISON */
    .comparison-section .section-inner > div[style] {
      display: block !important;
    }
    .comparison-section .section-inner {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .comparison-table { min-width: 580px; }
    .comparison-table th,
    .comparison-table td { padding: 14px 16px; font-size: 13px; }

    /* STORY */
    .story-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .story-image-mock { height: 260px; }
    .story-quote { font-size: 17px; }
    .story-stat-row { gap: 24px; }

    /* ACTIVITIES HEADER */
    .activities-header {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 16px !important;
    }
    .activities-header .section-sub {
      max-width: 100% !important;
    }

    /* ACTIVITIES GRID */
    .activities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .activity-card { height: 200px; }

    /* FAQ */
    .faq-grid {
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 40px;
    }
    .faq-grid > div:first-child { margin-bottom: 40px; }

    /* FINAL CTA */
    .final-cta { padding: 80px 20px; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .btn-white, .btn-white-outline {
      width: 100%; max-width: 320px; justify-content: center;
    }

    /* FOOTER */
    footer { padding: 48px 20px 32px; }
    .footer-top {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .footer-nav-cols {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 24px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 16px;
    }
    .footer-badges { justify-content: center; }
  }

  /* ── TABLET ≤ 1024px ── */
  @media (max-width: 1024px) and (min-width: 769px) {
    nav { padding: 18px 32px; }
    .hero-content { padding: 0 40px; padding-top: 80px; }
    section { padding: 80px 40px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { gap: 48px; }
    .faq-grid { grid-template-columns: 280px 1fr; gap: 48px; }
    .footer-top { gap: 48px; }
    footer { padding: 60px 40px 40px; }
    .trust-strip { padding: 28px 32px; }
  }
