/* ============================================================
   Apartment Air Conditioning — v2 Premium Design System
   ============================================================ */

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

/* ── Variables ── */
:root {
  --dark: #060B18;
  --dark-2: #0D1B3E;
  --dark-3: #0F2557;
  --navy: #0A2E52;
  --blue: #2563EB;
  --blue-bright: #4F8EF7;
  --cyan: #00C2FF;
  --white: #FFFFFF;
  --off-white: #F4F7FF;
  --gray-100: #EEF2FF;
  --gray-200: #DDE3F0;
  --text: #1A1F36;
  --text-muted: #64748B;
  --gold: #C9A84C;
  --gold-light: #E2C06A;
  --gold-dark: #A8882E;
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E2C06A 100%);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(10,46,82,0.10);
  --shadow-lg: 0 16px 48px rgba(10,46,82,0.16);
  --glow: 0 0 40px rgba(79,142,247,0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  --gradient-dark: linear-gradient(135deg, #060B18 0%, #0D1B3E 60%, #0A2E52 100%);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-dark { background: var(--dark); }
.bg-dark-2 { background: var(--dark-2); }
.bg-off-white { background: var(--off-white); }
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Typography ── */
.display-1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
.display-2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.display-3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.label-dark { color: rgba(255,255,255,0.5); }
.lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.7; }
.lead-white { color: rgba(255,255,255,0.75); }

/* ── Announce Bar ── */
.announce {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2d5a 100%);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  color: #fff;
  text-align: center;
  padding: 11px 48px;
  font-size: 0.82rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.01em;
}
.announce-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.2); border: none; color: #fff;
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: var(--transition);
}
.announce-close:hover { background: rgba(255,255,255,0.35); }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  position: -webkit-sticky;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1rem; color: var(--dark);
  white-space: nowrap; margin-right: auto;
}
.nav-logo svg { width: 34px; height: 34px; }
.nav-links { display: flex; gap: 6px; align-items: center; flex: 1; justify-content: center; }
.nav-phone { display: flex; flex-direction: column; align-items: center; margin-left: 8px; gap: 2px; }
.nav-phone-btn {
  background: #3BBDE4; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 9px 20px; border-radius: 100px; text-decoration: none;
  letter-spacing: 0.01em; transition: var(--transition); white-space: nowrap;
}
.nav-phone-btn:hover { background: #2aadd4; transform: translateY(-1px); }
.nav-phone-hours { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.01em; }
.nav-links a {
  font-size: 0.88rem; color: var(--text-muted); font-weight: 500;
  padding: 6px 9px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--gray-100); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 1.75rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  border: none; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--dark); font-weight: 700; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ── Hamburger ── */
