/* ================================================================
   pinnaclefundingnetwork.com - Design System
   Based on Pinnacle Funding Network Brand Guide 2026
   Off Menu aesthetic: white canvas, editorial precision, navy accent
   ================================================================ */

/* Google Fonts loaded via <link> in HTML head */

/* ── Brand Tokens ─────────────────────────────────────────────── */
:root {
  --navy: #162265;
  --navy-hover: #0F1850;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --night: #202B3D;
  --grey: #D5D4CF;
  --mid-grey: #E5E5E0;
  --light-grey: #F4F4F2;
  --text-primary: #0A0A0A;
  --text-body: #333333;
  --text-secondary: #6B6B6B;
  --text-muted: #999999;
  --success: #16A34A;
  --warning: #D97706;
  --error: #DC2626;
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);
  --transition: 200ms ease;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-hover); }
img { max-width: 100%; display: block; }

/* ── Layout ───────────────────────────────────────────────────── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
section { padding: 80px 0; }
.section-bg { background: var(--off-white); }
.divider { height: 1px; background: var(--mid-grey); }

/* ── Typography ───────────────────────────────────────────────── */
h1 { font-size: clamp(2.4rem, 4.5vw, 3.2rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--text-primary); }
h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--text-primary); margin-bottom: 16px; }
h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); line-height: 1.3; margin-bottom: 8px; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.overline, .hero-overline, .section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--text-secondary); max-width: 540px; line-height: 1.7; margin-bottom: 48px; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--navy); color: var(--white); border: none;
  padding: 15px 30px; border-radius: var(--radius); font-family: var(--font);
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition); text-align: center;
}
.btn-primary:hover { background: var(--navy-hover); color: var(--white); }

.btn-secondary {
  display: inline-block; background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy); padding: 14px 30px; border-radius: var(--radius);
  font-family: var(--font); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; transition: all var(--transition); text-align: center;
}
.btn-secondary:hover { background: rgba(22,34,101,0.06); }

/* ── Navigation ───────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--mid-grey); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em; color: var(--text-secondary); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links .btn-primary { padding: 10px 24px; font-size: 0.72rem; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { background: none; border: none; font-family: var(--font); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em; color: var(--text-secondary); cursor: pointer; padding: 0; }
.nav-dropdown-toggle:hover { color: var(--navy); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: -16px; background: var(--white); border: 1px solid var(--mid-grey); border-radius: var(--radius); box-shadow: var(--shadow-md); min-width: 200px; padding: 8px 0; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
.nav-dropdown-menu a { display: block; padding: 10px 20px; font-size: 0.82rem; font-weight: 500; color: var(--text-body); }
.nav-dropdown-menu a:hover { background: var(--off-white); color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.02em; white-space: nowrap; }
.nav-phone:hover { color: var(--navy); }
.nav-cta { display: inline-block; background: var(--navy); color: var(--white); padding: 10px 24px; border-radius: var(--radius); font-family: var(--font); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; transition: all var(--transition); }
.nav-cta:hover { background: var(--navy-hover); color: var(--white); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; width: 44px; height: 44px; position: relative; }
.nav-hamburger span { display: block; position: absolute; height: 2px; width: 24px; background: var(--text-primary); left: 10px; transition: all 0.25s ease; }
.nav-hamburger span:nth-child(1) { top: 12px; }
.nav-hamburger span:nth-child(2) { top: 21px; }
.nav-hamburger span:nth-child(3) { top: 30px; }
.nav-hamburger.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.nav-mobile-only { display: none; }
.dropdown-arrow { display: none; }

/* ── Hero - White canvas default ──────────────────────────────── */
.hero { padding: 96px 0 80px; background: var(--white); }
.hero h1 { max-width: 700px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--navy); }
.hero-line { width: 80px; height: 3px; background: var(--navy); border-radius: 2px; margin-bottom: 24px; }
.hero-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 540px; line-height: 1.7; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-meta { margin-top: 56px; display: flex; gap: 48px; padding-top: 32px; border-top: 1px solid var(--mid-grey); }
.hero-meta div { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.hero-meta div strong { display: block; margin-top: 4px; font-size: 0.85rem; letter-spacing: 0.01em; color: var(--text-primary); font-weight: 600; text-transform: none; }

/* ── Hero Split Layout ───────────────────────────────────────── */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-text h1 { max-width: 100%; }
.hero-image { border-radius: var(--radius); overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); max-height: 420px; }

