* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #f5f5f5; }

/* ── HEADER ── */
.header {
  background: #ffffff;
  border-bottom: 3px solid #f5a623;
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center;
}
.header-logo { display: inline-flex; align-items: center; justify-content: center; }
.header img { height: 72px; }
.header-call a {
  display: flex; align-items: center; gap: 8px;
  background: #f5a623; color: #1a1a1a; text-decoration: none;
  padding: 0.6rem 1.2rem; border-radius: 8px; font-weight: 700; font-size: 16px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a2e5a 0%, #22407a 60%, #1a2e5a 100%);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px,
    transparent 1px, transparent 20px
  );
}
.hero-eyebrow {
  display: inline-block; background: #f5a623; color: #1a1a1a;
  font-size: 13px; font-weight: 700; padding: 5px 16px;
  border-radius: 20px; margin-bottom: 1.2rem; letter-spacing: 0.05em;
  text-transform: uppercase; position: relative;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900; color: #ffffff; line-height: 1.1;
  text-transform: uppercase; margin-bottom: 0.5rem;
  position: relative;
}
.hero h1 span { color: #f5a623; }
.hero h2 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: rgba(255,255,255,0.75); font-weight: 400;
  margin-bottom: 2rem; position: relative;
}

/* ── PRICE BADGES ── */
.price-row {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 2.5rem; position: relative;
}
.price-badge {
  background: rgba(255,255,255,0.08);
  border: 2px solid #f5a623;
  border-radius: 12px; padding: 1rem 1.5rem; text-align: center;
  min-width: 150px;
}
.price-badge .price { font-size: 2rem; font-weight: 900; color: #f5a623; }
.price-badge .price-label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 2px; }

/* ── MAIN CALL BUTTON ── */
.call-btn-wrap { position: relative; margin-bottom: 1rem; }
.call-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: #f5a623; color: #1a1a1a; text-decoration: none;
  border-radius: 14px; padding: 1.2rem 2rem;
  font-size: clamp(16px, 3.5vw, 22px); font-weight: 900;
  width: 100%; max-width: 480px;
  text-transform: uppercase; letter-spacing: 0.03em;
  white-space: nowrap;
}
.call-btn:hover { background: #ffbb44; }
.call-subtext {
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-top: 0.5rem; position: relative;
}

/* ── TRUST BADGES ── */
.trust-row {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-top: 1.5rem; position: relative;
}
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.7); }
.check {
  width: 18px; height: 18px; background: #f5a623; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── WHY SECTION ── */
.why-section { background: #ffffff; padding: 3rem 1.5rem; text-align: center; }
.why-section h2 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; color: #1a2e5a; text-transform: uppercase; margin-bottom: 0.5rem; }
.why-section p { font-size: 15px; color: #555; max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.6; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.why-card { background: #f5f8ff; border: 1px solid #dde4f5; border-radius: 14px; padding: 1.5rem 1rem; text-align: center; }
.why-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.why-card h3 { font-size: 15px; font-weight: 700; color: #1a2e5a; margin-bottom: 0.4rem; }
.why-card p { font-size: 13px; color: #666; line-height: 1.5; }

/* ── SAVINGS SECTION ── */
.savings-section {
  background: linear-gradient(135deg, #1a2e5a, #22407a);
  padding: 3rem 1.5rem; text-align: center;
}
.savings-section h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 900; color: #ffffff; text-transform: uppercase; margin-bottom: 0.5rem; }
.savings-section p { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; line-height: 1.6; }
.savings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; max-width: 800px; margin: 0 auto 2.5rem; }
.savings-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(245,166,35,0.4); border-radius: 12px; padding: 1.25rem 1rem; }
.savings-card .s-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.savings-card h3 { font-size: 14px; font-weight: 700; color: #f5a623; margin-bottom: 0.3rem; }
.savings-card p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ── BOTTOM CTA ── */
.cta-section { background: #f5f5f5; padding: 3rem 1.5rem; text-align: center; }
.cta-section h2 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; color: #1a2e5a; text-transform: uppercase; margin-bottom: 0.5rem; }
.cta-section p { font-size: 15px; color: #555; margin-bottom: 1.5rem; }
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #1a2e5a; color: #ffffff; text-decoration: none;
  border-radius: 12px; padding: 1rem 2rem;
  font-size: clamp(16px, 3.5vw, 20px); font-weight: 700;
  max-width: 420px; width: 100%;
}
.cta-btn:hover { background: #22407a; }

/* ── GALLERY ── */
.gallery-section { background: #ffffff; padding: 3rem 1.5rem; text-align: center; }
.gallery-section h2 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; color: #1a2e5a; text-transform: uppercase; margin-bottom: 0.5rem; }
.gallery-section p { font-size: 15px; color: #555; max-width: 600px; margin: 0 auto 2rem; line-height: 1.6; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; max-width: 900px; margin: 0 auto; }
.gallery-item { height: 260px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(26,46,90,0.85); color: white; font-size: 14px; font-weight: 700; padding: 10px; text-align: center; opacity: 0.85; }

/* ── TCPA / FOOTER ── */
.tcpa-section { background: #1a2e5a; padding: 2rem 1.5rem; }
.tcpa-text {
  font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.7;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.tcpa-text a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer {
  background: #111d38; padding: 1.25rem 1.5rem; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer a { color: rgba(255,255,255,0.45); text-decoration: none; margin: 0 8px; }
.footer a:hover { color: #f5a623; }
