/* Red Creative — Landing Page styles */

:root {
  --bg: #0a0908;
  --bg-alt: #141210;
  --card: #1b1815;
  --card-border: rgba(217, 164, 65, 0.18);
  --red: #e5342b;
  --red-dark: #b8241c;
  --gold: #d9a441;
  --gold-light: #f0c878;
  --white: #f6f3ee;
  --muted: #b8b2a9;
  --muted-2: #85807a;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(650px 550px at 6% 60px, rgba(229, 52, 43, 0.26), transparent 70%),
    radial-gradient(650px 550px at 96% 420px, rgba(217, 164, 65, 0.2), transparent 70%),
    var(--bg);
  background-repeat: no-repeat;
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0 0 16px; line-height: 1.15; }

p { margin: 0 0 16px; color: var(--muted); }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.section { max-width: 1120px; margin: 0 auto; padding: 96px 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 164, 65, 0.12);
}

.brand { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.brand-red { color: var(--red); }
.brand-gray { color: var(--white); }
.brand small { margin-left: 6px; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--muted-2); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: flex;
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.is-active { background: var(--gold); color: #171310; }
.lang-btn:not(.is-active):hover { color: var(--white); }

.header-cta {
  display: none;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
}

@media (min-width: 640px) {
  .header-cta { display: inline-block; }
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.button-primary { background: var(--red); color: var(--white); box-shadow: 0 10px 30px rgba(229, 52, 43, 0.35); }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(229, 52, 43, 0.45); }

.button-secondary { background: transparent; color: var(--white); border: 1px solid rgba(246, 243, 238, 0.3); }
.button-secondary:hover { border-color: var(--gold); color: var(--gold); }

.button.full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero-copy { position: relative; z-index: 1; width: 100%; }

.hero h1 { font-size: clamp(30px, 5vw, 44px); color: var(--white); }
.hero h1 span { color: var(--gold); }

.hero-lead { font-size: 17px; max-width: 46ch; margin-left: auto; margin-right: auto; }

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 28px; }

.micro-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; }
.micro-benefits li {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  padding-left: 18px;
  position: relative;
}
.micro-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  z-index: 1;
  order: -1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.video-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}

.video-frame {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-note { text-align: center; font-size: 14px; margin-top: 16px; margin-bottom: 0; max-width: 46ch; margin-left: auto; margin-right: auto; }

/* Trust strip */
.trust-strip {
  display: grid;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

@media (min-width: 720px) {
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
}

.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px 20px;
}

.trust-strip strong { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.trust-strip span { font-size: 14px; color: var(--white); font-weight: 600; }

/* Section headings */
.section-heading { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .preview-section h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 36px); }

/* Offer grid */
.offer-grid { display: grid; gap: 28px; }

@media (min-width: 860px) {
  .offer-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.main-offer { border-color: rgba(229, 52, 43, 0.35); }
.active-plan { border-color: rgba(217, 164, 65, 0.35); }

.card-kicker { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 10px; }

.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.price strong { font-family: var(--font-display); font-size: 48px; color: var(--white); }
.price small { color: var(--muted); font-size: 15px; }

.check-list { margin-bottom: 24px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { font-size: 15px; color: var(--white); padding-left: 26px; position: relative; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  font-weight: 800;
}

.small-print { font-size: 12px; color: var(--muted-2); margin: 16px 0 0; }

.popular-pill {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--gold);
  color: #171310;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
}

.plan-intro { font-size: 14px; }

.ideal-box {
  background: rgba(217, 164, 65, 0.08);
  border: 1px solid rgba(217, 164, 65, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  margin-bottom: 14px;
}
.ideal-box strong { display: block; color: var(--gold-light); margin-bottom: 4px; }
.ideal-box span { color: var(--muted); }

.addons-box {
  background: rgba(229, 52, 43, 0.07);
  border: 1px solid rgba(229, 52, 43, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
}
.addons-box strong { display: block; color: var(--gold-light); font-size: 13px; margin-bottom: 10px; }
.addons-list { display: flex; flex-direction: column; gap: 8px; }
.addons-list li {
  font-size: 13px;
  color: var(--white);
  padding-left: 26px;
  position: relative;
}
.addons-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}

/* Printing section */
.printing-section { padding-top: 0; padding-bottom: 64px; }

.printing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}
.printing-card .eyebrow { text-align: center; }
.printing-card h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); }
.printing-card > p { max-width: 52ch; margin-left: auto; margin-right: auto; }

.printing-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 24px 0 28px;
}
.printing-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  padding-left: 22px;
  position: relative;
}
.printing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

/* Preview section */
.preview-section {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 860px) {
  .preview-section { grid-template-columns: 1.1fr 0.9fr; }
}

.clarity-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.clarity-card strong { display: block; color: var(--gold); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.clarity-card p { margin: 0; font-size: 14px; }

/* Form section */
.form-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 96px;
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .form-section { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}

.form-copy h2 { color: var(--white); font-size: clamp(26px, 3.2vw, 34px); }

.contact-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-card span { font-size: 13px; color: var(--muted); }
.contact-card a { color: var(--gold-light); font-weight: 700; font-size: 15px; }

/* Form CTA card */
.form-cta-card { display: flex; flex-direction: column; }
.form-cta-card h3 { color: var(--white); font-size: 22px; margin-bottom: 16px; }
.form-cta-card .check-list { margin-bottom: 28px; }
.form-cta-card .small-print { margin-top: 14px; text-align: center; }

/* Footer */
footer {
  border-top: 1px solid rgba(217, 164, 65, 0.14);
  padding: 48px 24px 120px;
  text-align: center;
}

.footer-brand { display: inline-flex; font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 10px; }

footer p { font-size: 13px; margin-bottom: 16px; }

.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 24px; font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--gold-light); }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: #08210f;
  font-weight: 800;
  font-size: 13px;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 50;
}
.floating-whatsapp:hover { transform: translateY(-2px); }
