/* ============================================================
   TRUMP GOLDEN EAGLE — style.css
   Font: Jost (Google Fonts) — matches original page
   ============================================================ */

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

:root {
  --black:        #111111;
  --dark:         #1a1a1a;
  --gold:         #C9A84C;
  --gold-btn:     #D4A017;
  --gold-hover:   #b8890f;
  --gold-light:   #f0c84e;
  --white:        #ffffff;
  --off-white:    #f6f4ef;
  --text:         #1e1e1e;
  --muted:        #4a4a4a;
  --border:       #ddd6c8;
  --radius:       5px;
}

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
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  padding: 0 24px;
  height: 76px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.55);
}

.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: 2rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.btn-nav-order {
  background: var(--gold-btn) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.6px;
  padding: 11px 26px !important;
  border-radius: var(--radius);
  transition: background 0.2s !important, color 0.2s !important;
}

.btn-nav-order:hover {
  background: var(--gold-hover) !important;
  color: var(--white) !important;
}

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

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

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

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

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

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

/* ============================================================
   BUTTONS (global)
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold-btn);
  color: var(--black);
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

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

.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: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

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

/* ============================================================
   SECTION TITLE BANDS (Black Background)
   ============================================================ */
.sec-title-band {
  background: var(--black);
  padding: 50px 40px 42px;
  text-align: center;
}

.sec-title-band h2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--white);
  padding: 80px 48px;
}

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

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

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

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

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

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

.hero-highlight {
  font-weight: 700;
  color: var(--black);
  font-size: 1.15rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: block;
  margin-top: 6px;
}

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

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.reviews-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 26px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.review-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.reviewer-photo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--gold-btn);
}

.review-stars {
  height: 24px;
  margin: 0 auto 14px;
  display: block;
}

.review-badge {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

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

.reviewer-name {
  margin-top: 18px;
  font-weight: 700;
  color: var(--black);
  font-size: 0.97rem;
}

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

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

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

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

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

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

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

/* ============================================================
   PRICING BAND
   ============================================================ */
.pricing-band {
  background: var(--black);
  padding: 48px 40px 16px;
  text-align: center;
}

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

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

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

.price-img-section a img {
  max-width: 900px;
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

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

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.features-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.features-list li {
  background: var(--white);
  border-left: 5px solid var(--gold-btn);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--muted);
}

.features-list li strong {
  color: var(--black);
  font-weight: 800;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

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

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

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

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

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section {
  background: var(--off-white);
  padding: 70px 48px;
}

.benefits-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.benefits-list li {
  display: flex;
  gap: 16px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  align-items: flex-start;
}

.benefit-icon {
  min-width: 36px;
  height: 36px;
  background: var(--gold-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 900;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.benefits-list li strong {
  color: var(--black);
  font-weight: 700;
}

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

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 26px;
  font-family: 'Jost', sans-serif;
  font-size: 1.12rem;
  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: #faf7f0; }

.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s;
  color: var(--gold-btn);
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 26px 22px;
  font-size: 1.08rem;
  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.12rem;
  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: 8px;
  transition: transform 0.3s;
}

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

/* ============================================================
   PRICING DETAILS
   ============================================================ */
.pricing-details {
  background: var(--off-white);
  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: 6px;
  padding: 24px 28px;
}

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

.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-btn);
  font-weight: 800;
}

/* ============================================================
   FINAL CTA  — WHITE background
   ============================================================ */
.cta-final {
  background: var(--white);
  padding: 80px 48px;
  text-align: center;
  border-top: 3px solid var(--gold-btn);
  border-bottom: 3px solid var(--gold-btn);
}

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

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

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

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

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

.cta-current-price {
  font-family: 'Jost', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--black);
  display: block;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* ============================================================
   FOOTER  — BLACK
   ============================================================ */
footer {
  background: var(--black);
  padding: 48px 48px 30px;
}

.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.97rem;
  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 #2e2e2e;
  padding-top: 24px;
}

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

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

.footer-policy a {
  color: #aaa;
  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: #666;
  font-family: 'Jost', sans-serif;
}

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

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  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; }
  .sec-title-band h2 { font-size: 2.1rem; }
  .what-is-inner     { grid-template-columns: 340px 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid      { grid-template-columns: 1fr 1fr; }
  .what-is-inner     { grid-template-columns: 1fr; }
  .guarantee-inner   { grid-template-columns: 1fr; text-align: center; }
  .footer-cols a     { border-right: none; padding: 4px 12px; }
}

@media (max-width: 640px) {
  nav                { padding: 0 16px; }
  .nav-links         { display: none; }
  .hamburger         { display: flex; }
  .hero              { padding: 44px 22px; }
  .hero-content h1   { font-size: 1.95rem; }
  .sec-title-band    { padding: 38px 22px 30px; }
  .sec-title-band h2 { font-size: 1.65rem; }
  .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.9rem; }
  .cta-current-price { font-size: 2.4rem; }
  footer             { padding: 36px 22px 24px; }
}