/* SmartHost — shared design system. Used by every page on smarthostagent.com. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #0d6e7d;
  --blue-dark:  #094f5a;
  --blue-light: #e3f2f3;
  --blue-mid:   #b8e0e3;
  --orange:     #c2801f;
  --orange-dk:  #9c6416;
  --orange-gl:  rgba(194,128,31,0.35);
  --black:      #111111;
  --gray:       #666666;
  --gray-light: #f6f7f9;
  --border:     #e3e8ef;
  --white:      #ffffff;
  --text:       #111111;
  --text-mid:   #444444;
  --text-light: #888888;
  --font-h: 'Frank Ruhl Libre', Georgia, 'Arial Hebrew', serif;
  --font-b: 'Heebo', -apple-system, 'Segoe UI', Arial, 'Arial Hebrew', sans-serif;
  --radius: 10px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* ── ICONS ── */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── FOCUS (keyboard accessibility) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── TOP BAR ── */
.topbar { background: var(--blue); color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; text-align: center; padding: 9px 16px; letter-spacing: 0.3px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.topbar .icon { width: 15px; height: 15px; color: #FFD166; }
.topbar a { color: #FFD166; font-weight: 800; text-decoration: none; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 300; background: var(--white); border-bottom: 1px solid var(--border); height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; box-shadow: 0 1px 0 var(--border); }
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.09); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo .icon { width: 24px; height: 24px; color: var(--blue); }
.nav-wordmark { font-family: var(--font-h); font-size: 20px; font-weight: 900; color: var(--blue); letter-spacing: 3px; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-mid); text-decoration: none; }
.nav-link:hover { color: var(--blue); }
.nav-cta { background: var(--orange); color: var(--white); font-size: 14px; font-weight: 800; padding: 10px 22px; border-radius: 6px; text-decoration: none; white-space: nowrap; box-shadow: 0 2px 8px rgba(156,100,22,0.28); transition: background 0.15s, transform 0.12s, box-shadow 0.15s; }
.nav-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }

/* ── BREADCRUMB ── */
.breadcrumb { max-width: 1100px; margin: 20px auto 0; padding: 0 48px; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── PAGE HERO (simple, non-slider, for sub-pages) ── */
.page-hero { padding: 56px 48px 64px; text-align: center; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,15,50,0.58) 0%, rgba(0,10,35,0.72) 100%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(30px, 5vw, 54px); font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 14px; }
.page-hero p { font-size: clamp(14px, 2vw, 17px); color: rgba(255,255,255,0.82); line-height: 1.6; }

/* ── HERO (home page slider) ── */
.hero { padding: 72px 48px 80px; text-align: center; position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease-in-out; }
.hero-slide.active { opacity: 1; animation: kenBurns 7s ease-out forwards; }
@keyframes kenBurns { 0% { transform: scale(1.08) translate(0%, 0%); } 100% { transform: scale(1.0) translate(0%, 0%); } }
.hero-slide:nth-child(2).active { animation: kenBurns2 7s ease-out forwards; }
.hero-slide:nth-child(4).active { animation: kenBurns3 7s ease-out forwards; }
@keyframes kenBurns2 { 0% { transform: scale(1.1) translate(2%, 1%); } 100% { transform: scale(1.0) translate(0%, 0%); } }
@keyframes kenBurns3 { 0% { transform: scale(1.07) translate(-2%, -1%); } 100% { transform: scale(1.0) translate(0%, 0%); } }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0, 15, 50, 0.52) 0%, rgba(0, 10, 35, 0.65) 100%); }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; padding: 0; cursor: pointer; transition: background 0.3s, transform 0.3s; }
.hero-dot.active { background: var(--white); transform: scale(1.3); }
.hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; width: 100%; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 6px 18px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.hero-tag span { width: 7px; height: 7px; background: #FFD166; border-radius: 50%; }
.hero h1 { font-family: var(--font-h); font-size: clamp(34px, 6vw, 70px); font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 18px; letter-spacing: -0.5px; }
.hero h1 em { font-style: normal; color: #FFD166; }
.hero-sub { font-size: clamp(15px, 2.2vw, 18px); color: rgba(255,255,255,0.78); font-weight: 300; margin-bottom: 40px; line-height: 1.6; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 24px; }
.hero-trust span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.6); }

