@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

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

:root {
  --navy: #0052a3;
  --navy-dark: #0d1f3c;
  --orange: #f47920;
  --orange-hover: #e06810;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-800: #991b1b;
  --green-100: #dcfce7;
  --green-600: #16a34a;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

.font-display { font-family: 'Montserrat', sans-serif; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.375rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.top-bar a { color: var(--white); transition: opacity 0.2s; }
.top-bar a:hover { opacity: 0.8; }
.top-bar svg { vertical-align: middle; margin-right: 0.25rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-box {
  width: 2.25rem; height: 2.25rem;
  background: var(--navy);
  border-radius: 0.25rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}
.logo-text { line-height: 1.2; }
.logo-text .name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gray-900); font-size: 1.125rem; }
.logo-text .sub { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--blue-50); }
.nav-cta {
  margin-left: 0.75rem;
  padding: 0.5rem 1.25rem !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 0.375rem;
}
.nav-cta:hover { background: var(--orange-hover) !important; }

.mobile-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 0.5rem;
  color: var(--gray-600);
  font-size: 1.5rem;
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 0.75rem 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--navy); background: var(--blue-50); }
.mobile-nav .nav-cta {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  margin-left: 0 !important;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 4rem 0 6rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero p {
  color: #bfdbfe;
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto;
}

/* ===== HOME HERO ===== */
.home-hero {
  position: relative;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
  opacity: 0.1;
}
.home-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--navy-dark) 100%);
  opacity: 0.9;
}
.home-hero .container { position: relative; z-index: 1; padding-top: 6rem; padding-bottom: 6rem; }
.home-hero .hero-content { max-width: 40rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244,121,32,0.2);
  border: 1px solid rgba(244,121,32,0.4);
  color: #f5a050;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.home-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.home-hero h1 .accent { color: var(--orange); }
.home-hero .hero-sub {
  font-size: 1.125rem;
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-hover); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #003d7a; }
.btn-gray { background: var(--gray-100); color: var(--gray-800); }
.btn-gray:hover { background: var(--gray-200); }
.btn-outline-gray {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-300);
  font-weight: 600;
}
.btn-outline-gray:hover { border-color: var(--gray-400); }
.btn-sm { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 0;
}
.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  font-size: 0.875rem;
}
.info-bar-grid .title { font-weight: 700; font-size: 1rem; }
.info-bar-grid .sub { color: #bfdbfe; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-navy { background: var(--navy); color: var(--white); }
.section-dark { background: var(--navy-dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.section-navy .section-header h2 { color: var(--white); }
.section-header p {
  color: var(--gray-600);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto;
}
.section-navy .section-header p { color: #bfdbfe; }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-sidebar { display: grid; grid-template-columns: 2fr 3fr; gap: 3rem; }
.grid-2-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.card-center { text-align: center; }

.icon-circle {
  width: 3.5rem; height: 3.5rem;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--white);
}
.icon-circle svg { width: 26px; height: 26px; }

.step-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2rem; height: 2rem;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
}
.card-step { position: relative; }

.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--gray-900);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.card p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.7; }

/* ===== PLAN CARDS ===== */
.plan-card {
  background: var(--white);
  border-radius: 0.75rem;
  border: 2px solid var(--gray-200);
  padding: 2rem;
  transition: box-shadow 0.2s;
  position: relative;
}
.plan-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.plan-card.popular { border-color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.plan-badge {
  position: absolute;
  top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.plan-card .plan-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 0.5rem;
}
.plan-card .plan-desc { color: var(--gray-500); font-size: 0.875rem; text-align: center; margin-bottom: 1.5rem; }
.plan-card ul { margin-bottom: 1.5rem; }
.plan-card li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--gray-700);
  padding: 0.375rem 0;
}
.plan-card li .check {
  width: 1.25rem; height: 1.25rem;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.plan-card li .check svg { width: 11px; height: 11px; color: var(--navy); }

/* ===== FEATURES ===== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--blue-50);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--navy); }
.feature-item h3 { font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; font-size: 0.875rem; font-family: 'Inter', sans-serif; }
.feature-item p { color: var(--gray-500); font-size: 0.75rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
}
.stars { display: flex; gap: 0.125rem; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; fill: var(--orange); color: var(--orange); }
.testimonial-card blockquote {
  color: var(--gray-700);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.author-avatar {
  width: 2rem; height: 2rem;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); }
.author-loc { font-size: 0.75rem; color: var(--gray-500); }

/* ===== ROUNDED IMAGE ===== */
.rounded-img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 1rem;
}
.rounded-img-tall { height: 24rem; }

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; }
.cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p { color: #bfdbfe; font-size: 1.125rem; margin-bottom: 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== LINK ARROW ===== */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
}
.link-arrow:hover { text-decoration: underline; }
.link-arrow svg { width: 16px; height: 16px; }

