  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --obsidian: #0a0a0b;
    --deep: #0f0e10;
    --surface: #161418;
    --amber: #c8872a;
    --amber-light: #e6a845;
    --amber-glow: #f0c070;
    --cream: #f5f0e8;
    --parchment: #ede5d6;
    --muted: #8a8078;
    --warm-white: #faf7f2;
    --gold-line: #b8823a;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--obsidian);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* ===================== HERO ===================== */
  .hero {
    min-height: 100vh;
    background: var(--obsidian);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 65% 50%, rgba(200,135,42,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200,135,42,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
  }

  .hero-mountain {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 280px;
    background: linear-gradient(180deg, transparent 0%, rgba(15,10,8,0.4) 100%);
    clip-path: polygon(0 100%, 0 70%, 8% 55%, 15% 45%, 22% 50%, 28% 35%, 35% 20%, 42% 32%, 50% 15%, 58% 28%, 65% 18%, 72% 30%, 80% 22%, 87% 35%, 93% 45%, 100% 38%, 100% 100%);
    opacity: 0.3;
    pointer-events: none;
  }

  .hero-left {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px) clamp(60px, 8vw, 120px) clamp(30px, 6vw, 100px);
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--amber);
  }

  .eyebrow-text {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
  }

  .hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 24px;
  }

  .hero-heading span { font-style: italic; color: var(--amber-light); }

  .hero-subtext {
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 36px;
  }

  .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
  }

  .trust-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border: 1px solid rgba(200,135,42,0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    color: var(--parchment);
    background: rgba(200,135,42,0.06);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, background 0.3s;
  }
  .trust-pill:hover { border-color: rgba(200,135,42,0.5); background: rgba(200,135,42,0.12); }
  .trust-pill .check { color: var(--amber); font-size: 11px; }

  .cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: var(--obsidian);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
    opacity: 0; transition: opacity 0.3s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,135,42,0.35); }
  .btn-primary:hover::after { opacity: 1; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    background: transparent;
    color: var(--parchment);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 1px solid rgba(245,240,232,0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
  }
  .btn-secondary:hover { border-color: rgba(245,240,232,0.5); color: var(--cream); }

  /* ── Hero Right — Product Stage ── */
  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    z-index: 2;
  }

  .product-stage {
    position: relative;
    width: min(420px, 88%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Animated outer rings ── */
  .ring {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .ring-1 {
    width: 100%; height: 100%;
    border: 1px solid rgba(200,135,42,0.18);
    animation: ring-pulse 4s ease-in-out infinite;
  }
  .ring-2 {
    width: 115%; height: 115%;
    border: 1px solid rgba(200,135,42,0.1);
    animation: ring-pulse 4s ease-in-out infinite 0.8s;
  }
  .ring-3 {
    width: 132%; height: 132%;
    border: 1px solid rgba(200,135,42,0.05);
    animation: ring-pulse 4s ease-in-out infinite 1.6s;
  }

  @keyframes ring-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
  }

  /* Rotating dashed ring */
  .ring-spin {
    position: absolute;
    width: 108%; height: 108%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(200,135,42,0.12);
    animation: spin-ring 25s linear infinite;
    pointer-events: none;
  }
  @keyframes spin-ring { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

  /* Dot markers on ring */
  .ring-dot {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--amber);
    top: 50%; left: 50%;
    transform-origin: 0 0;
  }
  .ring-dot-1 { transform: rotate(0deg) translateX(calc(min(420px, 88%) * 0.54)) translateY(-3px); }
  .ring-dot-2 { transform: rotate(120deg) translateX(calc(min(420px, 88%) * 0.54)) translateY(-3px); opacity: 0.4; }
  .ring-dot-3 { transform: rotate(240deg) translateX(calc(min(420px, 88%) * 0.54)) translateY(-3px); opacity: 0.6; }

  /* Amber glow behind image */
  .product-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at 50% 60%, rgba(200,135,42,0.22) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
  }

  /* ── The circle image container ── */
  .product-img-circle {
    position: relative;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, #1e1608 0%, #0a0a0b 100%);
    border: 1.5px solid rgba(200,135,42,0.25);
    box-shadow:
      0 0 0 1px rgba(200,135,42,0.08),
      0 30px 80px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(200,135,42,0.15),
      inset 0 -1px 0 rgba(0,0,0,0.5);
    animation: float 5s ease-in-out infinite;
    z-index: 2;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
  }

  /* The actual product image */
  .product-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: contrast(1.05) brightness(1.08) saturate(1.1);
    transition: filter 0.4s, transform 0.4s;
  }

  .product-img-circle:hover img {
    filter: contrast(1.08) brightness(1.12) saturate(1.2);
    transform: scale(1.03);
  }

  /* Inner vignette overlay on circle */
  .product-img-circle::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, transparent 55%, rgba(10,10,11,0.55) 100%);
    pointer-events: none;
    z-index: 3;
  }

  /* Top amber shimmer line */
  .product-img-circle::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,135,42,0.6), transparent);
    z-index: 4;
  }

  /* ── Floating badges ── */
  .product-badge {
    position: absolute;
    top: 8%;
    right: -4%;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--obsidian);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(200,135,42,0.45);
    z-index: 10;
    animation: float 5s ease-in-out infinite 0.6s;
  }

  .product-label {
    position: absolute;
    bottom: 12%;
    left: -4%;
    background: rgba(10,10,11,0.85);
    border: 1px solid rgba(200,135,42,0.3);
    backdrop-filter: blur(16px);
    padding: 12px 18px;
    border-radius: 6px;
    z-index: 10;
    animation: float 5s ease-in-out infinite 1.2s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }

  .product-label p {
    font-size: 10px;
    color: var(--amber);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .product-label span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--cream);
    font-style: italic;
  }

  /* Stars badge */
  .stars-badge {
    position: absolute;
    top: 52%;
    right: -8%;
    background: rgba(10,10,11,0.85);
    border: 1px solid rgba(200,135,42,0.2);
    backdrop-filter: blur(16px);
    padding: 10px 14px;
    border-radius: 6px;
    z-index: 10;
    animation: float 5s ease-in-out infinite 2s;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    text-align: center;
  }
  .stars-badge .stars { color: var(--amber); font-size: 12px; letter-spacing: 1px; display: block; margin-bottom: 3px; }
  .stars-badge .stars-label { font-size: 10px; color: var(--muted); white-space: nowrap; }

  /* Scroll hint */
  .scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    z-index: 3;
  }
  .scroll-hint span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--amber), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
  }
  @keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 0.8; transform: scaleY(1); }
  }

  /* ===================== ANIMATIONS ===================== */
  [data-reveal] { opacity: 1; transform: none; }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { min-height: 80vw; max-height: 560px; }
    .hero-left { padding: 80px 28px 40px; }
    .product-badge { right: 2%; }
    .product-label { left: 0%; }
    .stars-badge { right: -2%; }
  }

  @media (max-width: 600px) {
    .hero-heading { font-size: 36px; }
    .trust-row { gap: 8px; }
    .trust-pill { font-size: 11px; padding: 6px 11px; }
    .cta-group { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .stars-badge { display: none; }
    .product-badge { right: 0; }
  }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --obsidian: #0a0a0b;
    --deep: #0f0e10;
    --surface: #161418;
    --amber: #c8872a;
    --amber-light: #e6a845;
    --amber-glow: #f0c070;
    --cream: #f5f0e8;
    --parchment: #ede5d6;
    --muted: #8a8078;
    --warm-white: #faf7f2;
    --gold-line: #b8823a;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--obsidian);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* ===================== HERO ===================== */
  .hero {
    min-height: 100vh;
    background: var(--obsidian);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
  }

  /* Atmospheric background layers */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 65% 50%, rgba(200,135,42,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200,135,42,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
  }

  /* Mountain silhouette */
  .hero-mountain {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(180deg, transparent 0%, rgba(15,10,8,0.4) 100%);
    clip-path: polygon(0 100%, 0 70%, 8% 55%, 15% 45%, 22% 50%, 28% 35%, 35% 20%, 42% 32%, 50% 15%, 58% 28%, 65% 18%, 72% 30%, 80% 22%, 87% 35%, 93% 45%, 100% 38%, 100% 100%);
    opacity: 0.3;
    pointer-events: none;
  }

  .hero-left {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px) clamp(60px, 8vw, 120px) clamp(30px, 6vw, 100px);
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--amber);
  }

  .eyebrow-text {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
  }

  .hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 24px;
  }

  .hero-heading span {
    font-style: italic;
    color: var(--amber-light);
  }

  .hero-subtext {
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 36px;
  }

  /* Trust pills */
  .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
  }

  .trust-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border: 1px solid rgba(200,135,42,0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    color: var(--parchment);
    background: rgba(200,135,42,0.06);
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, background 0.3s;
  }

  .trust-pill:hover {
    border-color: rgba(200,135,42,0.5);
    background: rgba(200,135,42,0.12);
  }

  .trust-pill .check {
    color: var(--amber);
    font-size: 11px;
  }

  /* CTAs */
  .cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: var(--obsidian);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,135,42,0.35); }
  .btn-primary:hover::after { opacity: 1; }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 28px;
    background: transparent;
    color: var(--parchment);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 1px solid rgba(245,240,232,0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
  }

  .btn-secondary:hover { border-color: rgba(245,240,232,0.5); color: var(--cream); }

  /* Hero Right — Product */
  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    z-index: 2;
  }

  .product-stage {
    position: relative;
    width: min(380px, 90%);
    aspect-ratio: 1;
  }

  /* Glow rings */
  .product-stage::before,
  .product-stage::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200,135,42,0.15);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .product-stage::before { width: 100%; height: 100%; }
  .product-stage::after { width: 130%; height: 130%; border-color: rgba(200,135,42,0.07); }

  .product-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(200,135,42,0.18) 0%, transparent 65%);
    pointer-events: none;
  }

  .product-visual {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  /* Product image in circle */
  .product-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
    border: 1.5px solid rgba(200,135,42,0.25);
    box-shadow:
      0 0 60px rgba(200,135,42,0.18),
      0 20px 80px rgba(0,0,0,0.6),
      inset 0 1px 0 rgba(200,135,42,0.15);
    position: relative;
  }

  .product-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, transparent 55%, rgba(10,10,11,0.5) 100%);
    pointer-events: none;
  }

  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .product-badge {
    position: absolute;
    top: 18%;
    right: -8%;
    background: var(--amber);
    color: var(--obsidian);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(200,135,42,0.4);
    animation: float 4s ease-in-out infinite 0.5s;
  }

  .product-label {
    position: absolute;
    bottom: 15%;
    left: -5%;
    background: rgba(10,10,11,0.8);
    border: 1px solid rgba(200,135,42,0.3);
    backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: 4px;
    animation: float 4s ease-in-out infinite 1s;
  }

  .product-label p {
    font-size: 11px;
    color: var(--amber);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  .product-label span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--cream);
    font-style: italic;
  }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    z-index: 3;
  }

  .scroll-hint span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--amber), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
  }

  @keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 0.8; transform: scaleY(1); }
  }

  /* ===================== PROBLEM ===================== */
  .problem {
    background: var(--warm-white);
    color: var(--obsidian);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
    position: relative;
    overflow: hidden;
  }

  .problem::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,135,42,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .problem-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
  }

  .problem-left {}

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
  }

  .label-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
  }

  .problem-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--obsidian);
    margin-bottom: 28px;
  }

  .problem-heading em {
    font-style: italic;
    color: #8B5E1A;
  }

  .problem-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4540;
    margin-bottom: 36px;
  }

  .problem-transition {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--obsidian) 0%, #1a1008 100%);
    border-left: 3px solid var(--amber);
    border-radius: 2px;
  }

  .problem-transition p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--amber-light);
    line-height: 1.4;
  }

  .problem-right {
    position: relative;
  }

  /* Depleted energy visual */
  .depletion-visual {
    background: linear-gradient(135deg, #f0ebe3 0%, #e8e0d4 100%);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    overflow: hidden;
  }

  .depletion-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8872a' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  }

  .depletion-stat {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 8px;
  }

  .depletion-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: var(--amber);
    line-height: 1;
  }

  .depletion-unit {
    font-size: 24px;
    color: #c8872a;
    margin-bottom: 14px;
    font-weight: 300;
  }

  .depletion-desc {
    font-size: 14px;
    color: #6a5a4a;
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.6;
  }

  .problem-symptoms {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .problem-symptoms li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4a3a2a;
    font-weight: 400;
  }

  .symptom-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(200,135,42,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
  }

  /* ===================== WHAT IS SHILAJIT ===================== */
  .what {
    background: var(--deep);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
    position: relative;
    overflow: hidden;
  }

  .what::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
  }

  .what-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
  }

  .what-left {}

  .what-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 28px;
  }

  .what-heading em {
    font-style: italic;
    color: var(--amber-light);
  }

  .what-body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: #9a908a;
    margin-bottom: 24px;
  }

  .what-body strong {
    color: var(--parchment);
    font-weight: 400;
  }

  /* Compound pills */
  .compound-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
  }

  .compound-tag {
    padding: 6px 14px;
    border: 1px solid rgba(200,135,42,0.3);
    border-radius: 100px;
    font-size: 12px;
    color: var(--amber-light);
    font-weight: 400;
    letter-spacing: 0.05em;
  }

  /* Quote box */
  .quote-box {
    background: linear-gradient(135deg, rgba(200,135,42,0.12) 0%, rgba(200,135,42,0.05) 100%);
    border: 1px solid rgba(200,135,42,0.25);
    border-radius: 6px;
    padding: 36px;
    position: relative;
    overflow: hidden;
  }

  .quote-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 160px;
    color: rgba(200,135,42,0.1);
    line-height: 1;
    pointer-events: none;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .quote-source {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
  }

  /* Ayurveda visual */
  .heritage-card {
    margin-top: 28px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .heritage-icon {
    font-size: 28px;
    flex-shrink: 0;
  }

  .heritage-text p {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 6px;
  }

  .heritage-text span {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ===================== BENEFITS ===================== */
  .benefits {
    background: var(--warm-white);
    padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
    color: var(--obsidian);
    position: relative;
    overflow: hidden;
  }

  .benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .benefits-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
  }

  .benefits-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--obsidian);
    margin-bottom: 16px;
  }

  .benefits-heading em { font-style: italic; color: #8B5E1A; }

  .benefits-sub {
    font-size: 16px;
    color: #7a6a5a;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* Divider */
  .heading-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0 0;
  }

  .divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber));
  }

  .divider-line.right {
    background: linear-gradient(90deg, var(--amber), transparent);
  }

  .divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--amber);
    transform: rotate(45deg);
  }

  /* Benefit cards */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .benefit-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 6px;
    padding: 36px 28px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    overflow: hidden;
    cursor: default;
  }

  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light));
    opacity: 0;
    transition: opacity 0.3s;
  }

  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: rgba(200,135,42,0.2);
  }

  .benefit-card:hover::before { opacity: 1; }

  .benefit-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: rgba(200,135,42,0.12);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .benefit-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(200,135,42,0.12) 0%, rgba(200,135,42,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    border: 1px solid rgba(200,135,42,0.15);
  }

  .benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--obsidian);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .benefit-desc {
    font-size: 14px;
    font-weight: 300;
    color: #7a6a5a;
    line-height: 1.7;
  }

  /* ===================== SECTION DIVIDERS ===================== */
  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,135,42,0.3), transparent);
  }

  /* ===================== ANIMATIONS ===================== */
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }

  [data-reveal-delay="1"] { transition-delay: 0.1s; }
  [data-reveal-delay="2"] { transition-delay: 0.2s; }
  [data-reveal-delay="3"] { transition-delay: 0.3s; }
  [data-reveal-delay="4"] { transition-delay: 0.4s; }
  [data-reveal-delay="5"] { transition-delay: 0.5s; }
  [data-reveal-delay="6"] { transition-delay: 0.6s; }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 900px) {
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .hero-right {
      min-height: 60vw;
      max-height: 520px;
    }

    .hero-left {
      padding: 80px 28px 40px;
    }

    .problem-inner,
    .what-inner {
      grid-template-columns: 1fr;
    }

    .what-inner { direction: initial; }

    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .hero-heading { font-size: 36px; }
    .trust-row { gap: 8px; }
    .trust-pill { font-size: 11px; padding: 6px 11px; }
    .cta-group { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .benefits-grid { grid-template-columns: 1fr; }
    .problem-inner { gap: 40px; }
    .depletion-visual { padding: 28px 20px; }
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --obsidian: #0a0a0b;
  --deep: #0f0e10;
  --surface: #161418;
  --amber: #c8872a;
  --amber-light: #e6a845;
  --amber-glow: #f0c070;
  --cream: #f5f0e8;
  --parchment: #ede5d6;
  --muted: #8a8078;
  --warm-white: #faf7f2;
  --gold-line: #b8823a;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--obsidian);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── Shared Utilities ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.label-text { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber); }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(200,135,42,0.3), transparent); }

/* REPLACE WITH THIS */
[data-reveal] { opacity: 1; transform: none; }

/* ============================================================
   SECTION 05 — WHY BEST SHILAJIT UK
============================================================ */
.compare {
  background: var(--obsidian);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.compare::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,135,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.compare-inner { max-width: 1100px; margin: 0 auto; }

.compare-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }

.compare-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}
.compare-heading em { font-style: italic; color: var(--amber-light); }

.compare-sub {
  font-size: 15px; font-weight: 300; color: var(--muted);
  max-width: 480px; margin: 0 auto; line-height: 1.7;
}

/* Table */
.compare-table-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(200,135,42,0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.compare-table { width: 100%; border-collapse: collapse; }

.compare-table thead tr th {
  padding: 22px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.th-feature {
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  width: 32%;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.th-standard {
  background: rgba(255,255,255,0.04);
  color: #665a50;
  width: 34%;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.th-best {
  background: linear-gradient(135deg, rgba(200,135,42,0.18) 0%, rgba(200,135,42,0.08) 100%);
  color: var(--amber-light);
  width: 34%;
  text-align: center;
  position: relative;
}

.th-best::after {
  content: '★ OUR PICK';
  position: absolute;
  top: -1px; right: 0;
  background: var(--amber);
  color: var(--obsidian);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 0 0 0 6px;
}

.compare-table tbody tr td {
  padding: 18px 28px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}

.compare-table tbody tr:nth-child(odd) td { background: rgba(255,255,255,0.015); }

.td-feature {
  color: #a09080;
  font-weight: 400;
  border-right: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.td-standard {
  text-align: center;
  color: #554a40;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.td-best {
  text-align: center;
  color: var(--cream);
  background: rgba(200,135,42,0.04);
  font-weight: 400;
}

.cross { color: #6a4030; font-size: 16px; }
.tick { color: var(--amber-light); font-size: 15px; font-weight: 600; }

.compare-note {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: rgba(200,135,42,0.06);
  border: 1px solid rgba(200,135,42,0.2);
  border-radius: 6px;
}
.compare-note p { font-size: 15px; font-weight: 300; color: var(--parchment); line-height: 1.6; }
.compare-note .note-icon { font-size: 24px; flex-shrink: 0; }

/* ============================================================
   SECTION 06 — PRODUCT SHOWCASE
============================================================ */
.showcase {
  background: var(--deep);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(200,135,42,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.showcase-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Product card */
.product-card {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 0.85;
  background: linear-gradient(145deg, #1a1410 0%, #0f0c0a 100%);
  border-radius: 16px;
  border: 1px solid rgba(200,135,42,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(200,135,42,0.08);
}

.product-card-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,135,42,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.product-card-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.card-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--amber);
  color: var(--obsidian);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.card-jar-wrap {
  position: relative;
  z-index: 2;
  animation: float-slow 5s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-jar-svg { width: 160px; filter: drop-shadow(0 16px 40px rgba(200,135,42,0.35)); }

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  text-align: center;
  margin-top: 20px;
  position: relative; z-index: 2;
}

.card-weight {
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
  position: relative; z-index: 2;
}

.ring-outer, .ring-inner {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,135,42,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ring-outer { width: 85%; height: 85%; }
.ring-inner { width: 65%; height: 65%; border-color: rgba(200,135,42,0.06); }

/* Showcase right */
.showcase-right {}

.showcase-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}
.showcase-heading em { font-style: italic; color: var(--amber-light); }

.showcase-desc {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--muted); margin-bottom: 32px;
}

.showcase-features {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px;
}

.feature-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  transition: border-color 0.3s, background 0.3s;
}
.feature-row:hover { border-color: rgba(200,135,42,0.3); background: rgba(200,135,42,0.05); }

.feature-check { color: var(--amber); font-size: 14px; flex-shrink: 0; }
.feature-row span { font-size: 14px; color: var(--parchment); font-weight: 400; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  color: var(--obsidian);
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; border-radius: 2px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,135,42,0.35); }

/* ============================================================
   SECTION 07 — SOURCE & PURIFICATION STORY
============================================================ */
.source {
  background: var(--warm-white);
  color: var(--obsidian);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.source::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.source-inner { max-width: 1100px; margin: 0 auto; }

.source-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.source-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300; line-height: 1.08;
  color: var(--obsidian); margin-bottom: 24px;
}
.source-heading em { font-style: italic; color: #8B5E1A; }

.source-body {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: #4a4540; margin-bottom: 20px;
}
.source-body strong { color: var(--obsidian); font-weight: 500; }

.source-note {
  padding: 20px 24px;
  border-left: 3px solid var(--amber);
  background: rgba(200,135,42,0.05);
  border-radius: 0 4px 4px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 20px;
  color: #6a4a1a; line-height: 1.5;
}

/* Journey steps */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(200,135,42,0.15);
  border-radius: 10px;
  overflow: hidden;
}

.journey-step {
  background: var(--warm-white);
  padding: 32px 24px;
  position: relative;
  transition: background 0.3s;
}
.journey-step:hover { background: #f0e8da; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: rgba(200,135,42,0.18); line-height: 1;
  margin-bottom: 14px;
}

.step-icon {
  font-size: 24px; margin-bottom: 12px; display: block;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: var(--obsidian); margin-bottom: 8px;
}

.step-desc {
  font-size: 13px; font-weight: 300;
  color: #7a6a5a; line-height: 1.65;
}

/* ============================================================
   SECTION 08 — CERTIFICATION
============================================================ */
.certs {
  background: var(--obsidian);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.certs::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,135,42,0.05) 0%, transparent 65%);
}

.certs::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,135,42,0.3), transparent);
}

.certs-inner { max-width: 1100px; margin: 0 auto; }

.certs-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }

.certs-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 16px;
}
.certs-heading em { font-style: italic; color: var(--amber-light); }

