  <style>
    /* ========== 全局 ========== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      font-family: -apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
      color: #1f2933;
      background: #050816;
      scroll-behavior: smooth;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    :root {
      --primary: #f97316;
      --primary-soft: rgba(249,115,22,0.16);
      --primary-strong: #fb923c;
      --bg-dark: #050816;
      --bg-card: rgba(15,23,42,0.86);
      --text-main: #e5e7eb;
      --text-soft: #9ca3af;
      --radius-lg: 18px;
      --shadow-soft: 0 18px 45px rgba(15,23,42,0.75);
      --border-soft: 1px solid rgba(148,163,184,0.22);
      --glass: rgba(15,23,42,0.78);
    }

    /* 容器 */
	
    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 16px;
    }

    /* ========== 顶部导航 ========== */
	
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: linear-gradient(
        to bottom,
        rgba(5,8,22,0.96),
        rgba(5,8,22,0.78),
        transparent
      );
      border-bottom: 1px solid rgba(148,163,184,0.24);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #fed7aa, #f97316); 
      color: #111827;
      font-weight: 800;
      font-size: 18px;
      box-shadow: 0 0 25px rgba(248,250,252,0.5); */
	  background: 100%;
	  box-shadow: none;
    }

    .logo-text-main {
      font-weight: 700;
      letter-spacing: 2px;
      font-size: 18px;
      color: #ff557f;
    }

    .logo-text-sub {
      font-size: 12px;
      color: #9ca3af;
    }

    .nav-links {
      display: flex;
      gap: 22px;
      font-size: 14px;
      color: #e5e7eb;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 4px;
      cursor: pointer;
      transition: color .2s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg,#f97316,#facc15);
      transition: width .25s ease;
    }

    .nav-links a:hover {
      color: #f97316;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: none;
    }

    /* 导航按钮 (移动端) */

    .nav-toggle {
      display: none;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.7);
      background: rgba(15,23,42,0.9);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
      content: "";
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #e5e7eb;
      position: relative;
      transition: all .25s ease;
    }

    .nav-toggle span::before {
      top: -6px;
      position: absolute;
    }

    .nav-toggle span::after {
      top: 6px;
      position: absolute;
    }

    .nav-toggle.active span {
      background: transparent;
    }

    .nav-toggle.active span::before {
      transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active span::after {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* ========== Hero 区 ========== */
	
    .hero {
      position: relative;
      overflow: hidden;
      padding: 48px 0 80px;
      background:
        radial-gradient(circle at 10% -10%, rgba(248,250,252,0.12), transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(251,191,36,0.16), transparent 55%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 11px;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(248,250,252,0.2);
      font-size: 12px;
      color: #e5e7eb;
      margin-bottom: 14px;
    }


    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 12px #22c55e;
    }


    .hero-title {
      font-size: clamp(30px, 4vw, 40px);
      line-height: 1.15;
      font-weight: 800;
      color: #f9fafb;
      margin-bottom: 16px;
    }


    .hero-title span {
      background: linear-gradient(110deg,#fed7aa,#f97316,#facc15);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }


    .hero-subtitle {
      font-size: 14px;
      line-height: 1.8;
      color: #9ca3af;
      max-width: 480px;
      margin-bottom: 22px;
    }


    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 26px;
    }

    .pill {
      font-size: 11px;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(156,163,175,0.6);
      color: #e5e7eb;
      background: rgba(15,23,42,0.85);
      backdrop-filter: blur(8px);
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 18px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 18px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border .18s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(120deg,#f97316,#facc15);
      color: #111827;
      box-shadow: 0 18px 40px rgba(248,250,252,0.25);
    }

    .btn-primary:hover {
      transform: translateY(-1px) translateZ(0);
      box-shadow: 0 22px 60px rgba(248,250,252,0.35);
      filter: saturate(1.1);
    }

    .btn-outline {
      border: 1px solid rgba(156,163,175,0.8);
      background: rgba(15,23,42,0.8);
      color: #e5e7eb;
    }

    .btn-outline:hover {
      background: rgba(15,23,42,1);
      transform: translateY(-1px) translateZ(0);
      box-shadow: 0 18px 40px rgba(15,23,42,0.8);
    }

    .hero-note {
      font-size: 12px;
      color: #6b7280;
    }

    .hero-note b {
      color: #e5e7eb;
      font-weight: 600;
    }

    /* Hero 右侧卡片 */
	
    .hero-card {
      position: relative;
      border-radius: 28px;
      padding: 22px 20px;
	  
      background: radial-gradient(circle at 0 0,rgba(251,191,36,0.18),transparent 55%),
                  radial-gradient(circle at 100% 100%,rgba(248,113,113,0.2),transparent 60%),
                  rgba(15,23,42,0.94); 
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148,163,184,0.6);
      overflow: hidden;
      isolation: isolate;
    }

    .hero-card-glow {
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(circle at 20% 0,rgba(251,191,36,0.17),transparent 60%),
        radial-gradient(circle at 80% 100%,rgba(244,114,182,0.22),transparent 55%);
      opacity: .9;
      filter: blur(18px);
      z-index: -1;
    }

    .hero-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .hero-card-brand {
      font-size: 13px;
      color: #e5e7eb;
    }

    .hero-card-badge {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(15,23,42,0.82);
      border: 1px solid rgba(248,250,252,0.32);
      color: #fcd34d;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .hero-card-body {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      margin-bottom: 14px;
    }

    .hero-metrics {
      display: grid;
      gap: 8px;
      font-size: 12px;
      color: #e5e7eb;
    }

    .metric-row {
      display: flex;
      align-items: baseline;
      gap: 6px;
    }

    .metric-label {
      color: #9ca3af;
      min-width: 3.5em;
    }

    .metric-val {
      font-weight: 600;
    }

    .hero-bottle {
      position: relative;
      justify-self: center;
      width: 120px;
      /* height: 220px; */
      /* border-radius: 999px; */
      /* background: linear-gradient(180deg,#fef9c3,#fed7aa,#f97316,#b91c1c); */
	  /* background: ;
      box-shadow:
        0 26px 50px rgba(15,23,42,0.95),
        0 0 35px rgba(248,250,252,0.38); */
		
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 10px 8px 12px;
      transform-origin: 50% 100%;
      animation: bottleFloat 4.5s ease-in-out infinite;
    }

    .bottle-image {
      width: 50%;
	  height: auto;
	  object-fit: contain;
    }

    @keyframes bottleFloat {
      0%,100% { transform: translateY(0) rotate(-2deg); }
      50% { transform: translateY(-10px) rotate(2deg); }
    }

    .bottle-cap {
      width: 60%;
      height: 12px;
      margin: 0 auto;
      border-radius: 999px;
      background: linear-gradient(90deg,#111827,#4b5563);
      box-shadow: 0 6px 10px rgba(15,23,42,0.7);
    }

    .bottle-label {
      flex: 1;
      margin: 10px 4px;
      border-radius: 18px;
      background: radial-gradient(circle at 20% 0,#fef3c7,#fed7aa);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 6px;
    }

    .bottle-label-title {
      font-weight: 800;
      font-size: 16px;
      letter-spacing: 4px;
      color: #7c2d12;
      margin-bottom: 2px;
    }

    .bottle-label-sub {
      font-size: 11px;
      color: #7c2d12;
    }

    .bottle-shadow {
      position: absolute;
      inset: auto 0 -30px;
      height: 40px;
      border-radius: 100%;
      background: radial-gradient(circle at 50% 0,rgba(15,23,42,0.9),transparent 70%);
      opacity: .85;
      filter: blur(1px);
    }

    .hero-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: #9ca3af;
    }

    .hero-price {
      font-size: 18px;
      font-weight: 700;
      color: #fef9c3;
    }

    .hero-price span {
      font-size: 11px;
      color: #e5e7eb;
      font-weight: 400;
      margin-left: 4px;
    }

    .hero-tagline {
      font-size: 11px;
      color: #9ca3af;
    }

    /* 背景装饰泡泡 */
	
    .orbit {
      position: absolute;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.25);
      pointer-events: none;
      mix-blend-mode: screen;
      animation: orbit 16s linear infinite;
    }

    .orbit.one {
      width: 420px;
      height: 420px;
      right: -180px;
      top: 40px;
    }

    .orbit.two {
      width: 280px;
      height: 280px;
      left: -120px;
      bottom: -40px;
      animation-duration: 22s;
    }

    @keyframes orbit {
      0% { transform: rotate(0deg) translate3d(0,0,0); opacity: 0.38; }
      50% { opacity: 0.9; }
      100% { transform: rotate(360deg) translate3d(0,0,0); opacity: 0.38; }
    }

    .bubble {
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0,#fefce8,#f97316);
      box-shadow: 0 0 18px rgba(250,250,249,0.8);
      animation: bubbleUp 7s ease-in-out infinite;
      opacity: .6;
    }

    .bubble.b1 { left: 12%; bottom: 10%; animation-delay: -1s; }
    .bubble.b2 { left: 50%; bottom: 0; animation-delay: -2.5s; }
    .bubble.b3 { right: 10%; bottom: 16%; animation-delay: -4s; }

    @keyframes bubbleUp {
      0% { transform: translateY(0) scale(1); opacity: .2; }
      40% { opacity: .9; }
      100% { transform: translateY(-120px) scale(0.9); opacity: 0; }
    }

    /* ========== 通用 Section 样式 ========== */
	
    section {
      padding: 56px 0;
      position: relative;
      z-index: 1;
    }

    .section-header {
      text-align: center;
      margin-bottom: 32px;
    }

    .section-eyebrow {
      font-size: 12px;
      color: #facc15;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .section-title {
      font-size: 22px;
      color: #f9fafb;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .section-desc {
      font-size: 13px;
      color: #9ca3af;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* 卡片基础 */
	
    .card {
      border-radius: var(--radius-lg);
      background: var(--glass);
      border: var(--border-soft);
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 16px;
    }

    /* ========== 亮点 Section ========== */
	
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3,minmax(0,1fr));
      gap: 18px;
    }

    .benefit-card {
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }

    .benefit-card:hover {
      transform: translateY(-4px) translateZ(0);
      box-shadow: 0 20px 50px rgba(15,23,42,0.95);
      border-color: rgba(248,250,252,0.45);
      background: radial-gradient(circle at 0 0,rgba(251,191,36,0.16),transparent 55%), var(--glass);
    }

    .benefit-icon {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      font-size: 18px;
      background: var(--primary-soft);
      color: #fed7aa;
    }

    .benefit-title {
      font-size: 14px;
      font-weight: 600;
      color: #e5e7eb;
      margin-bottom: 4px;
    }

    .benefit-text {
      font-size: 12px;
      color: #9ca3af;
      line-height: 1.7;
    }

    .benefit-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 9px;
    }

    .benefit-tag {
      font-size: 11px;
      padding: 2px 7px;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,184,0.5);
      color: #e5e7eb;
    }

    /* ========== 工艺 Section ========== */
	
    .process {
      display: grid;
      grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
      gap: 22px;
      align-items: stretch;
    }

    .process-list {
      display: grid;
      gap: 12px;
    }

    .process-item {
      display: flex;
      gap: 10px;
      padding: 10px 10px;
      border-radius: 14px;
      background: rgba(15,23,42,0.82);
      border: 1px dashed rgba(148,163,184,0.6);
    }

    .process-step {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0,#fed7aa,#f97316);
      font-size: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111827;
      font-weight: 700;
      flex-shrink: 0;
    }

    .process-title {
      font-size: 13px;
      color: #e5e7eb;
      margin-bottom: 3px;
      font-weight: 600;
    }

    .process-text {
      font-size: 12px;
      color: #9ca3af;
      line-height: 1.7;
    }

    .process-card {
      position: relative;
      overflow: hidden;
    }

    .process-badge {
      font-size: 11px;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(248,250,252,0.3);
      color: #fef9c3;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 10px;
    }

    .process-metrics {
      display: grid;
      grid-template-columns: repeat(2,minmax(0,1fr));
      gap: 10px;
      margin-top: 10px;
      font-size: 11px;
      color: #e5e7eb;
    }

    .process-metric {
      padding: 6px 8px;
      border-radius: 10px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,184,0.65);
    }

    .process-metric-label {
      color: #9ca3af;
      margin-bottom: 3px;
    }

    .process-metric-val {
      font-weight: 600;
    }

    /* ========== 价格/路径 Section ========== */

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3,minmax(0,1fr));
      gap: 18px;
    }

    .pricing-card {
      position: relative;
      overflow: hidden;
      padding-top: 16px;
      padding-bottom: 16px;
    }

    .pricing-card.highlight {
      border-color: rgba(250,204,21,0.9);
      box-shadow: 0 20px 60px rgba(248,250,252,0.28);
      background: radial-gradient(circle at 0 0,rgba(251,191,36,0.16),transparent 60%),
      radial-gradient(circle at 100% 100%,rgba(248,113,113,0.16),transparent 60%),
      rgba(15,23,42,0.95);
    }

    .pricing-label {
      font-size: 11px;
      color: #facc15;
      margin-bottom: 6px;
    }

    .pricing-name {
      font-size: 15px;
      color: #f9fafb;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .pricing-price {
      font-size: 22px;
      font-weight: 700;
      color: #fef9c3;
      margin-bottom: 4px;
    }

    .pricing-price span {
      font-size: 12px;
      font-weight: 400;
      color: #e5e7eb;
      margin-left: 3px;
    }

    .pricing-desc {
      font-size: 12px;
      color: #9ca3af;
      margin-bottom: 8px;
      line-height: 1.7;
    }

    .pricing-meta {
      font-size: 11px;
      color: #9ca3af;
      margin-bottom: 10px;
    }

    .pricing-btn {
      margin-top: 6px;
      font-size: 12px;
      padding: 6px 12px;
      width: 100%;
      justify-content: center;
    }

    .pricing-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .pricing-tag {
      font-size: 11px;
      padding: 2px 7px;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,184,0.5);
      color: #e5e7eb;
    }

    .pricing-ribbon {
      position: absolute;
      top: 10px;
      right: -36px;
      transform: rotate(35deg);
      background: linear-gradient(120deg,#f97316,#facc15);
      color: #111827;
      font-size: 11px;
      padding: 3px 26px;
      font-weight: 600;
      box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    }

    /* ========== 反馈 Section ========== */

    .stories-grid {
      display: grid;
      grid-template-columns: repeat(3,minmax(0,1fr));
      gap: 18px;
    }

    .story-card {
      position: relative;
      font-size: 12px;
      color: #9ca3af;
      line-height: 1.7;
      overflow: hidden;
    }

    .story-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }

    .story-user {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .story-avatar {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0,#fed7aa,#f97316);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111827;
      font-weight: 700;
      font-size: 13px;
    }

    .story-name {
      font-size: 12px;
      color: #e5e7eb;
      font-weight: 500;
    }

    .story-tag {
      font-size: 11px;
      padding: 2px 7px;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,184,0.6);
      color: #facc15;
    }

    .story-meta {
      font-size: 11px;
      color: #6b7280;
      margin-bottom: 8px;
    }

    .story-quote {
      position: relative;
      padding-left: 16px;
    }

    .story-quote::before {
      content: "“";
      position: absolute;
      left: 0;
      top: -6px;
      color: #facc15;
      font-size: 25px;
      line-height: 1;
    }

    .story-highlight {
      color: #e5e7eb;
    }

    /* ========== 加入/联系 Section ========== */
    .join-grid {
      display: grid;
      grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
      gap: 20px;
      align-items: stretch;
    }

    .join-card {
      position: relative;
      overflow: hidden;
    }

    .join-list {
      margin-top: 8px;
      font-size: 12px;
      color: #9ca3af;
    }

    .join-list li {
      margin-bottom: 6px;
      list-style: none;
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }

    .join-list li::before {
      content: "•";
      color: #facc15;
      margin-top: 1px;
    }

    .join-note {
      margin-top: 10px;
      font-size: 11px;
      color: #6b7280;
    }

    .contact-card {
      text-align: center;
    }

    .qr-placeholder {
      width: 160px;
      height: 160px;
      border-radius: 24px;
      margin: 10px auto 8px;
      border: 1px dashed rgba(148,163,184,0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: #6b7280;
      background: rgba(15,23,42,0.9);
    }

    .contact-title {
      font-size: 13px;
      color: #e5e7eb;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .contact-id {
      font-size: 13px;
      color: #facc15;
      font-family: "Menlo",monospace;
    }

    .contact-tip {
      font-size: 11px;
      color: #9ca3af;
      margin-top: 6px;
    }

    /* ========== FAQ ========== */

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2,minmax(0,1fr));
      gap: 12px;
    }

    .faq-item {
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,184,0.65);
      font-size: 12px;
      color: #9ca3af;
    }

    .faq-q {
      color: #e5e7eb;
      margin-bottom: 4px;
      font-weight: 600;
    }

    /* ========== Footer ========== */

    footer {
      border-top: 1px solid rgba(148,163,184,0.3);
      padding: 14px 0 20px;
      font-size: 11px;
      color: #6b7280;
      text-align: center;
      background: radial-gradient(circle at 50% -40%,rgba(251,191,36,0.18),transparent 60%);
    }

    footer a {
      color: #9ca3af;
    }


    /* ========== 滚动 reveal 动效 ========== */

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* 分段延迟 */

    .delay-1 { transition-delay: .05s; }
    .delay-2 { transition-delay: .12s; }
    .delay-3 { transition-delay: .18s; }
    .delay-4 { transition-delay: .24s; }

    /* ========== 响应式 ========== */

    @media (max-width: 960px) {
      .hero-grid,
      .process,
      .pricing-grid,
      .stories-grid,
      .join-grid,
      .faq-grid {
        grid-template-columns: minmax(0,1fr);
      }

      .pricing-grid,
      .stories-grid {
        gap: 14px;
      }

      .benefits-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
      }

      .hero {
        padding-top: 30px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-links.mobile-open {
        position: absolute;
        inset: 52px 16px auto;
        background: rgba(15,23,42,0.98);
        border-radius: 16px;
        border: 1px solid rgba(148,163,184,0.8);
        box-shadow: 0 20px 55px rgba(0,0,0,0.7);
        padding: 10px 14px;
        display: grid;
        gap: 8px;
      }

      .hero-grid {
        gap: 26px;
      }

      .hero-card {
        max-width: 340px;
        margin: 0 auto;
      }

      .benefits-grid {
        grid-template-columns: minmax(0,1fr);
      }

      .section {
        padding: 44px 0;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 26px;
      }

      .hero-subtitle {
        font-size: 13px;
      }

      .hero-card-body {
        grid-template-columns: minmax(0,1fr);
      }

      .hero-bottle {
        margin-top: 8px;
      }
    }
  </style>