/* ── Grid Utilities ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

/* ── Cards ─────────────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { display: block; background: var(--white); border: 1px solid var(--mid-grey); border-radius: var(--radius); padding: 28px; transition: box-shadow var(--transition), border-color var(--transition); color: inherit; }
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); color: inherit; }
.product-card .overline { font-size: 0.62rem; margin-bottom: 12px; }
.product-card h3 { font-size: 1.05rem; }
.product-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.blog-card { display: block; background: var(--white); border: 1px solid var(--mid-grey); border-radius: var(--radius); padding: 24px; transition: box-shadow var(--transition), border-color var(--transition); color: inherit; }
.blog-card:hover { box-shadow: var(--shadow-md); border-color: var(--navy); color: inherit; }
.card-tag { display: inline-block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.blog-card h3 { font-size: 1rem; }
.blog-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

.pain-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 32px; }
.pain-card { background: var(--off-white); border: 1px solid var(--mid-grey); border-radius: var(--radius); padding: 24px; }
.pain-card h3 { font-size: 1rem; }
.pain-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ── Tables ──────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 24px 0; }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table-wrap th { text-align: left; padding: 12px 16px; background: var(--off-white); border-bottom: 2px solid var(--navy); font-weight: 600; color: var(--text-primary); }
.table-wrap td { padding: 10px 16px; border-bottom: 1px solid var(--mid-grey); color: var(--text-secondary); }
.table-wrap tr:last-child td { border-bottom: none; }

/* ── Deal Box ─────────────────────────────────────────────────── */
.deal-box { background: var(--off-white); border: 1px solid var(--mid-grey); border-radius: var(--radius); padding: 40px; max-width: 600px; }
.deal-box h3 { font-size: 1.2rem; margin-bottom: 16px; }
.deal-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--mid-grey); font-size: 0.9rem; }
.deal-row:last-child { border-bottom: none; }
.deal-label { color: var(--text-secondary); font-weight: 500; }
.deal-value { color: var(--text-primary); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ── Steps ─────────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 32px; }
.step-num { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--mid-grey); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.faq-q:hover { color: var(--navy); }
.faq-q::after { content: '+'; font-size: 1.2rem; font-weight: 300; color: var(--text-muted); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a { display: none; padding: 0 0 20px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── Cross Links ──────────────────────────────────────────────── */
.cross-links { padding: 48px 0 0; text-align: center; }
.cross-links h3 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.cross-links-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cross-link { display: inline-block; padding: 10px 24px; border: none; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: var(--white); background: var(--navy); transition: all var(--transition); }
.cross-link:hover { background: var(--night); color: var(--white); box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ── Contact Section ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-text .section-label { margin-bottom: 8px; }
.contact-text .section-title { margin-bottom: 16px; }
.contact-text .section-desc { margin-bottom: 32px; }
.contact-info p { margin-bottom: 16px; font-size: 0.95rem; color: var(--text-secondary); }
.contact-info a { color: var(--navy); font-weight: 500; }
.contact-form-wrap { background: var(--off-white); border: 1px solid var(--mid-grey); border-radius: var(--radius); padding: 32px; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner { background: var(--night); padding: 64px 48px; text-align: center; border-radius: var(--radius); }
.cta-banner .section-inner { max-width: 600px; }
.cta-banner .overline { color: rgba(255,255,255,0.4); }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--grey); font-size: 1rem; margin-bottom: 32px; }
.cta-banner .btn-primary { background: var(--white); color: var(--navy); }
.cta-banner .btn-primary:hover { background: var(--off-white); }
.cta-banner .btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.3); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.08); }
.cta-banner .hero-actions { justify-content: center; }

/* ── Form Elements ────────────────────────────────────────────── */
.form-box { background: var(--white); border: 1px solid var(--mid-grey); border-radius: var(--radius); padding: 32px; overflow: visible; }
.form-box h3 { margin-bottom: 24px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid var(--mid-grey); }
.form-tab { flex: 1; padding: 12px 16px; background: none; border: none; font-family: var(--font); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.form-tab:hover { color: var(--navy); }
.form-tab.active { color: var(--navy); border-bottom-color: var(--navy); }
.form-panel { min-height: 200px; overflow: visible; }

/* ── Article ──────────────────────────────────────────────────── */
.article { max-width: 700px; margin: 0 auto; }
.article-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--mid-grey); }
.article-hero { margin: 32px 0; border-radius: var(--radius); overflow: hidden; }
.article-hero img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.article-summary { background: var(--light-grey); border-left: 4px solid var(--navy); padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0 32px; }
.article-summary .summary-label { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; }
.article-summary .summary-text { font-size: 1.05rem; line-height: 1.6; color: var(--text-primary); margin: 0; }
.article h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; }
.article h3 { font-size: 1.1rem; margin-top: 32px; }
.article p { font-size: 1rem; color: var(--text-body); line-height: 1.75; }
.article ul, .article ol { margin: 16px 0; padding-left: 24px; }
.article li { font-size: 1rem; color: var(--text-body); line-height: 1.75; margin-bottom: 8px; }
.article strong { color: var(--text-primary); }
.article blockquote { border-left: 3px solid var(--navy); padding: 16px 24px; margin: 24px 0; background: var(--off-white); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text-secondary); }

