/* ============================================================
   TRUMP GOLDEN EAGLE — style2.css
   Design Version 2 — Premium / Refined
   Font: Jost (same as V1)
   ============================================================ */

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

:root {
  --black:       #0d0d0d;
  --dark:        #1c1c1c;
  --gold:        #B8860B;
  --gold-light:  #D4A017;
  --gold-pale:   #f5e6b8;
  --gold-grad:   linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
  --white:       #ffffff;
  --off-white:   #faf8f4;
  --cream:       #f2ede2;
  --text:        #1a1a1a;
  --muted:       #555555;
  --border:      #e0d5c0;
  --radius-pill: 50px;
  --radius-card: 12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover:0 10px 40px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

/* ============================================================
   NAVBAR — Slim with bottom gold border
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  padding: 0 24px;
  height: 72px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: 'Jost', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--gold-light); }

/* PILL button */
.btn-nav-order {
  background: var(--gold-grad) !important;
  color: var(--black) !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.8px;
  padding: 10px 26px !important;
  border-radius: var(--radius-pill) !important;
  transition: opacity 0.2s, transform 0.15s !important;
  text-transform: uppercase;
}

.btn-nav-order:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold-light);
  display: block;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black);
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  padding: 24px 32px;
  gap: 18px;
  z-index: 999;
  border-top: 1px solid #222;
  border-bottom: 2px solid var(--gold);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.mobile-menu .btn-mob-order {
  background: var(--gold-grad);
  color: var(--black);
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  margin-top: 6px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ============================================================
   GLOBAL BUTTONS — Pill shaped
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold-grad);
  color: var(--black);
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(184,134,11,0.35);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,134,11,0.45);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--black);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gold);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION TITLE — Left border accent style (V2 difference)
   ============================================================ */
.sec-title-band {
  padding: 56px 48px 12px;
  text-align: center;
  position: relative;
}

.sec-title-band h2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}

/* Gold underline bar instead of black background */
.sec-title-band h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--gold-grad);
  border-radius: 2px;
}

/* Dark variant for sections needing contrast */
.sec-title-band.dark {
  background: var(--black);
  padding: 48px 48px 12px;
}

.sec-title-band.dark h2 {
  color: var(--white);
}

/* ============================================================
   HERO — Text LEFT, Image RIGHT (flipped vs V1)
   ============================================================ */
.hero {
  background: var(--off-white);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

/* TEXT first (left), IMAGE second (right) — opposite of V1 */
.hero-content { order: 1; }
.hero-img-wrap { order: 2; }

.hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap a img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.2));
  transition: transform 0.4s ease;
}

.hero-img-wrap a:hover img { transform: scale(1.04) rotate(-1deg); }

.hero-content h1 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 26px;
  letter-spacing: 0.3px;
}

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

.hero-content p {
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-highlight {
  display: block;
  font-weight: 700;
  color: var(--black);
  font-size: 1.1rem;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 12px 18px;
  border-radius: 0 6px 6px 0;
  margin-top: 8px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ============================================================
   REVIEWS — Horizontal card layout (V2 difference)
   ============================================================ */
.reviews-section {
  background: var(--cream);
  padding: 70px 48px;
}

.reviews-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Horizontal card */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.review-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 100px;
}

.reviewer-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.review-stars {
  height: 20px;
  display: block;
}

.reviewer-name {
  font-weight: 700;
  color: var(--black);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.4;
}

.review-right { flex: 1; }

.review-badge {
  font-size: 0.92rem;
  font-weight: 700;
  color: #2a7a2a;
  margin-bottom: 10px;
  display: block;
}

.review-text {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   WHAT IS
   ============================================================ */
.what-is-section {
  background: var(--white);
  padding: 70px 48px;
}

.what-is-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 64px;
}

/* Image on RIGHT for what-is section (opposite of V1 where image was left) */
.what-is-inner .what-is-text { order: 1; }
.what-is-inner .what-is-img  { order: 2; }

.what-is-inner img {
  max-width: 100%;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.14));
}

.what-is-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-section {
  background: var(--cream);
  padding: 70px 48px;
}

.section-prose {
  max-width: 900px;
  margin: 0 auto;
}

.section-prose p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ============================================================
   PRICING BAND — gradient accent (V2)
   ============================================================ */
.pricing-band {
  background: var(--black);
  padding: 48px 40px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-grad);
}

.pricing-band h3 {
  font-family: 'Jost', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-band h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0;
}

/* ============================================================
   PRICING IMAGE
   ============================================================ */
.price-img-section {
  background: var(--off-white);
  padding: 48px;
  text-align: center;
}

