/* BundleDeals-inspired light theme — shared base */
:root {
  --primary: #0891b2;
  --primary-hover: #0e7490;
  --primary-light: #cffafe;
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.1);
  --header-h: 72px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-desktop a {
  color: #374151;
  transition: color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.btn-call:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-lg);
}

.btn-call:active {
  transform: scale(0.97);
}

.btn-call svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn-call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-call-text .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  font-weight: 500;
}

.btn-call-text .number {
  font-size: 0.85rem;
  font-weight: 700;
}

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text);
}

.menu-toggle svg {
  width: 1.6rem;
  height: 1.6rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.5rem 1rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

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

.nav-mobile a {
  padding: 0.75rem 0;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .btn-call-text .number {
    display: block;
  }
}

@media (max-width: 767px) {
  .btn-call-text .number {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 12s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0 0 0 / 0.72), rgb(0 0 0 / 0.5), rgb(0 0 0 / 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 48rem;
}

.badge-offer {
  display: inline-block;
  background: rgb(37 99 235 / 0.92);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-lg);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgb(0 0 0 / 0.4);
}

.hero h1 .accent {
  color: #60a5fa;
}

.hero-sub {
  color: #e5e7eb;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgb(255 255 255 / 0.12);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
}

.pill svg {
  width: 1rem;
  height: 1rem;
  color: #4ade80;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
}

/* Compact premium CTAs — used in heroes sitewide */
.hero-actions .btn-primary,
.hero-actions .btn-outline,
.btn-primary.btn-compact,
.btn-outline.btn-compact {
  padding: 0.5rem 1.2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 9999px;
  box-shadow: 0 2px 12px rgb(0 0 0 / 0.12);
}

.hero-actions .btn-primary svg,
.btn-primary.btn-compact svg {
  width: 0.9rem;
  height: 0.9rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid rgb(255 255 255 / 0.85);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 9999px;
  border: 1.5px solid var(--border);
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), color var(--transition);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
  color: #d1d5db;
  font-size: 0.75rem;
}

.trust-line svg {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-label {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
}

.section-header p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Cards grid */
.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.deal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.deal-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.deal-card .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.deal-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.deal-card .highlight {
  color: #16a34a;
}

.deal-card .phone-hint {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.75rem;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.plan-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light), var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-speed {
  display: inline-block;
  font-size: 0.7rem;
  background: var(--primary-light);
  color: var(--primary-hover);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.plan-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.plan-card .plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
}

.plan-note {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.plan-features {
  flex: 1;
  margin-bottom: 1.25rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.plan-features li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
}

.btn-card {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background var(--transition);
}

.btn-card:hover {
  background: var(--primary-hover);
}

/* Features strip */
.features-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .features-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  text-align: center;
  padding: 1rem;
}

.feature-item .icon {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.feature-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

/* CTA band */
.cta-band {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* Info section */
.info-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .info-split {
    grid-template-columns: 1fr 1fr;
  }
}

.info-split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✔";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}

.page-hero p {
  opacity: 0.9;
  margin-top: 0.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Content pages */
.content-page {
  padding: 3rem 0 4rem;
}

.content-page .prose {
  max-width: 48rem;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.prose p,
.prose li {
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
}

/* Contact form */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-item .ci-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-submit:hover {
  background: var(--primary-hover);
}

.form-success {
  display: none;
  padding: 1rem;
  background: #dcfce7;
  color: #166534;
  border-radius: 0.5rem;
  margin-top: 1rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* About stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-box .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-box .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 22rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content.animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 2rem;
}