/* ── Guide ─────────────────────────────────────────────────────── */
.guide-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.guide-toc { position: sticky; top: 80px; align-self: start; }
.guide-toc h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.guide-toc a { display: block; padding: 8px 0; font-size: 0.85rem; color: var(--text-secondary); border-bottom: 1px solid var(--light-grey); }
.guide-toc a:hover { color: var(--navy); }
.guide-content { max-width: 700px; }
.guide-content h1 { margin-bottom: 32px; }
.guide-content h2 { font-size: 1.4rem; margin-top: 48px; margin-bottom: 12px; padding-top: 24px; border-top: 1px solid var(--mid-grey); }
.guide-content p { font-size: 1rem; color: var(--text-body); line-height: 1.75; }
.guide-content ul, .guide-content ol { margin: 16px 0; padding-left: 24px; }
.guide-content li { font-size: 1rem; line-height: 1.75; margin-bottom: 8px; color: var(--text-body); }

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--night); padding: 64px 0 40px; color: var(--grey); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.footer-brand p { font-size: 0.88rem; color: var(--grey); line-height: 1.6; margin-top: 12px; max-width: 280px; }
.footer-contact { margin-top: 12px; }
.footer-contact a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-contact a:hover { color: var(--white); }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-social a:hover { color: var(--white); }
.footer-col h4 { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.88rem; color: var(--grey); padding: 8px 0; }
.footer-col a:hover { color: var(--white); }
.footer-disclaimers { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-disclaimers p { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.5; margin-bottom: 8px; }

/* ── Quote Page ───────────────────────────────────────────────── */
.quote-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.quote-steps p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; }
.quote-steps p:last-child { margin-bottom: 0; }
.quote-phone { font-size: 0.9rem; color: var(--text-secondary); }
.quote-phone a { color: var(--text-secondary); }
.quote-apply { margin-top: 20px; text-align: center; font-size: 0.9rem; color: var(--text-secondary); }
.quote-apply p { margin-bottom: 8px; }
.quote-apply-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-sm { font-size: 0.85rem; padding: 10px 20px; }

/* ── Utility Classes ─────────────────────────────────────────── */
.list-unstyled { list-style: none; padding: 0; }
.pt-hero { padding-top: 64px; }
.back-link { margin-top: 20px; }
.back-link a { color: var(--navy); font-weight: 600; }
.flex-center { display: flex; justify-content: center; }
.text-center { text-align: center; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-toc { position: static; }
}

@media (max-width: 768px) {
  .section-inner, .nav-inner, .footer-inner { padding: 0 24px; }
  section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero-meta { flex-direction: column; gap: 20px; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: block; }
  .nav-mobile-only { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--navy); padding: 0 24px 24px; gap: 0; box-shadow: var(--shadow-lg); z-index: 999; }
  .nav-links.open li { list-style: none; }
  .nav-links.open li a, .nav-links.open .nav-dropdown-toggle { padding: 14px 0; display: block; font-size: 1rem; font-weight: 500; color: var(--text-primary); border-bottom: 1px solid var(--mid-grey); }
  .nav-links.open li:last-child a { border-bottom: none; }
  .nav-links.open .nav-mobile-only { display: list-item; }
  .nav-links.open .nav-cta-mobile { display: block; background: var(--navy); color: var(--white); text-align: center; padding: 14px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; margin-top: 8px; border-bottom: none; }
  .nav-links.open .nav-phone { color: var(--navy); font-weight: 600; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding: 0; display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; }
  .nav-dropdown.open .nav-dropdown-menu a { padding: 10px 0 10px 16px; font-size: 0.9rem; color: var(--text-secondary); border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-dropdown.open .nav-dropdown-menu a:last-child { border-bottom: 1px solid var(--mid-grey); }
  .dropdown-arrow { display: inline; float: right; font-weight: 400; transition: transform var(--transition); }
  .nav-dropdown.open .dropdown-arrow { transform: rotate(45deg); }
  .product-grid, .grid-2, .grid-3, .pain-grid, .contact-grid, .quote-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 280px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-banner { padding: 48px 24px; }
  .deal-box { padding: 24px; }
  .form-tab { padding: 14px 12px; }
}
