/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:   #080808;
  --white:   #ffffff;
  --off:     #f5f5f5;
  --grey:    #888;
  --border:  #e0e0e0;
  --red:     #cc1010;
  --red2:    #e81010;
  --green:   #1a9e50;
  --gold:    #e8a020;
  --font:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--white); color: var(--black); font-family: var(--font); line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; border: none; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background .3s, border-color .3s;
}
.site-header.light { background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.site-header.dark  { background: rgba(8,8,8,.72); backdrop-filter: blur(16px); }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-white { display: block; filter: brightness(0) invert(1); }
.logo-black { display: none; filter: brightness(0); }
.site-header.light .logo-white { display: none; }
.site-header.light .logo-black { display: block; }
.nav { display: flex; align-items: center; gap: 2.5rem; }
.nav a { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.7); transition: color .2s; }
.nav a:hover { color: var(--white); }
.site-header.light .nav a { color: var(--grey); }
.site-header.light .nav a:hover { color: var(--black); }
.header-btn { font-size: .82rem; font-weight: 700; padding: .5rem 1.25rem; border-radius: 999px; background: var(--red); color: #fff; transition: background .2s, transform .15s; }
.header-btn:hover { background: var(--red2); transform: translateY(-1px); }

/* ── Sticky buy ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 190;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,8,8,.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-info { display: flex; flex-direction: column; }
.sticky-name  { font-size: .95rem; font-weight: 700; color: var(--white); }
.sticky-price { font-size: .8rem; color: var(--grey); margin-top: .1rem; }
.sticky-price strong { color: var(--white); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--font); font-weight: 700; cursor: pointer; transition: all .2s; border: none; }
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red2); }
.btn-black { background: var(--black); color: #fff; }
.btn-black:hover { background: #222; }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: rgba(255,255,255,.9); }
.btn-outline-dark { background: transparent; color: var(--black); border: 1.5px solid rgba(0,0,0,.25); }
.btn-outline-dark:hover { border-color: var(--black); }
.btn-lg { font-size: 1rem; padding: 1rem 2.25rem; border-radius: 12px; }
.btn-md { font-size: .9rem; padding: .8rem 1.75rem; border-radius: 10px; }
.btn-sm { font-size: .82rem; padding: .55rem 1.25rem; border-radius: 8px; }
.btn-pill { border-radius: 999px !important; }
.btn-full { width: 100%; }

/* ── HERO ── */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/center-console-1.jpg');
  background-size: cover; background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.1) 100%);
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-content {
  position: relative; z-index: 1;
  padding: 64px 48px 0; max-width: 600px;
}
.hero-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .6rem; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.hero-title { font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 900; line-height: .97; letter-spacing: -.04em; color: var(--white); margin-bottom: 1.5rem; }
.hero-title em { font-style: normal; color: var(--red); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 2.25rem; max-width: 440px; }
.hero-price-row { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 2.25rem; }
.hero-price { font-size: 2.5rem; font-weight: 900; color: var(--white); }
.hero-compare { font-size: 1.1rem; color: rgba(255,255,255,.38); text-decoration: line-through; }
.hero-save { font-size: .72rem; font-weight: 700; letter-spacing: .05em; background: rgba(26,158,80,.2); color: #4ade80; border: 1px solid rgba(74,222,128,.25); padding: .25rem .65rem; border-radius: 999px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-trust-item { font-size: .78rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: .4rem; }
.hero-trust-item svg { opacity: .6; }

/* ── Trust bar ── */
.trust-strip { background: var(--black); padding: 1.1rem 48px; }
.trust-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 0; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.55); padding: 0 2.5rem; border-right: 1px solid rgba(255,255,255,.1); }
.trust-item:last-child { border-right: none; }
.trust-item span { font-size: 1rem; }

/* ── Feature rows ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img { overflow: hidden; position: relative; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.feature-img:hover img { transform: scale(1.04); }
.feature-body { display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; background: var(--white); }
.feature-body.dark-bg { background: var(--black); }
.feature-num { font-size: .7rem; font-weight: 700; letter-spacing: .15em; color: var(--red); margin-bottom: 1.5rem; }
.feature-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.05; letter-spacing: -.035em; margin-bottom: 1.25rem; color: var(--black); }
.feature-body.dark-bg .feature-title { color: var(--white); }
.feature-desc { font-size: 1.05rem; color: var(--grey); line-height: 1.7; margin-bottom: 2.25rem; max-width: 400px; }
.feature-body.dark-bg .feature-desc { color: rgba(255,255,255,.5); }

/* ── Specs section ── */
/* ── Commands ── */
.commands-section { background: var(--black); padding: 100px 48px; }
.commands-inner { max-width: 1200px; margin: 0 auto; }
.commands-inner .section-label { color: rgba(255,255,255,.35); }
.commands-inner .section-label::before { background: var(--red); }
.commands-inner .section-h { color: var(--white); }
.commands-sub { color: rgba(255,255,255,.45); font-size: 1rem; margin: 1rem 0 3rem; max-width: 480px; }
.commands-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.cmd-card { background: var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; padding: 2rem 1rem; transition: background .2s; }
.cmd-card:hover { background: #111; }
.cmd-icon { width: 48px; height: 48px; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }
.cmd-name { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.6); }