.certs-sub {
  font-size: 15px; font-weight: 300; color: var(--muted);
  max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* Cert grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.cert-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,135,42,0.15);
  border-radius: 10px;
  padding: 28px 24px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}

.cert-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.cert-card:hover {
  border-color: rgba(200,135,42,0.4);
  background: rgba(200,135,42,0.05);
  transform: translateY(-4px);
}
.cert-card:hover::after { opacity: 1; }

.cert-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,135,42,0.2) 0%, rgba(200,135,42,0.08) 100%);
  border: 1px solid rgba(200,135,42,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.cert-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: var(--cream); margin-bottom: 4px;
}

.cert-code {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber);
}

/* Wide statement bar */
.cert-statement {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(200,135,42,0.12) 0%, rgba(200,135,42,0.04) 100%);
  border: 1px solid rgba(200,135,42,0.2);
  border-radius: 8px;
}
.cert-statement-icon { font-size: 32px; flex-shrink: 0; }
.cert-statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.2vw, 22px); font-style: italic;
  color: var(--parchment); line-height: 1.5;
}

/* ============================================================
   SECTION 09 — HOW TO USE
============================================================ */
.howto {
  background: var(--deep);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.howto::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,135,42,0.3), transparent);
}

.howto-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.howto-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 16px;
}
.howto-heading em { font-style: italic; color: var(--amber-light); }

