/* ============================================================
   oferte.css — RoIntelliA · Pagina de Oferte & Reduceri
   Brand: Navy #0B2545 · Orange #F4A261 · Green #2A9D8F · Gold #D4AF37
   Fonts: Syne (titluri) + DM Sans (corp)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── VARIABILE ── */
:root {
  --navy:        #0B2545;
  --navy-mid:    #163A6B;
  --navy-light:  #1E4D8C;
  --card-bg:     #112240;
  --card-bg2:    #0D1B36;
  --orange:      #F4A261;
  --orange-dark: #E07B2A;
  --green:       #2A9D8F;
  --gold:        #D4AF37;
  --gold-light:  #F0D87A;
  --red:         #E05252;
  --off-white:   #F8F6F0;
  --text-light:  #C8D6E5;
  --text-muted:  #7A8FAA;
  --border:      rgba(255, 255, 255, 0.07);
  --border-gold: rgba(212, 175, 55, 0.22);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ============================================================
   HEADER
   ============================================================ */
/* ═══ HEADER ═══ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,51,102,0.10);
  box-shadow: 0 2px 16px rgba(0,51,102,0.08);
  transition: box-shadow 0.3s;
}
.header-content {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 70px;
}

/* Logo */
.logo-container { display: flex; align-items: center; }
.logo { height: 44px; width: auto; display: block; }

/* Nav desktop */
.desktop-nav ul {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.desktop-nav ul li a {
  font-size: 0.88rem; font-weight: 500;
  color: #334155; text-decoration: none;
  padding: 6px 10px; border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.desktop-nav ul li a:hover { background: rgba(0,51,102,0.07); color: #003366; }
.desktop-nav ul li a.active { color: #F4A261; font-weight: 600; }

/* CTA nav */
.nav-cta {
  background: #003366; color: #fff !important;
  padding: 9px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #F4A261; transform: translateY(-1px); }

/* ── Burger button ── */
.menu-btn {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; border-radius: 8px;
  transition: background 0.2s;
}
.menu-btn:hover { background: rgba(0,51,102,0.07); }
.menu-btn span {
  display: block; width: 22px; height: 2px;
  background: #003366; border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Overlay ── */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 0.3s;
}
.mobile-overlay.open { display: block; opacity: 1; }

/* ── Meniu mobil — slide din dreapta ── */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 85vw); height: 100vh;
  z-index: 999;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0,51,102,0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-nav.open { right: 0; }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,51,102,0.08);
  flex-shrink: 0;
}
.mobile-nav-logo { height: 36px; width: auto; }
.close-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: #64748b;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; transition: all 0.2s;
  line-height: 1;
}
.close-btn:hover { background: rgba(0,51,102,0.07); color: #003366; }

.mobile-nav ul {
  list-style: none; padding: 12px 0; margin: 0; flex: 1;
}
.mobile-nav ul li a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  font-size: 0.95rem; font-weight: 500;
  color: #334155; text-decoration: none;
  transition: all 0.2s; border-left: 3px solid transparent;
}
.mobile-nav ul li a:hover {
  background: rgba(0,51,102,0.05);
  color: #003366;
  border-left-color: #F4A261;
  padding-left: 28px;
}
.mobile-nav ul li a.active {
  color: #F4A261; font-weight: 600;
  border-left-color: #F4A261;
}

.mobile-nav-cta {
  padding: 16px 20px;
  border-top: 1px solid rgba(0,51,102,0.08);
  flex-shrink: 0;
}
.mobile-nav-cta a {
  display: block; text-align: center;
  background: #003366; color: #fff;
  padding: 13px; border-radius: 10px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-nav-cta a:hover { background: #F4A261; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .desktop-nav ul { gap: 0; }
  .desktop-nav ul li a { font-size: 0.82rem; padding: 6px 8px; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .nav-cta { display: none; }
  .menu-btn { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 40px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 82, 82, 0.1);
  border: 1px solid rgba(224, 82, 82, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E88080;
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: #E05252;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

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

.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

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

/* ── BUTOANE GENERALE ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
  display: block;
}

/* ============================================================
   SECTION HEADER + INTRO
   ============================================================ */
.sec-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  margin-bottom: 28px;
}

.sec-header span {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.sec-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.sec-intro {
  padding: 0 40px;
  margin-bottom: 28px;
}

.sec-intro p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ============================================================
   OFERTE CLIENT NOU
   ============================================================ */
.new-client-section {
  padding: 56px 0 16px;
}

.new-client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 0 40px 48px;
}

/* Card */
.nc-card {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.nc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.nc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 175, 55, 0.45);
}

.nc-card:hover::after {
  opacity: 1;
}

/* Badges */
.badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.badge-new  { background: rgba(42, 157, 143, 0.15); color: #4BC8BC; border: 1px solid rgba(42, 157, 143, 0.3); }
.badge-pct  { background: rgba(224, 82, 82, 0.15);  color: #F08080; border: 1px solid rgba(224, 82, 82, 0.3); }
.badge-perm { background: rgba(212, 175, 55, 0.10); color: var(--gold); border: 1px solid rgba(212, 175, 55, 0.25); }

.nc-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.nc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

/* Prețuri */
.price-block {
  margin-bottom: 18px;
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 3px;
}

.price-new {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-big {
  font-family: 'Syne', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
}

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

.price-savings {
  display: inline-block;
  background: rgba(224, 82, 82, 0.12);
  color: #F08080;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 6px;
}

/* Features list */
.nc-features {
  list-style: none;
  margin-bottom: 22px;
}

.nc-features li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nc-features li:last-child {
  border-bottom: none;
}

.nc-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* CTA row pe card */
.nc-cta-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.cta-main {
  flex: 1;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 16px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-main:hover {
  background: var(--gold-light);
}

.cta-ghost {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 11px 14px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-light);
}

/* ============================================================
   OFERTE CU TERMEN (COUNTDOWN)
   ============================================================ */
.timed-section {
  padding: 8px 0 48px;
}

.timed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 0 40px;
}

.timed-card {
  background: linear-gradient(145deg, #162A4A 0%, var(--card-bg) 100%);
  border: 1px solid rgba(224, 82, 82, 0.2);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.timed-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(224, 82, 82, 0.4);
}

.timed-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.timed-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.timed-top h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.pct-bubble {
  background: rgba(224, 82, 82, 0.15);
  border: 1px solid rgba(224, 82, 82, 0.35);
  color: #F08080;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timed-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Countdown */
.countdown-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.countdown {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.cd-unit {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(224, 82, 82, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 54px;
}

.cd-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #F08080;
  display: block;
  line-height: 1;
}

.cd-sep {
  font-size: 1.2rem;
  color: var(--text-muted);
  align-self: center;
  margin-bottom: 14px;
}

.cd-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
  display: block;
}

/* Prețuri timed */
.timed-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.timed-price-orig {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.timed-price-new {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

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

.timed-cta-row {
  display: flex;
  gap: 10px;
}

/* ============================================================
   BUNDLE SECTION
   ============================================================ */
.bundle-section {
  padding: 8px 0 64px;
}

.bundle-card {
  margin: 0 40px;
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.08) 0%, var(--card-bg) 60%);
  border: 1px solid rgba(42, 157, 143, 0.25);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.bundle-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.bundle-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.bundle-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.bundle-includes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bundle-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bundle-tag::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

.bundle-right {
  text-align: center;
  min-width: 200px;
}

.bundle-orig {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.bundle-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.bundle-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.bundle-saving {
  background: rgba(42, 157, 143, 0.15);
  color: #4BC8BC;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.bundle-btn {
  display: block;
  width: 100%;
  background: var(--green);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  text-decoration: none;
}

.bundle-btn:hover {
  background: #239080;
  transform: translateY(-1px);
}

/* ============================================================
   DRAWER
   ============================================================ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 200;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(480px, 100vw);
  height: 100%;
  background: #0D1B36;
  border-left: 1px solid var(--border-gold);
  padding: 48px 36px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 201;
}

.drawer-panel.open {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.selected-offer-pill {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.drawer-panel h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.drawer-panel > p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

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

.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
}

.form-field textarea {
  min-height: 90px;
  resize: vertical;
}

.form-field select option {
  background: #0D1B36;
}

.drawer-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.drawer-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.drawer-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.page-footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

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

/* ============================================================
   RESPONSIVITATE
   ============================================================ */
@media (max-width: 900px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .bundle-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bundle-right {
    text-align: left;
  }
}

@media (max-width: 640px) {
  header {
    padding: 14px 20px;
  }
  header nav {
    display: none;
  }
  .hero {
    padding: 52px 20px 40px;
  }
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .sec-header,
  .sec-intro {
    padding: 0 20px;
  }
  .new-client-grid,
  .timed-grid {
    padding: 0 20px;
  }
  .bundle-card {
    margin: 0 20px;
    padding: 24px 20px;
  }
  .page-footer {
    padding: 22px 20px;
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