/* ── BUTTONS ── */
.btn-orange { display: inline-flex; align-items: center; gap: 8px; min-height: 56px; padding: 0 40px; background: var(--orange); color: var(--white); font-family: var(--font-b); font-size: 17px; font-weight: 900; border-radius: 7px; text-decoration: none; box-shadow: 0 6px 20px rgba(156,100,22,0.3); transition: transform 0.15s, box-shadow 0.15s; white-space: nowrap; border: none; cursor: pointer; }
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(156,100,22,0.38); }
.btn-orange:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(156,100,22,0.28); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; min-height: 56px; padding: 0 32px; background: rgba(255,255,255,0.12); color: var(--white); font-size: 16px; font-weight: 700; border-radius: 7px; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4); transition: background 0.15s, border-color 0.15s; white-space: nowrap; }
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }

/* ── STATS STRIP ── */
.stats { display: flex; justify-content: center; flex-wrap: wrap; border-bottom: 1px solid var(--border); }
.stat { flex: 1; min-width: 140px; text-align: center; padding: 32px 20px; border-left: 1px solid var(--border); }
.stat:last-child { border-left: none; }
.stat-n { font-family: var(--font-h); font-size: 38px; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-l { font-size: 12px; color: var(--text-light); margin-top: 5px; letter-spacing: 0.3px; }

/* ── SECTION COMMON ── */
section { padding: 80px 48px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--blue); }
.sec-h { font-family: var(--font-h); font-size: clamp(24px, 3.5vw, 44px); font-weight: 800; line-height: 1.12; margin-bottom: 10px; }
.sec-sub { font-size: 16px; color: var(--text-light); line-height: 1.65; }

/* ── ARTICLE BODY (region/info pages) ── */
.article { max-width: 760px; margin: 0 auto; padding: 64px 48px; }
.article h2 { font-family: var(--font-h); font-size: clamp(20px, 3vw, 28px); font-weight: 800; margin: 36px 0 14px; }
.article h2:first-child { margin-top: 0; }
.article p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.article ul { margin: 0 0 16px; padding-inline-start: 22px; color: var(--text-mid); line-height: 1.8; }
.article li { margin-bottom: 6px; }