.howto-intro {
  font-size: 16px; font-weight: 300; color: var(--muted);
  margin-bottom: clamp(48px, 6vw, 72px); line-height: 1.7;
}

/* Steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 48px;
}

/* Connector line */
.steps-row::before {
  content: '';
  position: absolute;
  top: 52px; left: calc(16.6% + 16px); right: calc(16.6% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(200,135,42,0.3), var(--amber));
  z-index: 0;
}

.step-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 20px;
  position: relative; z-index: 1;
}

.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(200,135,42,0.4);
  flex-shrink: 0;
}

.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 600;
  color: var(--obsidian);
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--obsidian);
  border: 1px solid var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--amber); letter-spacing: 0;
}

.step-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--cream); margin-bottom: 10px;
}

.step-desc {
  font-size: 13px; font-weight: 300; color: var(--muted);
  line-height: 1.65; text-align: center; max-width: 180px;
}

.howto-tip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: rgba(200,135,42,0.08);
  border: 1px solid rgba(200,135,42,0.2);
  border-radius: 100px;
  font-size: 14px; color: var(--amber-light); font-weight: 400;
}
.tip-icon { font-size: 16px; }

/* ============================================================
   SECTION 10 — SOCIAL PROOF
============================================================ */
.proof {
  background: var(--warm-white);
  color: var(--obsidian);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.proof::after {
  content: '"';
  position: absolute;
  top: -20px; left: 5%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 320px; font-weight: 300;
  color: rgba(200,135,42,0.05);
  line-height: 1;
  pointer-events: none;
}

.proof-inner { max-width: 1100px; margin: 0 auto; }

.proof-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); position: relative; z-index: 1; }