.specs-section { background: var(--off); padding: 100px 48px; }
.specs-inner { max-width: 960px; margin: 0 auto; }
.section-label { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.section-h { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -.035em; line-height: 1.05; margin-bottom: 3.5rem; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; }
.spec-row { display: flex; justify-content: space-between; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.spec-key { font-size: .9rem; color: var(--grey); }
.spec-val { font-size: .9rem; font-weight: 700; text-align: right; }

/* ── Reviews ── */
.reviews-section { background: var(--white); padding: 100px 48px; }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; }
.reviews-score-big { font-size: 5rem; font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.reviews-stars-row { display: flex; align-items: center; gap: .5rem; margin: .5rem 0 .25rem; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .04em; }
.reviews-count { font-size: .85rem; color: var(--grey); }
.reviews-bars { display: flex; flex-direction: column; gap: .5rem; }
.r-bar { display: flex; align-items: center; gap: .75rem; font-size: .8rem; color: var(--grey); }
.r-bar-track { width: 160px; height: 4px; background: var(--border); border-radius: 99px; overflow: hidden; }
.r-bar-fill  { height: 100%; background: var(--gold); border-radius: 99px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.review-card { background: var(--white); padding: 2rem; }
.rc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.rc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--off); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; color: var(--grey); flex-shrink: 0; }
.rc-name  { font-size: .875rem; font-weight: 700; }
.rc-date  { font-size: .75rem; color: var(--grey); margin-top: .1rem; }
.rc-stars { color: var(--gold); font-size: .85rem; }
.rc-title { font-weight: 700; font-size: .95rem; margin-bottom: .5rem; }
.rc-body  { font-size: .875rem; color: var(--grey); line-height: 1.65; }
.rc-verified { font-size: .72rem; color: var(--green); margin-top: .75rem; font-weight: 600; }

/* ── FAQ ── */
.faq-section { background: var(--off); padding: 100px 48px; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 1.4rem 0; font-size: 1rem; font-weight: 600; color: var(--black); display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; font-family: var(--font); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--grey); transition: all .2s; }
.faq-item.open .faq-icon { background: var(--black); border-color: var(--black); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-body { padding-bottom: 1.4rem; font-size: .925rem; color: var(--grey); line-height: 1.75; }

/* ── CTA ── */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--black);
  padding: 120px 48px;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('/images/charger-1.jpg');
  background-size: cover; background-position: center;
  opacity: .18;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-tag { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; gap: .6rem; }
.cta-tag::before, .cta-tag::after { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
.cta-h { font-size: clamp(2.25rem, 4.5vw, 4rem); font-weight: 900; line-height: 1.02; letter-spacing: -.04em; color: var(--white); margin-bottom: 1.25rem; }
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,.5); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: .78rem; color: rgba(255,255,255,.3); margin-top: 1.25rem; }

/* ── App ── */
.app-section { background: var(--black); padding: 120px 48px; }
.app-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-text .section-label { color: rgba(255,255,255,.45); }
.app-text .section-h { color: var(--white); }
.app-sub { color: rgba(255,255,255,.6); font-size: 1.05rem; line-height: 1.7; margin: 1.25rem 0 2.5rem; max-width: 420px; }
.app-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.app-badge { height: 44px; width: auto; }
.app-visual { display: flex; justify-content: center; }
.app-phone-mock { width: 260px; background: #111; border-radius: 40px; border: 1.5px solid rgba(255,255,255,.15); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,.7); }
.app-phone-screen { width: 100%; display: block; border-radius: 0; }

/* ── Mobile menu ── */
.menu-btn { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-btn span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: all .25s; }
.site-header.dark .menu-btn { color: var(--white); }
.site-header.light .menu-btn { color: var(--black); }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--black); z-index: 199; padding: 1.5rem 24px 2rem; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav-link { font-size: 1.25rem; font-weight: 700; color: var(--white); text-decoration: none; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav-link:last-child { border-bottom: none; }

/* ── Contact ── */
.contact-section { background: #f5f5f7; padding: 96px 48px; text-align: center; }
.contact-inner { max-width: 600px; margin: 0 auto; }
.contact-sub { color: var(--gray); font-size: 1.05rem; margin: 1rem 0 2rem; }
.contact-email { display: inline-block; font-size: 1.25rem; font-weight: 600; color: var(--black); text-decoration: none; border-bottom: 2px solid var(--red); padding-bottom: 2px; transition: color .2s; }
.contact-email:hover { color: var(--red); }
.contact-apps { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

/* ── App badges ── */
.hero-app-links { display: flex; align-items: center; gap: .75rem; margin: 1.5rem 0 1rem; flex-wrap: wrap; }
.hero-app-label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); }
.app-badge-link { display: inline-flex; }
.app-badge { height: 36px; width: auto; }
.app-badge-dark { filter: none; }

/* ── Footer ── */
.site-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.08); padding: 2.5rem 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-size: .95rem; font-weight: 800; letter-spacing: -.02em; color: var(--white); }
.footer-logo em { color: var(--red); font-style: normal; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.7); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.2); }