/* ── FAQ ── */
.faq { max-width: 760px; margin: 0 auto; padding: 0 48px 64px; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 12px; background: var(--gray-light); }
.faq summary { font-weight: 800; font-size: 15px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 20px; color: var(--blue); font-weight: 400; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 12px; font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── DEALS GRID ── */
.deals { background: var(--gray-light); }
.deals-grid { max-width: 1200px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.deal-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform 0.22s, box-shadow 0.22s; position: relative; }
.deal-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(0,0,0,0.1); }
.deal-card.span2 { grid-column: span 2; }
.deal-card.span3 { grid-column: span 3; }
.deal-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.deal-card.span2 .deal-img { aspect-ratio: 21/9; }
.deal-card.span3 .deal-img { aspect-ratio: 32/9; }
.deal-badge { position: absolute; top: 16px; right: 16px; background: var(--orange); color: var(--white); font-size: 12px; font-weight: 800; padding: 5px 13px; border-radius: 999px; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 5px; }
.deal-badge .icon { width: 13px; height: 13px; }
.deal-badge.blue { background: var(--blue); }
.deal-badge.green { background: #16a34a; }
.deal-badge.purple { background: #7c3aed; }
.deal-badge.eilat { background: #0891b2; }
.deal-badge.dead-sea { background: #92400e; }
.deal-badge.jerusalem { background: #a16207; }
.deal-badge.tel-aviv { background: #1d4ed8; }
.deal-badge.events { background: #b45309; }
.deal-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.deal-cat { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.deal-title { font-family: var(--font-h); font-size: 19px; font-weight: 800; margin-bottom: 6px; line-height: 1.25; color: var(--text); }
.deal-card.span2 .deal-title { font-size: 23px; }
.deal-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.deal-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); gap: 12px; }
.deal-info { font-size: 13px; color: var(--text-light); }
.deal-info strong { font-size: 18px; color: var(--blue); font-weight: 900; }
.card-btn { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 20px; background: var(--orange); color: var(--white); font-size: 14px; font-weight: 800; border-radius: 6px; text-decoration: none; box-shadow: 0 2px 6px rgba(156,100,22,0.25); white-space: nowrap; flex-shrink: 0; transition: background 0.14s, transform 0.12s, box-shadow 0.14s; }
.card-btn:hover { background: var(--orange-dk); transform: translateY(-1px); }

/* ── HIGHLIGHT STRIP ── */
.highlight-strip { background: var(--blue-light); border-top: 1px solid var(--blue-mid); border-bottom: 1px solid var(--blue-mid); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hs-text h2 { font-family: var(--font-h); font-size: clamp(22px, 3vw, 34px); font-weight: 900; color: var(--blue-dark); margin-bottom: 6px; }
.hs-text p { font-size: 15px; color: var(--text-mid); }

/* ── BENEFITS ── */
.benefits { background: var(--white); }
.ben-grid { max-width: 1100px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ben-card { background: var(--gray-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.ben-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.07); }
.ben-icon { width: 60px; height: 60px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 18px; color: var(--blue); }
.ben-icon .icon { width: 26px; height: 26px; stroke-width: 1.6; }
.ben-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.ben-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255,255,255,0.04); border-radius: 50%; top: -150px; right: -100px; }
.cta-banner-inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.cta-banner h2 { font-family: var(--font-h); font-size: clamp(26px, 4.5vw, 52px); font-weight: 900; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.72); margin-bottom: 36px; line-height: 1.6; }
.cta-banner .btn-orange { font-size: 19px; min-height: 60px; padding: 0 52px; }
.cta-note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.38); }

/* ── LEAD CAPTURE (deal alerts) ── */
.lead { background: var(--gray-light); border: 1px solid var(--blue-mid); border-radius: var(--radius); max-width: 640px; margin: 0 auto; padding: 36px 32px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.lead h3 { font-family: var(--font-h); font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.lead p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.lead-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.lead-form input[type="email"] { flex: 1; min-width: 220px; height: 50px; padding: 0 16px; border: 1px solid var(--border); border-radius: 7px; font-size: 15px; font-family: var(--font-b); background: var(--white); }
.lead-form button { height: 50px; padding: 0 28px; }
.lead-note { margin-top: 14px; font-size: 11px; color: var(--text-light); }
.lead-success { display: none; font-size: 14px; font-weight: 700; color: #16a34a; margin-top: 14px; }

/* ── PARTNERS ── */
.testimonials { background: var(--gray-light); }
.t-inner { max-width: 1100px; margin: 0 auto; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.t-card { background: var(--white); border: 1px dashed var(--border); border-radius: var(--radius); padding: 28px; }

/* ── FOOTER ── */
.footer-top { background: var(--black); padding: 52px 48px 36px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.fb-w { font-family: var(--font-h); font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: 3px; margin-bottom: 10px; }
.fb-p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 230px; }
.fc h4 { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fc a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.18s; }
.fc a:hover { color: var(--white); }
.footer-bottom { background: #0d0d0d; padding: 18px 48px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; }

/* ── LEGAL PAGE ── */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 48px 80px; }
.legal h1 { font-family: var(--font-h); font-size: clamp(26px, 4vw, 38px); font-weight: 900; margin-bottom: 8px; }
.legal .updated { font-size: 13px; color: var(--text-light); margin-bottom: 32px; }
.legal h2 { font-family: var(--font-h); font-size: 19px; font-weight: 800; margin: 30px 0 10px; }
.legal p, .legal li { font-size: 15px; color: var(--text-mid); line-height: 1.8; }
.legal ul { padding-inline-start: 22px; margin-bottom: 12px; }

/* ── STICKY BOTTOM CTA ── */
.sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: var(--white); border-top: 3px solid var(--orange); padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; box-shadow: 0 -4px 24px rgba(0,0,0,0.12); transform: translateY(105%); transition: transform 0.32s cubic-bezier(0.22,1,0.36,1); }
.sticky.show { transform: translateY(0); }
.sticky-txt strong { display: block; font-size: 15px; font-weight: 800; }
.sticky-txt small { font-size: 12px; color: var(--text-light); }
.sticky-btn { min-height: 50px; padding: 0 28px; background: var(--orange); color: var(--white); font-size: 15px; font-weight: 900; border-radius: 6px; text-decoration: none; display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0; box-shadow: 0 2px 8px rgba(156,100,22,0.28); transition: background 0.14s, box-shadow 0.14s; }
.sticky-btn:hover { background: var(--orange-dk); }

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  section { padding: 64px 28px; }
  .hero, .page-hero { padding: 60px 28px 72px; }
  .deals-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .deal-card.span2, .deal-card.span3 { grid-column: span 2; }
  .deal-card.span3 .deal-img { aspect-ratio: 21/9; }
  .ben-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .t-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 28px 32px; }
  .footer-bottom { padding: 16px 28px; }
  .highlight-strip { padding: 36px 28px; }
  .cta-banner { padding: 64px 28px; }
  .article, .faq, .legal { padding-left: 28px; padding-right: 28px; }
  .breadcrumb { padding: 0 28px; }
}

@media (max-width: 768px) {
  nav { padding: 0 16px; height: 58px; }
  .nav-link { display: none; }
  .nav-logo img { height: 26px; }
  .nav-wordmark { font-size: 17px; }
  .nav-cta { font-size: 13px; padding: 9px 16px; }
  .topbar { font-size: 12px; padding: 8px 12px; }
  .hero { padding: 44px 18px 56px; }
  .hero h1 { font-size: 34px; line-height: 1.08; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-tag { font-size: 12px; padding: 5px 14px; margin-bottom: 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-orange, .btn-ghost { width: 100%; justify-content: center; font-size: 16px; min-height: 54px; }
  .hero-trust { gap: 12px; font-size: 12px; }
  .page-hero { padding: 40px 18px 48px; }
  .stats { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); }
  .stat { min-width: 0; padding: 22px 12px; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .stat-n { font-size: 30px; }
  section { padding: 48px 16px; }
  .article, .faq, .legal { padding-left: 16px; padding-right: 16px; }
  .breadcrumb { padding: 0 16px; }
  .sec-h { font-size: 26px; }
  .sec-sub { font-size: 14px; }
  .eyebrow { font-size: 10px; }
  .deals-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .deal-card.span2, .deal-card.span3 { grid-column: span 1; }
  .deal-card .deal-img, .deal-card.span2 .deal-img, .deal-card.span3 .deal-img { aspect-ratio: 16/9; }
  .deal-title { font-size: 18px; }
  .deal-desc { font-size: 14px; }
  .deal-body { padding: 16px 16px 18px; }
  .card-btn { min-height: 42px; font-size: 13px; }
  .highlight-strip { flex-direction: column; text-align: center; padding: 32px 18px; gap: 18px; }
  .highlight-strip .btn-orange { width: 100%; justify-content: center; }
  .ben-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .ben-card { padding: 24px 20px; }
  .ben-icon { width: 50px; height: 50px; font-size: 22px; }
  .ben-card h3 { font-size: 15px; }
  .ben-card p { font-size: 13px; }
  .cta-banner { padding: 52px 18px; }
  .cta-banner h2 { font-size: 26px; }
  .cta-banner p { font-size: 14px; margin-bottom: 28px; }
  .cta-banner .btn-orange { width: 100%; font-size: 16px; min-height: 56px; }
  .t-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .t-card { padding: 22px 18px; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 36px 18px 28px; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; padding: 14px 18px; text-align: center; }
  .sticky { padding: 10px 16px; gap: 10px; }
  .sticky-txt { display: none; }
  .sticky-btn { width: 100%; justify-content: center; font-size: 16px; min-height: 52px; }
  .lead-form { flex-direction: column; }
  .lead-form button { width: 100%; }
}

@media (max-width: 480px) {
  .hero h1, .page-hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .btn-orange, .btn-ghost { font-size: 15px; min-height: 52px; }
  .deal-title { font-size: 16px; }
  .deal-footer { flex-wrap: wrap; gap: 10px; }
  .card-btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .topbar { font-size: 11px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 25px; }
  .nav-wordmark { display: none; }
}
