:root {
  --navy: #0F2744;
  --navy-mid: #162E58;
  --navy-light: #EEF2FF;
  --royal: #1E4DB7;
  --white: #FFFFFF;
  --bg: #ecedee;
  --heading: #111827;
  --body: #4B5563;
  --muted: #9CA3AF;
  --border-blue: #C7D2FE;
  --olive: #4B5320;
  --gold: rgb(234 177 0);
  --gold-light: #E8C96C;
  --dark: #0D0F0A;
  --dark-2: #4a5236;
  --dark-3: #363d26;
  --dark-4: #1b1f12;
  --text-muted: #8A9070;
  --text-secondary: #B8C4A0;
  --border: rgba(75, 83, 32, 0.3);
  --dark-blue: rgb(13 43 77);
  --bg-light: #c4d0a7;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
  background: var(--dark);
  color: #E8EED8;
}
body {
  overflow-x: hidden;
}



/* ── FREE WARNING SECTION ────────────────────────── */
.free-warning {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.free-warning::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.free-warning::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.fw-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fw-left .section-label { margin-bottom: 10px; }
.fw-left h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  letter-spacing: 1.5px;
  line-height: 1.05;
  margin-bottom: 6px;
}
.fw-left h2 em { color: var(--gold); font-style: normal; }
.fw-subline {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.4;
}
.fw-body {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}
.fw-body strong { color: var(--white); }

.fw-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fw-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s, background 0.2s;
}
.fw-card:hover { background: rgba(201,162,39,0.06); border-color: rgba(201,162,39,0.4); }
.fw-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,162,39,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 18px;
}
.fw-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}
.fw-card-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes borderGlow {
  0%,
  100% {
    border-color: rgba(201, 168, 76, 0.2);
  }
  50% {
    border-color: rgba(201, 168, 76, 0.6);
  }
}
.animate-fade-up {
  animation: fadeUp 0.7s ease both;
}
.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.gradient-text {
  background: linear-gradient(135deg, #E8C96C 0%, #C9A84C 40%, #A0834A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-white {
  background: linear-gradient(135deg, #fff 0%, #E8EED8 60%, #B8C4A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shimmer-text {
 background: linear-gradient(90deg, rgb(234 179 8) 0%, rgb(238, 186, 29) 40%, #fff 50%, #E8C96C 60%, #C9A84C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #E8C96C);
  color: #0D0F0A;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover::after {
  transform: translateX(100%);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 6px;
  transition: all 0.3s;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}
.hero-bg {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(75, 83, 32, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    var(--dark);
}
.hero-grid {
  background-image: linear-gradient(rgba(75, 83, 32, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 83, 32, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ticker-wrap {
  overflow: hidden;
  background: var(--dark-blue);
  padding: 10px 0;
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
}
.ticker:hover {
  animation-play-state: paused;
}
.ticker-item {
  color: white;
  text-transform: uppercase !important;
}
.counter-num {
  font-weight: 700;
}
.iconbox {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--navy-light);
  border: 1.5px solid var(--border-blue);
  flex-shrink: 0;
}
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
}
.card:hover {
  border-color: rgba(30, 77, 183, 0.3);
  box-shadow: 0 8px 30px rgba(15, 39, 68, 0.09);
  transform: translateY(-3px);
}
.pbar {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 8px;
}
.pfill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--royal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}
.pfill.go {
  transform: scaleX(1);
}
.ctabar {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 50%, var(--dark-2) 100%);
}
.form-input {
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: #E8EED8;
  border-radius: 6px;
  transition: all 0.3s;
  width: 100%;
  padding: 12px 16px;
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-input::placeholder {
  color: var(--text-muted);
}
.form-label {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  animation: float 3s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
}
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  backdrop-filter: blur(20px);
}
.officer-card {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.officer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive), var(--gold), var(--olive));
}
.urgency-bar {
  background: linear-gradient(135deg, #8B1A1A, #C0392B);
  border-bottom: 1px solid rgba(255, 100, 100, 0.3);
}
@media (max-width: 640px) {
  .hero-headline {
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
  }
}