.proof-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300; line-height: 1.1;
  color: var(--obsidian); margin-bottom: 16px;
}
.proof-heading em { font-style: italic; color: #8B5E1A; }

/* Stars summary */
.stars-summary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 24px;
  background: rgba(200,135,42,0.08);
  border: 1px solid rgba(200,135,42,0.2);
  border-radius: 100px;
  margin-top: 8px;
}
.stars-str { font-size: 22px; letter-spacing: 2px; color: var(--amber); }
.stars-label { font-size: 13px; font-weight: 500; color: #7a6040; letter-spacing: 0.06em; }

/* Review grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative; z-index: 1;
  margin-bottom: 48px;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

.review-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300;
  color: rgba(200,135,42,0.15);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.review-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  color: var(--obsidian); line-height: 1.5; margin-bottom: 24px;
}

.reviewer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,135,42,0.2) 0%, rgba(200,135,42,0.08) 100%);
  border: 1px solid rgba(200,135,42,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

.reviewer-name { font-size: 14px; font-weight: 500; color: var(--obsidian); }
.reviewer-meta { font-size: 11px; color: #9a8878; margin-top: 2px; letter-spacing: 0.05em; }

.verified-badge {
  position: absolute; top: 20px; right: 20px;
  background: rgba(200,135,42,0.1);
  border: 1px solid rgba(200,135,42,0.2);
  color: var(--amber);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}

/* Trust bar */
.trust-bar {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 0;
  background: linear-gradient(135deg, var(--obsidian) 0%, #1a1008 100%);
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(200,135,42,0.15);
}

.trust-stat {
  flex: 1; min-width: 160px;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.trust-stat:last-child { border-right: none; }

.trust-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300;
  color: var(--amber-light); line-height: 1; margin-bottom: 6px;
}

.trust-stat-label {
  font-size: 12px; font-weight: 400;
  color: var(--muted); letter-spacing: 0.08em;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .compare-table { font-size: 13px; }
  .compare-table tbody tr td, .compare-table thead tr th { padding: 14px 16px; }
  .showcase-inner { grid-template-columns: 1fr; }
  .showcase-left { order: -1; }
  .source-top { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .steps-row { gap: 24px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .cert-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; }
  .trust-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .trust-stat:last-child { border-bottom: none; }
  .compare-table .th-best::after { display: none; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --obsidian: #0a0a0b;
  --deep: #0f0e10;
  --amber: #c8872a;
  --amber-light: #e6a845;
  --cream: #f5f0e8;
  --parchment: #ede5d6;
  --muted: #8a8078;
  --warm-white: #faf7f2;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--obsidian);
  color: var(--cream);
  overflow-x: hidden;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.label-text { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber); }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(200,135,42,0.3), transparent); }

/* ============================================================
   SECTION 11 — BLOG / EDUCATION
============================================================ */
.blog {
  background: var(--warm-white);
  color: var(--obsidian);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.blog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

/* Decorative background text */
.blog::after {
  content: 'KNOWLEDGE';
  position: absolute;
  bottom: -30px; right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 300;
  color: rgba(200,135,42,0.04);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.blog-inner { max-width: 1200px; margin: 0 auto; }

.blog-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
  gap: 24px;
  flex-wrap: wrap;
}

.blog-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--obsidian);
}
.blog-heading em { font-style: italic; color: #8B5E1A; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--obsidian);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.btn-outline-dark:hover {
  background: var(--obsidian);
  color: var(--cream);
  border-color: var(--obsidian);
}

/* Article cards grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Featured large card */
.blog-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

.blog-card.featured { grid-row: span 2; }

/* Illustrated header */
.card-art {
  position: relative;
  overflow: hidden;
}

.blog-card.featured .card-art { height: 240px; }
.blog-card:not(.featured) .card-art { height: 130px; }

.art-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.art-bg.energy {
  background: linear-gradient(135deg, #1a1208 0%, #2a1e0a 100%);
}
.art-bg.resin {
  background: linear-gradient(135deg, #0f1a0a 0%, #1a2a10 100%);
}
.art-bg.fulvic {
  background: linear-gradient(135deg, #0a1020 0%, #101828 100%);
}
.art-bg.himalayan {
  background: linear-gradient(135deg, #1a0a14 0%, #2a1020 100%);
}

/* SVG art inside cards */
.card-art-svg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}

/* Overlay gradient */
.card-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

.card-tag-art {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(200,135,42,0.9);
  backdrop-filter: blur(8px);
  color: var(--obsidian);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card.featured .card-body { padding: 28px; }

.card-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--obsidian);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-card.featured .card-title { font-size: 28px; }

.card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: #7a6a5a;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: auto;
}

.card-read-more svg {
  transition: transform 0.3s;
}
.blog-card:hover .card-read-more svg { transform: translateX(4px); }

/* ============================================================
   SECTION 11b — GUARANTEE
============================================================ */
.guarantee {
  background: var(--deep);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

.guarantee::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,135,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle grid pattern */
.guarantee::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,135,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,135,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.guarantee-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Shield emblem */
.guarantee-emblem {
  flex-shrink: 0;
  position: relative;
}

.shield-wrap {
  width: clamp(160px, 20vw, 220px);
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating ring */
.shield-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(200,135,42,0.2);
  animation: spin-slow 20s linear infinite;
}

.shield-ring::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.shield-ring-2 {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(200,135,42,0.12);
  animation: spin-slow 30s linear infinite reverse;
}

.shield-svg {
  width: 70%;
  filter: drop-shadow(0 0 30px rgba(200,135,42,0.3));
  position: relative; z-index: 2;
}

.guarantee-right {}

.guarantee-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}
.guarantee-heading em { font-style: italic; color: var(--amber-light); }

.guarantee-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.guarantee-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.pillar {
  padding: 20px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,135,42,0.15);
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.pillar:hover { border-color: rgba(200,135,42,0.35); background: rgba(200,135,42,0.06); }

.pillar-icon { font-size: 24px; margin-bottom: 10px; display: block; }

.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 5px;
}

.pillar-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}

.guarantee-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(200,135,42,0.06);
  border: 1px solid rgba(200,135,42,0.18);
  border-radius: 6px;
}
.guarantee-note-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.guarantee-note p { font-size: 14px; font-weight: 300; color: var(--parchment); line-height: 1.65; }

