:root {
    --primary: #a22b43;
    --primary-light: #c33854;
    --primary-dark: #822234;
    --secondary: #f4b400;
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-white: #ffffff;
    --bg-light: #fdf5f6;
    --accent-soft: rgba(162, 43, 67, 0.05);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 45px rgba(162, 43, 67, 0.12);
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* Header & Nav */
header {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 580px;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
    border-radius: var(--border-radius-lg);
}

.hero-image-mobile {
    display: none;
}

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

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

/* Region Grid Styling */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.region-card {
    display: block;
    padding: 24px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: center;
}

.region-card img {
    width: 60px;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.region-card .region-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary) !important;
    background: var(--bg-light);
}

/* FAQ Layout */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.faq-q {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.faq-q svg {
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-q {
    background-color: #f8fbff;
    color: var(--primary);
}

.faq-item.active .faq-q svg {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary);
}

.faq-a {
    padding: 0 30px 24px;
    display: none;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
}

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

/* CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #0a192f;
    color: #a0aec0;
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: block;
    text-decoration: none;
}

footer h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 12px;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
}

.legal-text {
    max-width: 900px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    margin: 40px auto;
    padding: 40px;
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 800px;
    position: relative;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}

.modal-content h2 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.close-modal {
    position: absolute;
    right: 24px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .hero-grid, .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-desktop {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        margin: 30px auto;
        max-width: 300px;
    }

    .hero-image-mobile img {
        width: 100%;
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
        border-radius: var(--border-radius-lg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-badge, .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        justify-content: center;
    }

    .footer-grid {
        gap: 40px;
    }
}



/* ═══════════════════════════════════════════
   EDITORIAL SECTIONS — SEO Content Blocks
   ═══════════════════════════════════════════ */

.ed-section {
  border-top: 1px solid rgba(0,0,0,0.06);
}

.ed-container {
  max-width: 900px;
  margin: 0 auto;
}

.ed-label {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
  border: 1px solid rgba(162,43,67,0.15);
}

.ed-h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 22px;
  line-height: 1.2;
}

.ed-lead {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 500;
}

.ed-body {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.ed-note {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 30px;
  padding: 14px 18px;
  border-left: 3px solid rgba(162,43,67,0.25);
  background: var(--accent-soft);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.ed-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.ed-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid rgba(162,43,67,0.2);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(162,43,67,0.06);
}

/* Verdict box */
.ed-verdict-box {
  margin-top: 32px;
  background: white;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(162,43,67,0.15);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ed-verdict-inner {
  padding: 28px 32px;
  border-left: 5px solid var(--primary);
}

.ed-verdict-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.ed-verdict-inner p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

/* Ingredients grid */
.ing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin: 32px 0;
}

.ing-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--border-radius-md);
  padding: 20px 22px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ing-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.ing-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.ing-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

/* Two-column how-to layout */
.ed-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ed-two-col-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  border-radius: var(--border-radius-md);
  padding: 18px 20px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}

.step-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Safety grid */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.safety-card {
  border-radius: var(--border-radius-md);
  padding: 24px 26px;
  border: 1px solid;
}

.safety-green {
  background: #f0fdf4;
  border-color: #86efac;
}

.safety-red {
  background: #fff5f5;
  border-color: #fca5a5;
}

.safety-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.safety-list li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}

.safety-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

.safety-note-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--border-radius-md);
  padding: 20px 24px;
  margin-top: 24px;
}

.safety-note-box svg {
  flex-shrink: 0;
  color: #d97706;
  margin-top: 2px;
}

.safety-note-box p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}

/* Scam / Where to buy */
.scam-warning-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: var(--border-radius-md);
  padding: 22px 26px;
  margin: 28px 0;
}

.scam-warning-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.scam-warning-box strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.scam-warning-box p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}

.guarantee-box {
  background: white;
  border: 1px solid rgba(162,43,67,0.15);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.guarantee-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 30px;
  border-left: 5px solid var(--primary);
}

.guarantee-icon {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 4px;
}

.guarantee-inner strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.guarantee-inner p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}

/* Responsive — editorial blocks */
@media (max-width: 768px) {
  .ed-h2 {
    font-size: 1.55rem;
  }

  .ed-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .guarantee-inner {
    flex-direction: column;
  }
}

.policy-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.policy-hero h1 {
    color: white;
    font-size: 2.6rem;
    margin-bottom: 12px;
}
.policy-hero p {
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.05rem;
}
.policy-content {
    background: var(--bg-white);
    padding: 70px 0;
}
.policy-card {
    max-width: 920px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 44px;
    border: 1px solid rgba(0,0,0,0.06);
}
.policy-card h2 {
    margin-top: 34px;
    margin-bottom: 12px;
    font-size: 1.35rem;
}
.policy-card h2:first-child {
    margin-top: 0;
}
.policy-card p, .policy-card li {
    margin-bottom: 14px;
}
.policy-card ul {
    padding-left: 22px;
    margin-bottom: 22px;
}
.policy-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 28px;
}
@media (max-width: 768px) {
    .policy-card {
        padding: 30px 22px;
    }
    .policy-hero h1 {
        font-size: 2rem;
    }
}
