/* BURURAN Landing Page Styles */
:root {
  --primary: #c41e3a;
  --primary-dark: #9a1830;
  --accent: #f5a623;
  --dark: #0d0d0d;
  --dark-card: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #b0b0b0;
  --success: #2ecc71;
  --border: #333;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(0,0,0,0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ffc107;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(196,30,58,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196,30,58,0.55);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  padding: 70px 0 90px;
  background: radial-gradient(ellipse at 70% 20%, rgba(196,30,58,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(245,166,35,0.08) 0%, transparent 40%);
}

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

.hero-badge {
  display: inline-block;
  background: rgba(196,30,58,0.2);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid rgba(245,166,35,0.3);
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--primary);
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.price-old {
  font-size: 1.3rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-new {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-image-wrap {
  position: relative;
  text-align: center;
}

.hero-image-wrap img {
  max-height: 480px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(196,30,58,0.3));
}

.promo-badge {
  position: absolute;
  top: 20px;
  right: 10px;
  background: linear-gradient(135deg, var(--accent), #e67e22);
  color: #000;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  transform: rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  line-height: 1.3;
  text-align: center;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(196,30,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Ingredients */
.ingredients {
  background: linear-gradient(180deg, transparent, rgba(196,30,58,0.05), transparent);
}

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

.ing-list {
  list-style: none;
}

.ing-list li {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--dark-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.ing-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 6px;
  flex-shrink: 0;
}

.ing-list h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.ing-list p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Offer / Pricing */
.offer-section {
  background: radial-gradient(ellipse at center, rgba(196,30,58,0.12) 0%, transparent 70%);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.offer-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.25s;
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), var(--shadow);
  transform: scale(1.05);
}

.offer-card.popular:hover {
  transform: scale(1.07) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.offer-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.offer-qty {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.offer-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.offer-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 18px;
}

.offer-card .btn {
  width: 100%;
  margin-top: 12px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.step h4 {
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.stars {
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.review-author {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Order Form */
.order-section {
  background: linear-gradient(180deg, transparent, rgba(196,30,58,0.08));
}

.order-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
}

.order-box h2 {
  text-align: center;
  margin-bottom: 8px;
}

.order-box .sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.checkbox-group input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--accent);
}

.form-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.order-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}

.order-success h3 {
  color: var(--success);
  margin-bottom: 12px;
  font-size: 1.5rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 30px;
  background: #0a0a0a;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 1px solid var(--border);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

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

.btn-accept:hover {
  background: var(--primary-dark);
}

.btn-settings {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-settings:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Policy pages shared */
.policy-page {
  padding: 60px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.policy-page h2 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--accent);
}

.policy-page p, .policy-page li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.policy-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .ing-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .benefits-grid, .offer-cards, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .offer-card.popular {
    transform: none;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 500px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-lg {
    width: 100%;
  }
}

/* Articles / Blog style blocks */
.articles-section {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, rgba(196,30,58,0.06) 0%, transparent 40%, transparent 60%, rgba(196,30,58,0.04) 100%);
}

.articles-section .section-title {
  margin-bottom: 12px;
}

.articles-section .section-subtitle {
  margin-bottom: 50px;
}

.article-block {
  max-width: 820px;
  margin: 0 auto 48px;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transition: border-color 0.25s, transform 0.25s;
}

.article-block:hover {
  border-color: rgba(196,30,58,0.4);
}

.article-block .article-header {
  padding: 32px 36px 0;
}

.article-block h2 {
  font-size: 1.65rem;
  line-height: 1.35;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 700;
  padding: 32px 36px 16px;
}

.article-block h2 span {
  color: var(--accent);
}

.article-block img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.article-block p {
  color: #d4d4d4;
  margin: 0;
  padding: 0 36px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-block p + p {
  margin-top: 16px;
}

.article-block img + p {
  padding-top: 28px;
  color: #eaeaea;
}

.article-block p:last-child {
  padding-bottom: 36px;
}

/* Image gallery */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 10px;
}

.img-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.img-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* Benefit cards with images */
.benefit-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-bottom: 18px;
  border: 1px solid #2a2a2a;
}

/* Ensure all content images are responsive */
.ingredients img,
.hero-image-wrap img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .img-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-block h2 {
    font-size: 1.4rem;
    padding: 24px 24px 12px;
  }
  .article-block p {
    padding-left: 24px;
    padding-right: 24px;
  }
  .article-block img + p {
    padding-top: 22px;
  }
  .article-block p:last-child {
    padding-bottom: 28px;
  }
  .article-block img {
    height: 220px;
  }
}

@media (max-width: 500px) {
  .img-gallery {
    grid-template-columns: 1fr;
  }
  .img-gallery img {
    height: 200px;
  }
  .article-block h2 {
    font-size: 1.25rem;
    padding: 20px 18px 10px;
  }
  .article-block p {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 1rem;
  }
  .article-block img + p {
    padding-top: 18px;
  }
  .article-block p:last-child {
    padding-bottom: 24px;
  }
  .article-block img {
    height: 180px;
  }
  .benefit-card img {
    height: 130px;
  }
}