/* ===== ADDRESS BLOCK ===== */
.address-block { display: flex; flex-direction: column; gap: 0.75rem; color: var(--gray-700); }
.address-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.address-item svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; margin-top: 0.125rem; }
.address-item .label { font-weight: 600; }
.info-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--blue-50);
  border-radius: 0.5rem;
  border: 1px solid var(--blue-100);
}
.info-box p { font-size: 0.875rem; color: var(--navy); font-weight: 500; }

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.comparison-table .row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.comparison-table .row > div { padding: 1rem; font-size: 0.875rem; border-bottom: 1px solid var(--gray-100); }
.comparison-table .header-row > div:first-child { background: var(--gray-50); }
.comparison-table .header-row > div:nth-child(2) {
  background: var(--navy); color: var(--white); text-align: center; font-weight: 700;
  border-bottom-color: var(--navy);
}
.comparison-table .header-row > div:nth-child(3) {
  background: var(--gray-100); text-align: center; color: var(--gray-600); font-weight: 600;
}
.comparison-table .data-row > div:first-child { color: var(--gray-700); font-weight: 500; }
.comparison-table .data-row > div:nth-child(2) {
  text-align: center; color: var(--navy); font-weight: 600; background: rgba(239,246,255,0.4);
  border-bottom-color: rgba(191,219,254,0.4);
}
.comparison-table .data-row > div:nth-child(3) { text-align: center; color: var(--gray-500); }

/* ===== VALUE CARDS ===== */
.value-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
}
.value-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.value-card .icon-box {
  width: 2.75rem; height: 2.75rem;
  background: var(--blue-50);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.value-card .icon-box svg { width: 22px; height: 22px; color: var(--navy); }
.value-card h3 { font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; }
.value-card p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.7; }

/* ===== TEAM ===== */
.team-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--gray-100);
  text-align: center;
}
.team-avatar {
  width: 4rem; height: 4rem;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}
.team-avatar svg { width: 28px; height: 28px; }
.team-card h3 { font-weight: 600; color: var(--gray-900); font-size: 1.125rem; margin-bottom: 0.25rem; }
.team-card .role { color: var(--navy); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.75rem; }
.team-card p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.7; }

/* ===== CHECKLIST ===== */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.checklist li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: var(--gray-700);
}
.checklist li svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; margin-top: 0.125rem; }

/* ===== SHIPPING STEP CARDS ===== */
.shipping-step {
  background: var(--gray-50);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  text-align: center;
}
.shipping-step .icon-circle { width: 3rem; height: 3rem; margin-bottom: 1rem; }
.shipping-step .icon-circle svg { width: 22px; height: 22px; }
.shipping-step .step-label { font-size: 0.75rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; text-transform: uppercase; }
.shipping-step h3 { font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; font-size: 1rem; }
.shipping-step p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; }

/* ===== TIP CARDS ===== */
.tip-card {
  display: flex; gap: 1rem;
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--gray-100);
}
.tip-num {
  width: 2rem; height: 2rem;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tip-card h3 { font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; font-size: 0.875rem; }
.tip-card p { color: var(--gray-500); font-size: 0.75rem; line-height: 1.6; }

/* ===== ACCEPT / PROHIBITED ===== */
.accept-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.accept-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.category-box {
  background: var(--blue-50);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--blue-100);
}
.category-box h4 { font-weight: 600; color: var(--gray-900); margin-bottom: 0.75rem; font-size: 0.875rem; }
.category-box li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--gray-700);
  padding: 0.1875rem 0;
}
.category-box li svg { width: 12px; height: 12px; color: var(--navy); flex-shrink: 0; }

.prohibited-box {
  background: var(--red-50);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--red-100);
  height: 100%;
}
.prohibited-box .box-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.prohibited-box .header-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--red-500);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.prohibited-box .header-icon svg { width: 20px; height: 20px; }
.prohibited-box h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gray-900); font-size: 1.125rem; }
.prohibited-box li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--gray-700);
  padding: 0.25rem 0;
}
.prohibited-box li svg { width: 13px; height: 13px; color: var(--red-500); flex-shrink: 0; margin-top: 0.1875rem; }
.prohibited-warning {
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--red-100);
  border-radius: 0.5rem;
  display: flex; align-items: flex-start; gap: 0.5rem;
  color: var(--red-800);
  font-size: 0.75rem;
  font-weight: 500;
}
.prohibited-warning svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 0.125rem; }

/* ===== DELIVERY OPTION CARDS ===== */
.delivery-card {
  background: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}