/* ============================================================
   SECTION 12 — FINAL CTA
============================================================ */
.final-cta {
  background: var(--obsidian);
  padding: clamp(100px, 14vw, 180px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Atmospheric layers */
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(200,135,42,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(200,135,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Mountain silhouette */
.cta-mountain {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  pointer-events: none;
}

/* Grain texture */
.cta-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* Ornamental rings */
.cta-ring-1, .cta-ring-2, .cta-ring-3 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,135,42,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-ring-1 { width: min(600px, 90vw); height: min(600px, 90vw); }
.cta-ring-2 { width: min(800px, 120vw); height: min(800px, 120vw); border-color: rgba(200,135,42,0.04); }
.cta-ring-3 { width: min(400px, 60vw); height: min(400px, 60vw); border-color: rgba(200,135,42,0.12); }

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Top ornament */
.cta-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.orn-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,135,42,0.6));
}
.orn-line.right { background: linear-gradient(90deg, rgba(200,135,42,0.6), transparent); }

.orn-diamond-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.orn-diamond {
  width: 6px; height: 6px;
  background: var(--amber);
  transform: rotate(45deg);
}
.orn-diamond.sm {
  width: 4px; height: 4px;
  background: rgba(200,135,42,0.4);
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: block;
}

.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.cta-heading em {
  font-style: italic;
  color: var(--amber-light);
  display: block;
}

.cta-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 48px;
}

/* CTA button — large version */
.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 48px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 50%, var(--amber) 100%);
  background-size: 200% 100%;
  color: var(--obsidian);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.btn-cta-large::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-cta-large:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(200,135,42,0.45);
}
.btn-cta-large:hover::before { opacity: 1; }

.btn-arrow {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
}

/* Trust row below button */
.cta-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.cta-trust-item .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(200,135,42,0.4); flex-shrink: 0; }

/* Divider between guarantee and final CTA */
.amber-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1000px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .blog-card.featured .card-art { height: 200px; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-emblem { margin: 0 auto; }
  .guarantee-body { margin: 0 auto 36px; }
  .cta-ring-1, .cta-ring-2 { display: none; }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card.featured { grid-column: span 1; }
  .blog-top { flex-direction: column; align-items: flex-start; }
  .guarantee-pillars { grid-template-columns: 1fr; }
  .cta-trust-row { flex-direction: column; gap: 12px; }
  .cta-heading { font-size: 40px; }
  .btn-cta-large { padding: 18px 32px; width: 100%; justify-content: center; }
}