/* ── Modal ── */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.85); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity .25s; }
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); border-radius: 20px; width: 100%; max-width: 940px; max-height: 92vh; overflow-y: auto; position: relative; }
.modal-close-btn { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--off); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: .95rem; display: flex; align-items: center; justify-content: center; z-index: 10; color: var(--grey); transition: all .2s; }
.modal-close-btn:hover { background: var(--border); color: var(--black); }
.modal-layout { display: grid; grid-template-columns: 1fr 1fr; }
.modal-imgs { background: var(--off); padding: 2rem; border-radius: 20px 0 0 0; }
.modal-main { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.modal-thumbs { display: flex; gap: .4rem; margin-top: .6rem; flex-wrap: wrap; }
.modal-thumbs img { width: 54px; height: 54px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: border-color .15s; }
.modal-thumbs img.active, .modal-thumbs img:hover { border-color: var(--red); }
.modal-info { padding: 2.5rem 2rem; display: flex; flex-direction: column; }
.modal-name { font-size: 1.4rem; font-weight: 900; letter-spacing: -.025em; margin-bottom: .25rem; }
.modal-tag  { font-size: .875rem; color: var(--grey); margin-bottom: 1rem; }
.modal-rating-row { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--grey); margin-bottom: 1.5rem; }
.modal-rating-row .stars { font-size: .9rem; }
.modal-price-row { display: flex; align-items: baseline; gap: .65rem; margin-bottom: 1.5rem; }
.modal-price   { font-size: 2.25rem; font-weight: 900; letter-spacing: -.03em; }
.modal-compare { font-size: 1rem; color: var(--grey); text-decoration: line-through; }
.modal-save    { font-size: .72rem; font-weight: 700; background: rgba(26,158,80,.1); color: var(--green); border: 1px solid rgba(26,158,80,.2); padding: .2rem .55rem; border-radius: 999px; }
.modal-features { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.modal-features li { font-size: .875rem; color: var(--grey); display: flex; gap: .5rem; align-items: flex-start; line-height: 1.5; }
.modal-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.modal-stock { font-size: .82rem; color: var(--green); font-weight: 700; margin-bottom: 1.25rem; }
.modal-actions { margin-top: auto; display: flex; flex-direction: column; gap: .65rem; }
.modal-trust-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .75rem; }
.modal-trust-item { font-size: .72rem; color: var(--grey); }
.modal-specs-section { padding: 1.5rem 2rem; border-top: 1px solid var(--border); }
.modal-specs-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); margin-bottom: .75rem; }
.modal-specs-table { width: 100%; border-collapse: collapse; }
.modal-specs-table tr { border-bottom: 1px solid var(--border); }
.modal-specs-table tr:last-child { border: none; }
.modal-specs-table td { padding: .55rem 0; font-size: .85rem; }
.modal-specs-table td:first-child { color: var(--grey); width: 45%; }
.modal-specs-table td:last-child { font-weight: 600; }

/* ── Toast ── */
.toast { position: fixed; bottom: 5.5rem; right: 1.5rem; background: var(--black); color: var(--white); border-radius: 10px; padding: .85rem 1.25rem; z-index: 600; font-size: .875rem; transform: translateY(12px); opacity: 0; transition: all .3s; box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .site-header, .sticky-bar { padding: 0 24px; }
  .hero-content { padding: 64px 24px 0; }
  .feature-body { padding: 60px 40px; }
  .specs-section, .reviews-section, .faq-section, .cta-section, .commands-section { padding: 80px 24px; }
  .commands-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer { padding: 2rem 24px; }
}
@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .mobile-menu { display: block; }
  .hero-bg::after { background: rgba(0,0,0,.65); }
  .hero-content { width: 100%; padding: 64px 24px 0; }
  .hero-title { font-size: 2.75rem; }
  .nav { display: none; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-img { min-height: 300px; }
  .feature-body { padding: 48px 24px; }
  .feature-title { font-size: 2rem; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; gap: 0; }
  .modal-layout { grid-template-columns: 1fr; }
  .modal-imgs { border-radius: 20px 20px 0 0; }
  .trust-strip-inner { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .trust-item { border: none; padding: .25rem 1rem; }
  .app-section { padding: 80px 24px; }
  .app-inner { grid-template-columns: 1fr; gap: 48px; }
  .app-phone-mock { width: 200px; }
  .app-visual { order: -1; }
  .contact-section { padding: 72px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
