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

:root {
  --blue:      #1a56db;
  --blue-dark: #1245b8;
  --blue-light:#eff6ff;
  --duck:      #f59e0b;
  --duck-dark: #d97706;
  --text:      #111827;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --white:     #ffffff;
  --bg-alt:    #f8fafc;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

img { max-width: 100%; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; border-radius: 10px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-duck { font-size: 2rem; }
.logo-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav a:hover { color: var(--blue); }
.nav-cta { margin-left: 8px; color: var(--white) !important; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 10px 0;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1245b8 0%, #1a56db 50%, #2563eb 100%);
  color: var(--white);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 64px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.accent { color: var(--duck); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
}
.hero-wave { line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon { font-size: 2rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.95rem; }
.trust-item small { color: var(--muted); font-size: 0.8rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,86,219,0.12);
  border-color: var(--blue);
}
.service-icon { font-size: 2.8rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.9rem; }

/* ===== PRICING ===== */
.pricing-box {
  display: flex;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pricing-main {
  background: var(--blue);
  color: var(--white);
  padding: 48px 40px;
  text-align: center;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.price-tag {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--duck);
}
.price-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 8px 0 12px;
  opacity: 0.9;
}
.pricing-main p { font-size: 0.85rem; opacity: 0.8; }
.pricing-features {
  padding: 40px 40px;
  display: flex;
  align-items: center;
}
.pricing-features ul { list-style: none; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }

/* ===== DISCOUNTS ===== */
.discounts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}
.discount-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.discount-military {
  background: linear-gradient(135deg, #1e3a5f, #1a56db);
  color: var(--white);
}
.discount-return {
  background: linear-gradient(135deg, #92400e, #f59e0b);
  color: var(--white);
}
.discount-icon { font-size: 2.5rem; margin-bottom: 12px; }
.discount-pct {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.discount-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.discount-card p { font-size: 0.9rem; opacity: 0.88; }

/* ===== ABOUT ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 0.97rem; }
.about-text .btn { margin-top: 8px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  min-width: 120px;
  box-shadow: var(--shadow);
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
}
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-icon { font-size: 2.4rem; margin-bottom: 12px; }
.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.contact-link {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.contact-card p { color: var(--muted); font-size: 0.88rem; }

.hours-table { width: 100%; font-size: 0.88rem; text-align: left; margin-top: 4px; }
.hours-table td { padding: 4px 8px 4px 0; color: var(--muted); }
.hours-table td:first-child { font-weight: 600; color: var(--text); white-space: nowrap; }

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.footer .logo-name { color: var(--white); }
.footer .logo-sub { color: #64748b; }
.footer-info { text-align: center; }
.footer-info p { font-size: 0.88rem; margin-bottom: 6px; }
.footer-info a { color: #93c5fd; }
.footer-copy { text-align: right; font-size: 0.82rem; }
.footer-copy p { margin-bottom: 4px; }
.disclaimer { color: #475569; font-style: italic; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 680px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .discounts-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-box { flex-direction: column; }
  .trust-inner { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2rem; }
  .section { padding: 56px 0; }
}