/* ── Mobile nav icons (phone + burger) ── */
.mobile-nav-icons { display: none; align-items: center; gap: 8px; }
.nav-phone-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; text-decoration: none;
  transition: var(--transition); flex-shrink: 0;
}
.nav-phone-icon:hover { background: #1d4ed8; transform: scale(1.05); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: var(--gray-100); border: none; padding: 0;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  align-items: center; justify-content: center;
  transition: var(--transition);
}
.hamburger:hover { background: var(--gray-200); }
.hamburger.open { background: var(--dark); }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav dropdown ── */
.nav-dropdown-wrap { position: relative; display: flex; align-items: center; }
.nav-dropdown-wrap > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-wrap > a::after { content: ''; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4.5px solid currentColor; opacity: 0.45; transition: transform 0.2s; margin-left: 2px; }
.nav-dropdown-wrap:hover > a::after { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px); background: #fff; border: 1.5px solid #e8ecf0; border-radius: 12px; box-shadow: 0 12px 40px rgba(6,11,24,0.13); min-width: 220px; padding: 8px; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s, transform 0.2s; z-index: 200; }
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: flex; flex-direction: column; padding: 10px 14px; border-radius: 8px; color: var(--text) !important; background: none !important; transition: background 0.15s; font-size: 0.85rem !important; }
.nav-dropdown a:hover { background: #f5f7fa !important; color: #2563EB !important; }
.nav-dropdown a strong { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; color: #060B18; display: block; }
.nav-dropdown a span { font-size: 0.78rem; color: #888; font-weight: 400; }
.nav-dropdown a:hover strong { color: #2563EB; }
.nav-dd-divider { height: 1px; background: #f0f0f0; margin: 4px 0; }
.mobile-menu .nav-dropdown { display: none !important; }
.mobile-menu .nav-dropdown-wrap > a::after { display: none !important; }
.mobile-menu .nav-dropdown-wrap { display: contents; }
.mobile-sub-link { padding-left: 28px !important; font-size: 0.92rem !important; color: var(--dark) !important; }

/* ── Mobile dropdown menu ── */
.mobile-menu {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 999;
  flex-direction: column;
  padding: 8px 16px 20px;
  gap: 2px;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: none; }
.mobile-menu a {
  font-size: 1rem; font-weight: 600; color: var(--text);
  padding: 12px 12px; border-radius: var(--radius-sm);
  transition: var(--transition); display: block;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { background: var(--gray-100); color: var(--blue); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; width: 100%; border-bottom: none; }

/* ── Hero ── */
.hero {
  background: var(--gradient-dark);
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
  min-height: auto;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,99,235,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0,194,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-label { margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; }
.hero-label-pill {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); padding: 5px 14px;
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em;
}
.hero h1 { color: #fff; margin-bottom: 1rem; font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.hero-lead { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.65; margin-bottom: 1.75rem; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 500; }
.hero-trust-icon { color: #FFD700; font-size: 0.9rem; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  padding: 32px;
  position: relative;
}
.hero-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(79,142,247,0.1), transparent);
  pointer-events: none;
}
.hero-card-title { color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hero-feature-list li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500;
}
.hero-feature-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(79,142,247,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.hero-badge {
  position: absolute; background: #fff; border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-top { top: -20px; right: -20px; }
.hero-badge-bottom { bottom: -20px; left: -20px; }
.hero-badge-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.hero-badge-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* ── Image Placeholders ── */
.img-placeholder {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  width: 100%; position: relative; overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(148,163,184,0.06) 10px, rgba(148,163,184,0.06) 20px);
}
.img-placeholder-icon { font-size: 1.8rem; opacity: 0.4; position: relative; z-index: 1; }
.img-placeholder-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem; font-weight: 700; color: #94a3b8;
  letter-spacing: 0.05em; text-transform: uppercase;
  background: rgba(255,255,255,0.8); padding: 5px 12px;
  border-radius: 100px; position: relative; z-index: 1;
}
.img-placeholder-size { font-size: 0.72rem; color: #b0bec5; position: relative; z-index: 1; }
/* Sizes */
.img-ph-hero { min-height: 460px; }
.img-ph-full { min-height: 320px; }
.img-ph-medium { min-height: 300px; }
.img-ph-small { min-height: 220px; }
.img-ph-square { min-height: 280px; aspect-ratio: 1; }

/* ── Split sections (image + text side by side) ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-content { display: flex; flex-direction: column; gap: 14px; }
.split-content h2 { margin-bottom: 0; }
.split-content .lead { margin-bottom: 0; }
.split-content p { color: var(--text-muted); line-height: 1.75; font-size: 0.98rem; }
.split-content .btn { align-self: flex-start; margin-top: 8px; }

/* ── Pull quote ── */
.pull-quote {
  background: var(--gradient-dark); color: #fff;
  border-radius: var(--radius-lg); padding: 48px 56px;
  position: relative; overflow: hidden;
}
.pull-quote::before {
  content: '"'; font-size: 12rem; font-family: Georgia, serif;
  color: rgba(255,255,255,0.04); position: absolute;
  top: -30px; left: 20px; line-height: 1; pointer-events: none;
}
.pull-quote blockquote { font-size: 1.25rem; line-height: 1.7; font-style: italic; color: rgba(255,255,255,0.88); position: relative; z-index: 1; margin-bottom: 20px; }
.pull-quote cite { font-size: 0.88rem; color: rgba(255,255,255,0.45); font-style: normal; font-weight: 600; }

/* ── Myth-buster / objection cards ── */
.myth-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.myth-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
}
.myth-card .myth-q { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 10px; }
.myth-card .myth-q::before { content: '✕ '; color: #EF4444; }
.faq-card .myth-q::before { content: ''; }
.faq-questions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.myth-card .myth-a { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.myth-card .myth-a::first-line { color: #10B981; font-weight: 600; }
.myth-card .myth-yes { color: #10B981; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; display: block; }

/* ── Before/After strip ── */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: var(--radius-lg); overflow: hidden; }
.ba-before { background: #fef2f2; padding: 40px 36px; }
.ba-after { background: #f0fdf4; padding: 40px 36px; }
.ba-label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.ba-before .ba-label { color: #EF4444; }
.ba-after .ba-label { color: #10B981; }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ba-before .ba-list li::before { content: '✕ '; color: #EF4444; font-weight: 700; }
.ba-after .ba-list li::before { content: '✓ '; color: #10B981; font-weight: 700; }
.ba-list li { font-size: 0.92rem; color: var(--dark); line-height: 1.5; }

/* ── Finance strip ── */
.finance-strip {
  background: var(--gradient-dark); color: #fff;
  border-radius: var(--radius-lg); padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.finance-strip h2 { color: #fff; margin-bottom: 16px; }
.finance-strip p { color: rgba(255,255,255,0.65); line-height: 1.75; }
.finance-points { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.finance-point { display: flex; align-items: flex-start; gap: 12px; }
.finance-point-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.finance-point p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin: 0; }
.finance-big { text-align: center; }
.finance-big-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 4rem; font-weight: 800; color: var(--gold-light); line-height: 1; display: block; }
.finance-big-label { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 8px; display: block; }

@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
  .myth-grid { grid-template-columns: 1fr; }
  .faq-questions-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .before-after { grid-template-columns: 1fr; }
  .finance-strip { grid-template-columns: 1fr; padding: 40px; }
}
@media (max-width: 768px) {
  .pull-quote { padding: 32px 28px; }
  .pull-quote blockquote { font-size: 1.05rem; }
  .finance-strip { padding: 32px 24px; }
}

/* ── Marquee / Social proof strip ── */
.marquee-wrap {
  background: var(--dark); padding: 20px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; gap: 64px; align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-item {
  color: rgba(255,255,255,0.35); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(201,168,76,0.6); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section headers ── */
.section-header { margin-bottom: 40px; }
.section-header .label { margin-bottom: 8px; display: block; }
.section-header h2 { margin-bottom: 12px; }
.section-header .lead { max-width: 540px; }
.section-header.center { text-align: center; }
.section-header.center .lead { margin: 0 auto; }

/* ── Feature Cards ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-gold); opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(0,194,255,0.1)); }
.feature-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── Stats ── */
.stats-section {
  background: var(--gradient-dark); position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(37,99,235,0.2), transparent 60%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 1;
}
.stat-item:last-child { border-right: none; }
.stat-item {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  display: flex; align-items: baseline; gap: 3px;
  line-height: 1; padding-bottom: 6px;
}
.stat-number, .stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  background: var(--gradient-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.15; padding-bottom: 2px;
}
.stat-plus {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  background: var(--gradient-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.15; padding-bottom: 2px;
}
.stat-label { color: rgba(255,255,255,0.55); font-size: 0.85rem; font-weight: 500; }

/* ── Process ── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.process-grid::before {
  content: ''; position: absolute;
  top: 40px; left: calc(33.33% - 1px);
  width: calc(33.33% + 2px); height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.3;
}
.process-step {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px 22px;
  transition: var(--transition); position: relative;
}
.process-step:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-gold); color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.process-step h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── Seasons ── */
.seasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.season-card {
  border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--gray-200);
  background: var(--white); transition: var(--transition);
  position: relative; overflow: hidden;
}
.season-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-gold); opacity: 0; transition: var(--transition);
}
.season-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.season-card:hover::after { opacity: 1; }
.season-emoji { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.season-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.season-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Apartment Types ── */
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.type-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--dark-2); position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.type-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(6,11,24,0.5); }
.type-visual {
  height: 180px;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.type-visual::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0.12;
  transition: var(--transition);
}
.type-card:hover .type-visual::after { opacity: 0.25; }
.type-body { padding: 24px; }
.type-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.type-body p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }

/* ── Why Choose Us Reasons ── */
.reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.differentiators-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.install-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-cell { position: relative; aspect-ratio: 4/3; background: var(--gray-100); border: 1px dashed var(--gray-300); border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; transition: var(--transition); }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-placeholder-icon { font-size: 1.4rem; opacity: 0.4; }
.gallery-num { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; opacity: 0.5; }
.reason-card, .cred-card {
  padding: 18px 16px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.reason-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.reason-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  background: var(--gradient-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 12px; opacity: 0.7;
}
.reason-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.reason-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px;
  transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial blockquote { font-size: 0.88rem; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 12px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 700; font-size: 0.9rem;
}
.author-name { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.author-loc { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA Section ── */
.cta-section {
  background: var(--gradient-dark); position: relative; overflow: hidden;
  text-align: center; padding: 72px 0;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.25), transparent 65%);
}
.cta-section h2 { color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section .lead { position: relative; z-index: 1; max-width: 500px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Contact ── */
.contact-section { background: var(--off-white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 12px; }
.contact-info .lead { margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}
.contact-item h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item a, .contact-item p { color: var(--text-muted); font-size: 0.95rem; transition: var(--transition); }
.contact-item a:hover { color: var(--blue); }
.contact-note {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(0,194,255,0.06));
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius); padding: 20px;
  margin-top: 8px;
}
.contact-note p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.contact-note strong { color: var(--blue); font-weight: 600; }

/* ── Form ── */
.form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-card h2 { margin-bottom: 8px; }
.form-card .lead { font-size: 0.95rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.95rem;
  color: var(--text); background: var(--white); transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input[type="file"] { padding: 0.65rem 1rem; color: var(--text-muted); }

/* ── Facts Strip ── */
.facts-strip { background: var(--dark); padding: 40px 0; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fact-item { display: flex; align-items: flex-start; gap: 14px; }
.fact-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 0.75rem; flex-shrink: 0; margin-top: 1px;
}
.fact-item span { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ── Page Hero ── */
.page-hero {
  background: var(--gradient-dark); padding: 56px 0 48px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(37,99,235,0.2), transparent);
  pointer-events: none;
}
.page-hero .label { margin-bottom: 8px; display: block; color: rgba(255,255,255,0.5); }
.page-hero h1 { color: #fff; max-width: 720px; margin: 0 auto 1rem; position: relative; z-index: 1; font-size: clamp(2rem, 4.5vw, 3.6rem); }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 0; position: relative; z-index: 1; font-size: 1rem; }

/* ── Credentials ── */
.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; }
.cred-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: var(--transition);
}
.cred-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cred-emoji { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.cred-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.cred-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.cred-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.cred-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-top: 8px; }
.awards-badges-row { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }

/* ── Footer ── */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-certs { display: flex; flex-wrap: wrap; gap: 8px; }
.cert-badge {
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); padding: 5px 12px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 500;
}
.footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ── Animations ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: block; margin-top: 8px; }
  .hero-visual img { width: 100%; max-height: 280px; object-fit: cover; border-radius: var(--radius-lg); }
  .hero { min-height: auto; padding: 80px 0 72px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(even) { }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .differentiators-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .install-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .process-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Spacing */
  .section { padding: 52px 0; }
  .section-header { margin-bottom: 28px; }
  .container { padding: 0 18px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-phone { display: none; }
  .mobile-nav-icons { display: flex; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); margin-bottom: 0.75rem; }
  .hero-lead { font-size: 0.95rem; margin-bottom: 1.25rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-trust { gap: 10px; flex-wrap: wrap; padding-top: 1rem; margin-top: 1rem; }
  .hero-trust-item { font-size: 0.78rem; }
  .hero-awards-strip { height: 36px; }
  .hero-trust-sep { display: none; }
  .hero-badge { display: none; }

  /* Grids → single column */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .types-grid { grid-template-columns: 1fr; gap: 12px; }
  .reasons-grid { grid-template-columns: 1fr; gap: 12px; }
  .differentiators-grid { grid-template-columns: 1fr; gap: 12px; }
  .facts-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .creds-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Split sections */
  .split-section { grid-template-columns: 1fr; gap: 28px; }
  .split-section.reverse { direction: ltr; }

  /* Myth/before-after */
  .myth-grid { grid-template-columns: 1fr; gap: 12px; }
  .faq-questions-grid { grid-template-columns: 1fr; gap: 12px; }
  .before-after { grid-template-columns: 1fr; }
  .finance-strip { grid-template-columns: 1fr; padding: 28px 20px; gap: 20px; }

  /* Cards */
  .feature-card { padding: 22px 18px; }
  .reason-card, .cred-card { padding: 18px; }
  .process-step { padding: 18px 16px; }
  .testimonial { padding: 18px; }
  .season-card { padding: 20px 16px; }
  .type-body { padding: 18px; }
  .type-visual { height: 140px; }

  /* Stats */
  .stat-item { padding: 28px 16px; }

  /* Sections */
  .pull-quote { padding: 28px 20px; }
  .pull-quote blockquote { font-size: 1rem; }
  .cta-section { padding: 52px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: clamp(1.8rem, 5.5vw, 2.6rem); }
  .page-hero .lead { font-size: 0.9rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-section.section { padding: 52px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .form-card { padding: 24px 18px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { justify-content: center; }
  .footer-awards-img { height: 32px; }

  /* Announce bar */
  .announce { font-size: 0.75rem; padding: 8px 40px 8px 16px; text-align: left; }

  /* Type cards dark */
  .type-card:hover { transform: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }

  /* Typography */
  .display-1 { font-size: 1.85rem; line-height: 1.15; }
  .display-2 { font-size: 1.6rem; }
  .display-3 { font-size: 1.3rem; }
  .display-4 { font-size: 1.1rem; }
  .lead { font-size: 0.92rem; }

  /* Hero */
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 1.85rem; }

  /* Grids */
  .seasons-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 22px 12px; }

  /* Cards */
  .feature-card { padding: 18px 16px; }
  .feature-icon { width: 42px; height: 42px; font-size: 1.2rem; margin-bottom: 14px; }
  .season-card { padding: 16px; }
  .reason-num { font-size: 1.8rem; }
  .cred-emoji { font-size: 1.6rem; }

  /* Page heroes */
  .page-hero { padding: 36px 0 28px; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero .lead { font-size: 0.88rem; }

  /* Contact */
  .contact-section.section { padding: 44px 0; }
  .contact-layout { gap: 28px; }
  .contact-info h2 { font-size: 1.5rem; }
  .contact-info .lead { font-size: 0.88rem; margin-bottom: 16px; }
  .contact-item { gap: 10px; margin-bottom: 16px; }
  .contact-icon { width: 38px; height: 38px; font-size: 1rem; }
  .contact-item h4 { font-size: 0.75rem; }
  .contact-item a, .contact-item p { font-size: 0.85rem; }
  .contact-note { padding: 12px 14px; }
  .contact-note p { font-size: 0.8rem; }
  .form-card { padding: 20px 14px; border-radius: 14px; }
  .form-card h2 { font-size: 1.4rem; }
  .form-card .lead { font-size: 0.82rem; margin-bottom: 16px; }
  .form-group label { font-size: 0.78rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 0.6rem 0.8rem; font-size: 0.88rem; }
  .form-group textarea { min-height: 90px; }

  /* Trust bar */
  .hero-trust { gap: 6px; }
  .hero-trust-item { font-size: 0.72rem; }
  .hero-awards-strip { display: none; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-grid { gap: 24px; }
  .footer-brand p { font-size: 0.82rem; }
  .footer-awards-img { height: 28px; }

  /* Announce bar */
  .announce { font-size: 0.7rem; }

  /* Buttons */
  .btn { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
  .btn-lg { padding: 0.85rem 1.6rem; font-size: 0.95rem; }
}

/* ── Award Badges ── */
.hero-trust-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.hero-awards-strip { height: 52px; width: auto; opacity: 1; filter: brightness(0) invert(1); }
.footer-awards { text-align: center; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 32px; }
.footer-awards-img { height: 44px; width: auto; opacity: 0.8; filter: brightness(0) invert(1); }
.awards-badges-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
.award-badge-lg { height: 90px; width: auto; }
.award-badge-strip { height: 68px; width: auto; }
@media (max-width: 600px) {
  .hero-awards-strip { height: 40px; }
  .footer-awards-img { height: 36px; }
  .award-badge-lg { height: 70px; }
  .award-badge-strip { height: 44px; }
}

/* ── FAQ Category Labels ── */
.faq-category-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 16px; padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

/* Nav collapses to hamburger on screens too narrow for full menu */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-nav-icons { display: flex; }
  .hamburger { display: flex; }
}