.price-img-section a img {
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.price-img-section a:hover img { transform: scale(1.01); }

/* ============================================================
   FEATURES — 2-column grid (V2 difference)
   ============================================================ */
.features-section {
  background: var(--white);
  padding: 70px 48px;
}

.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.feature-num {
  min-width: 38px;
  height: 38px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-card strong {
  color: var(--black);
  font-weight: 800;
  font-size: 1.06rem;
  display: block;
  margin-bottom: 5px;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section {
  background: var(--cream);
  padding: 70px 48px;
}

.guarantee-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 64px;
}

/* Text LEFT, image RIGHT (opposite of V1) */
.guarantee-text { order: 1; }
.guarantee-img  { order: 2; }

.guarantee-inner img { max-width: 100%; }

.guarantee-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

/* ============================================================
   BENEFITS — Numbered cards (V2 difference)
   ============================================================ */
.benefits-section {
  background: var(--white);
  padding: 70px 48px;
}

.benefits-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 24px 22px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.benefit-num {
  font-family: 'Jost', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.benefit-card strong {
  color: var(--black);
  font-weight: 800;
  font-size: 1.06rem;
  display: block;
  margin-bottom: 6px;
}

/* ============================================================
   FAQs
   ============================================================ */
.faq-section {
  background: var(--cream);
  padding: 70px 48px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
  line-height: 1.4;
}

.faq-question:hover { background: var(--off-white); }

.faq-arrow {
  min-width: 28px;
  height: 28px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 900;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 26px 22px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow  { transform: rotate(180deg); }

/* ============================================================
   HOW TO ORDER
   ============================================================ */
.order-how-section {
  background: var(--white);
  padding: 70px 48px;
}

.order-how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.order-how-inner p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

.order-img-wrap {
  text-align: center;
  margin-top: 36px;
}

.order-img-wrap a img {
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.order-img-wrap a:hover img { transform: scale(1.01); }

/* ============================================================
   PRICING DETAILS
   ============================================================ */
.pricing-details {
  background: var(--cream);
  padding: 48px;
}

.pricing-details-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  border-top: 3px solid var(--gold);
}

.info-block h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.info-block p, .info-block li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.info-block ul { list-style: none; padding: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before { content: "✦ "; color: var(--gold); font-weight: 900; font-size: 0.75rem; }

/* ============================================================
   FINAL CTA — White bg with gold border (V2)
   ============================================================ */
.cta-final {
  background: var(--white);
  padding: 80px 48px;
  text-align: center;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.cta-final h2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 36px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-product-img {
  max-width: 360px;
  margin: 0 auto 32px;
}

.cta-product-img a img {
  width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.18));
  transition: transform 0.4s;
}

.cta-product-img a:hover img { transform: scale(1.05); }

.cta-regular-price {
  font-size: 1.15rem;
  color: var(--muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 6px;
}

.cta-current-price {
  font-family: 'Jost', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  padding: 48px 48px 30px;
  border-top: 3px solid var(--gold);
}

.footer-cols {
  max-width: 1160px;
  margin: 0 auto 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 0;
}

.footer-cols a {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  transition: color 0.2s;
  padding: 5px 18px;
  border-right: 1px solid #333;
  text-align: center;
  white-space: nowrap;
}

.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--white); }

.footer-legal {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
}

.footer-legal p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.75;
  margin-bottom: 12px;
}

.footer-policy {
  text-align: center;
  margin-bottom: 18px;
}

.footer-policy a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 10px;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

.footer-policy a:hover { color: var(--white); }

.footer-copy {
  text-align: center;
  font-size: 0.88rem;
  color: #555;
  font-family: 'Jost', sans-serif;
}

.footer-copy a { color: #777; text-decoration: none; }
.footer-copy a:hover { color: var(--white); }

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content h1    { font-size: 2.4rem; }
  .what-is-inner      { grid-template-columns: 1fr 340px; }
}

@media (max-width: 900px) {
  .hero-inner         { grid-template-columns: 1fr; gap: 40px; }
  .hero-content       { order: 1; }
  .hero-img-wrap      { order: 2; }
  .features-grid,
  .benefits-grid      { grid-template-columns: 1fr; }
  .reviews-grid       { gap: 20px; }
  .review-card        { flex-direction: column; align-items: center; text-align: center; }
  .review-right       { text-align: left; }
  .what-is-inner      { grid-template-columns: 1fr; }
  .what-is-text       { order: 1; }
  .what-is-img        { order: 2; }
  .guarantee-inner    { grid-template-columns: 1fr; text-align: center; }
  .guarantee-text     { order: 1; }
  .guarantee-img      { order: 2; }
}

@media (max-width: 640px) {
  nav                 { padding: 0 18px; }
  .nav-links          { display: none; }
  .hamburger          { display: flex; }
  .hero               { padding: 44px 22px; }
  .hero-content h1    { font-size: 1.95rem; }
  .sec-title-band     { padding: 44px 22px 12px; }
  .sec-title-band h2  { font-size: 1.7rem; }
  .sec-title-band.dark{ padding: 44px 22px 12px; }
  .reviews-section,
  .what-is-section,
  .why-section,
  .features-section,
  .guarantee-section,
  .benefits-section,
  .faq-section,
  .order-how-section  { padding: 44px 22px; }
  .pricing-details,
  .price-img-section  { padding: 32px 22px; }
  .cta-final          { padding: 60px 22px; }
  .cta-final h2       { font-size: 1.85rem; }
  .cta-current-price  { font-size: 2.4rem; }
  footer              { padding: 36px 22px 24px; }
  .footer-cols a      { border-right: none; padding: 4px 12px; }
}