.delivery-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.delivery-card .card-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.delivery-card .card-header svg { width: 18px; height: 18px; color: var(--navy); }
.delivery-card .card-header h3 { font-weight: 600; color: var(--gray-900); }
.delivery-time {
  display: inline-block;
  background: var(--blue-50);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.delivery-card p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.delivery-card .included { font-size: 0.75rem; color: var(--gray-400); }
.delivery-card .included span { color: var(--gray-600); font-weight: 500; }

/* ===== CLIMATE BOX ===== */
.climate-box {
  background: var(--blue-50);
  border-radius: 1rem;
  padding: 2rem 3rem;
  border: 1px solid var(--blue-100);
  max-width: 56rem;
  margin: 0 auto;
}
.climate-box .box-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.climate-box .icon-box {
  width: 2.5rem; height: 2.5rem;
  background: var(--navy);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.climate-box .icon-box svg { width: 20px; height: 20px; }
.climate-box h2 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gray-900); }
.climate-box > p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; }
.climate-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.climate-list div {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--gray-700);
}
.climate-list svg { width: 14px; height: 14px; color: var(--navy); flex-shrink: 0; }

/* ===== FAQ ACCORDION ===== */
.faq-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; }
.faq-filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: all 0.2s;
}
.faq-filter-btn:hover { background: var(--gray-200); }
.faq-filter-btn.active { background: var(--navy); color: var(--white); }

.faq-list { max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question .category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.faq-question h2 {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
.faq-question .chevron {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.2s;
}
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--gray-100);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.875rem;
  padding-top: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 3rem; }
.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--blue-50);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--navy); }
.contact-item .label { font-weight: 600; color: var(--gray-900); font-size: 0.875rem; margin-bottom: 0.25rem; }
.contact-item .value { color: var(--gray-600); font-size: 0.875rem; line-height: 1.5; }
.contact-item a { transition: color 0.2s; }
.contact-item a:hover { color: var(--navy); }
.hours-table { font-size: 0.875rem; color: var(--gray-600); }
.hours-row { display: flex; justify-content: space-between; gap: 2rem; padding: 0.125rem 0; }
.hours-row .time { font-weight: 500; }
.hours-note { border-top: 1px solid var(--gray-100); padding-top: 0.5rem; margin-top: 0.5rem; font-size: 0.75rem; color: var(--gray-500); }
.nationwide-box {
  padding: 1rem;
  background: var(--blue-50);
  border-radius: 0.75rem;
  border: 1px solid var(--blue-100);
  margin-top: 1rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.nationwide-box svg { width: 16px; height: 16px; color: var(--navy); flex-shrink: 0; margin-top: 0.125rem; }
.nationwide-box .title { font-size: 0.875rem; color: var(--navy); font-weight: 500; margin-bottom: 0.25rem; }
.nationwide-box .desc { font-size: 0.75rem; color: var(--gray-600); }

.contact-form {
  background: var(--gray-50);
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  padding: 2rem;
}
.contact-form h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group:last-of-type { margin-bottom: 1.5rem; }
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}
label .required { color: var(--red-500); }
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-300);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--gray-900);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,82,163,0.15);
}
input.error, textarea.error { border-color: var(--red-400); }
textarea { resize: none; }
.field-error { color: var(--red-500); font-size: 0.75rem; margin-top: 0.25rem; }

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.submit-btn:hover { background: #003d7a; }
.submit-btn:disabled { background: #6b9fd4; cursor: not-allowed; }
.submit-btn svg { width: 16px; height: 16px; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--gray-500); margin-top: 0.75rem; }
.form-note a { color: var(--navy); font-weight: 500; }

.success-message {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem;
}
.success-icon {
  width: 4rem; height: 4rem;
  background: var(--green-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.success-icon svg { width: 32px; height: 32px; color: var(--green-600); }
.success-message h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}
.success-message p { color: var(--gray-600); line-height: 1.7; max-width: 28rem; }
.success-message a { color: var(--navy); font-weight: 600; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: var(--gray-400);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand .logo-box { background: var(--navy); }
.footer-brand .name { color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.125rem; }
.site-footer p { font-size: 0.875rem; line-height: 1.6; color: var(--gray-400); }
.site-footer h3 {
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.footer-contact svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-hours li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.footer-hours svg { width: 14px; height: 14px; color: var(--orange); }
.footer-tip {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(0,82,163,0.2);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  color: var(--blue-300);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.footer-bottom-links { display: flex; gap: 1rem; }
.footer-bottom-links a { transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gray-300); }

/* ===== SVG INLINE ICON HELPER ===== */
.icon { display: inline-block; vertical-align: middle; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-2-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .accept-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .home-hero h1 { font-size: 2.25rem; }
  .home-hero .container { padding-top: 4rem; padding-bottom: 4rem; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero { padding: 3rem 0 4rem; }
  .section { padding: 3.5rem 0; }
  .section-header h2 { font-size: 1.75rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .info-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .accept-categories { grid-template-columns: 1fr; }
  .comparison-table .row { font-size: 0.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .climate-box { padding: 1.5rem; }
  .climate-list { grid-template-columns: 1fr; }
  .grid-2-sidebar { grid-template-columns: 1fr; }
}
