/* ── VARIABLES ── */
:root {
  --white: #ffffff;
  --off: #f5f4f0;
  --off2: #edece8;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --light: #9a9a9a;
  --border: rgba(0,0,0,0.08);
  --border2: rgba(0,0,0,0.13);
  --green: #1a7a4a;
  --green-bg: #eaf5ee;
  --green-mid: #2db36e;
  --red: #c0392b;
  --red-bg: #fdecea;
  --apple: #0071e3;
  --apple-dark: #0058b0;
  --fraunces: 'Fraunces', Georgia, serif;
  --geist: 'Geist', system-ui, sans-serif;
  --r: 14px;
  --r-lg: 22px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: var(--geist); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(28px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { width: 28px; height: 28px; background: var(--text); border-radius: 7px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.nav-logo-mark svg { width: 16px; height: 16px; fill: white; }
.nav-logo-name { font-family: var(--fraunces); font-size: 17px; font-weight: 400; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); font-weight: 500; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: none; border: none; cursor: pointer; border-radius: var(--r);
}
.nav-hamburger span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 20px; border-radius: 980px; font-family: var(--geist); font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: all 0.2s; }
.btn-apple { background: var(--apple); color: white; }
.btn-apple:hover { background: var(--apple-dark); transform: scale(1.02); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.btn-outline:hover { background: var(--off); }

/* ── LAYOUT ── */
section { padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.section-title { font-family: var(--fraunces); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 18px; }
.section-title em { font-style: italic; }
.section-sub { font-size: 17px; color: var(--muted); font-weight: 300; line-height: 1.75; max-width: 560px; }

/* ── PAGE HERO (subpages) ── */
.page-hero { padding: 120px 0 64px; }
.page-hero .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.page-hero .section-sub { margin-top: 0; }

/* ── DEVICES BAND ── */
#devices { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; }
.devices-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; }
.devices-label { font-size: 13px; color: var(--muted); font-weight: 500; flex-shrink: 0; }
.devices-list { display: flex; gap: 10px; flex-wrap: wrap; }
.device-pill { display: flex; align-items: center; gap: 7px; background: white; border: 1px solid var(--border2); border-radius: 980px; padding: 7px 16px; font-size: 13px; font-weight: 500; }
.device-pill svg { width: 14px; height: 14px; fill: var(--text); }
.devices-rating { text-align: right; flex-shrink: 0; }
.dr-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.dr-label { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── HERO ── */
#hero { padding: 130px 48px 80px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-title { font-family: var(--fraunces); font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 300; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero-title em { font-style: italic; }
.hero-desc { font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; max-width: 420px; font-weight: 300; }
.hero-cta { display: flex; gap: 12px; align-items: center; margin-bottom: 48px; }
.hero-cta .btn { padding: 13px 26px; font-size: 15px; }
.hero-rating { display: flex; align-items: center; gap: 10px; }
.stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; }
.star-half { display: inline-block; clip-path: inset(0 50% 0 0); }
.rating-text { font-size: 13px; color: var(--muted); }
.rating-text strong { color: var(--text); }

/* ── PHONE MOCKUP ── */
.hero-phone { position: relative; display: flex; justify-content: center; }
.phone-frame { width: 260px; background: var(--text); border-radius: 44px; padding: 12px; box-shadow: 0 40px 100px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.1); position: relative; }
.phone-notch { width: 80px; height: 26px; background: var(--text); border-radius: 0 0 18px 18px; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 2; }
.phone-screen { background: var(--off); border-radius: 34px; overflow: hidden; height: 520px; display: flex; flex-direction: column; }
.phone-status { height: 44px; flex-shrink: 0; }
.phone-header { padding: 8px 18px 12px; }
.ph-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.ph-value { font-size: 26px; font-family: var(--fraunces); font-weight: 400; letter-spacing: -0.03em; color: var(--text); }
.ph-change { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-bg); padding: 2px 8px; border-radius: 6px; margin-top: 4px; }
.phone-chart { padding: 0 8px; height: 90px; flex-shrink: 0; }
.phone-segment { padding: 12px 18px 0; flex-shrink: 0; }
.ps-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--light); margin-bottom: 8px; }
.ps-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.ps-name { font-size: 11px; color: var(--muted); width: 52px; flex-shrink: 0; }
.ps-bar-track { flex: 1; height: 5px; background: var(--off2); border-radius: 3px; overflow: hidden; }
.ps-bar-fill { height: 100%; border-radius: 3px; }
.ps-pct { font-size: 11px; font-weight: 600; color: var(--text); width: 28px; text-align: right; }
.phone-positions { padding: 10px 18px; overflow: hidden; }
.pos-row { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); }
.pos-row:last-child { border-bottom: none; }
.pos-left { display: flex; align-items: center; gap: 8px; }
.pos-dot { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; letter-spacing: -0.03em; flex-shrink: 0; }
.pos-name { font-size: 12px; font-weight: 500; }
.pos-shares { font-size: 10px; color: var(--muted); }
.pos-val { font-size: 12px; font-weight: 600; }
.pos-chg { font-size: 10px; font-weight: 600; }
.float-left { position: absolute; left: -100px; top: 100px; background: white; border: 1px solid var(--border2); border-radius: 16px; padding: 14px 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); width: 140px; }
.float-right { position: absolute; right: -90px; bottom: 120px; background: white; border: 1px solid var(--border2); border-radius: 16px; padding: 14px 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); width: 130px; }
.fl-label { font-size: 10px; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.fl-val { font-size: 18px; font-family: var(--fraunces); font-weight: 400; color: var(--text); }
.fl-sub { font-size: 10px; color: var(--green); font-weight: 600; margin-top: 2px; }
.fl-devices { display: flex; gap: 5px; margin-top: 6px; }
.fl-dev { font-size: 10px; background: var(--off); border-radius: 5px; padding: 2px 6px; color: var(--muted); }

/* ── FEATURES ── */
#features { background: white; }
.features-top { margin-bottom: 64px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; }
.feat { background: white; padding: 36px 32px; }
.feat-icon { width: 44px; height: 44px; background: var(--off); border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 20px; }
.feat-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.feat-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.features-upcoming { display: flex; align-items: center; gap: 28px; border: 1px solid var(--border); border-radius: 32px; padding: 36px 40px; margin: 48px auto 0; background: var(--off); max-width: 560px; }
.feat-upcoming-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); background: var(--green-bg); border-radius: 20px; padding: 3px 10px; margin-bottom: 12px; }

/* ── PRIVACY ── */
#privacy { background: var(--text); color: white; }
#privacy .section-sub { color: rgba(255,255,255,0.55); }
#privacy .section-eyebrow { color: rgba(255,255,255,0.4); }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.privacy-points { display: flex; flex-direction: column; gap: 28px; }
.priv-point { display: flex; gap: 18px; }
.priv-num { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); flex-shrink: 0; margin-top: 2px; }
.priv-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.priv-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; }
.privacy-visual { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); padding: 40px; display: flex; flex-direction: column; gap: 16px; }
.pv-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); }
.pv-left { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.pv-icon { font-size: 16px; }
.pv-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 6px; }
.badge-green { background: rgba(45,179,110,0.15); color: #4ddb8e; }
.badge-red { background: rgba(255,80,80,0.12); color: #ff7070; }
.icloud-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; text-align: center; }
.icloud-logo { font-size: 28px; margin-bottom: 8px; }
.icloud-label { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.icloud-sub { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── PRICING ── */
#pricing { background: var(--off); }
.pricing-top { text-align: center; margin-bottom: 56px; }
.pricing-top .section-sub { margin: 0 auto; text-align: center; }
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan { background: white; border: 1px solid var(--border2); border-radius: var(--r-lg); padding: 36px; display: flex; flex-direction: column; }
.plan.featured { background: var(--text); color: white; border-color: transparent; }
.plan-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px; border-radius: 980px; background: var(--off); color: var(--muted); margin-bottom: 20px; }
.plan.featured .plan-badge { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.plan-name { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.plan.featured .plan-name { color: rgba(255,255,255,0.6); }
.plan-price { font-family: var(--fraunces); font-size: 3rem; font-weight: 300; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.plan-price sup { font-size: 1.4rem; vertical-align: super; }
.plan-period { font-size: 13px; color: var(--muted); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.plan.featured .plan-period { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.1); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.4; }
.plan-features li::before { content: '✓'; font-weight: 700; font-size: 12px; color: var(--green-mid); flex-shrink: 0; margin-top: 1px; width: 12px; text-align: center; }
.plan.featured .plan-features li { color: rgba(255,255,255,0.8); }
.plan.featured .plan-features li::before { color: #4ddb8e; }
.plan-features li.off { color: var(--light); }
.plan-features li.off::before { content: '–'; color: var(--light); }
.plan-btn { width: 100%; text-align: center; justify-content: center; border-radius: 980px; padding: 13px; font-size: 15px; }

/* ── REVIEWS ── */
#reviews { background: white; }
.reviews-top { text-align: center; margin-bottom: 32px; }
.reviews-top .section-sub { margin: 0 auto; text-align: center; }
.reviews-score { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: 980px; padding: 8px 18px; width: fit-content; margin: 0 auto 32px; }
.rs-star-row { color: #f5a623; font-size: 12px; letter-spacing: 2px; opacity: 0.85; }
.rs-count { font-size: 12px; color: var(--light); }
.rs-divider { width: 1px; height: 12px; background: var(--border); flex-shrink: 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { background: var(--off); border-radius: var(--r-lg); padding: 28px; }
.rv-stars { color: #f5a623; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.rv-title { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.rv-text { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 18px; }
.rv-author { font-size: 13px; color: var(--light); }

/* ── CTA FINAL ── */
#cta-final { background: var(--off); border-top: 1px solid var(--border); padding: 100px 0; }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 0 48px; }
.cta-inner .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.cta-inner .section-sub { margin: 0 auto 40px; text-align: center; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 2px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: 48px; }
.faq-item { background: white; }
.faq-question { width: 100%; text-align: left; padding: 22px 28px; font-family: var(--geist); font-size: 15px; font-weight: 500; color: var(--text); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background 0.2s; }
.faq-question:hover { background: var(--off); }
.faq-chevron { font-size: 18px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 28px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 12px 28px 22px; }
.faq-answer p { font-size: 15px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.faq-answer a { color: var(--apple); border-bottom: 1px solid rgba(0,113,227,0.25); }

/* ── IMPORT ── */
.import-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; margin: 48px 0; }
.import-step { background: white; padding: 36px 32px; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--text); color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.step-title { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.import-brokers { margin-top: 64px; }
.import-format { margin-top: 64px; }
.import-format-title { font-family: var(--fraunces); font-size: 1.8rem; font-weight: 300; letter-spacing: -0.02em; margin: 8px 0 16px; }
.import-format-desc { font-size: 15px; color: var(--muted); line-height: 1.75; max-width: 600px; margin-bottom: 32px; }
.csv-table-wrap { overflow-x: auto; border: 1px solid var(--border2); border-radius: var(--r-lg); margin-bottom: 20px; }
.csv-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.csv-table thead { background: var(--off); }
.csv-table th { padding: 12px 20px; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border2); white-space: nowrap; }
.csv-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); font-family: 'Courier New', monospace; color: var(--text); white-space: nowrap; }
.csv-table tbody tr:last-child td { border-bottom: none; }
.csv-table tbody tr:hover { background: var(--off); }
.import-format-note { font-size: 14px; color: var(--muted); line-height: 1.7; }
.import-format-note code { font-family: 'Courier New', monospace; background: var(--off2); border: 1px solid var(--border2); padding: 2px 6px; border-radius: 4px; font-size: 13px; color: var(--text); }
.import-format-note a { color: var(--apple); border-bottom: 1px solid rgba(0,113,227,0.25); }
.csv-table .col-optional { color: var(--light); }
.col-optional-label { color: var(--light); font-style: italic; }
/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding-bottom: 40px; }
.contact-form { background: var(--off); border-radius: var(--r-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 8px; }
.req { color: var(--red); font-size: 11px; vertical-align: super; line-height: 0; }
.form-input { width: 100%; background: white; border: 1px solid var(--border2); border-radius: 10px; padding: 12px 16px; font-family: var(--geist); font-size: 15px; color: var(--text); outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--apple); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { appearance: none; cursor: pointer; }
.cf-turnstile { margin-bottom: 16px; width: fit-content; margin-left: auto; margin-right: auto; }
.form-submit { width: 100%; justify-content: center; border-radius: 10px; padding: 14px; font-size: 15px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--off); border-radius: var(--r-lg); padding: 28px; }
.contact-card-icon { font-size: 24px; margin-bottom: 12px; }
.contact-card-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.contact-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.contact-card-desc a { color: var(--apple); }
.form-success { display: none; text-align: center; padding: 64px 40px; background: var(--off); border: 1px solid var(--border2); border-radius: var(--r-lg); }
.form-success-icon { width: 56px; height: 56px; background: var(--green-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--green); }
.form-success-icon svg { width: 26px; height: 26px; }
.form-success-title { font-family: var(--fraunces); font-size: 1.6rem; font-weight: 300; letter-spacing: -0.02em; margin-bottom: 10px; }
.form-success-desc { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 340px; margin: 0 auto; }

/* ── PRIVACY PAGE ── */
.privacy-content { max-width: 760px; padding-bottom: 100px; }
.privacy-content h2 { font-family: var(--fraunces); font-size: 1.6rem; font-weight: 300; letter-spacing: -0.02em; margin: 48px 0 16px; }
.privacy-content h2:first-of-type { margin-top: 0; }
.privacy-content p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.privacy-content ul { padding-left: 20px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.privacy-content ul li { font-size: 16px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.privacy-content a { color: var(--apple); border-bottom: 1px solid rgba(0,113,227,0.25); }
.privacy-updated { display: inline-block; font-size: 13px; color: var(--light); background: var(--off); border-radius: 6px; padding: 4px 12px; margin-bottom: 40px; }

/* ── FOOTER ── */
footer { background: var(--text); color: white; padding: 56px 0 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.footer-logo { font-family: var(--fraunces); font-size: 20px; font-weight: 300; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); max-width: 220px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-col h3 { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-copy a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-copy a:hover { color: white; }
.footer-reddit { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-reddit:hover { color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  #hero { grid-template-columns: 1fr; padding: 110px 24px 60px; gap: 60px; }
  .hero-phone { justify-content: center; }
  .float-left, .float-right { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards, .reviews-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .import-steps { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .devices-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .container { padding: 0 24px; }
  section { padding: 64px 0; }
  .cta-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 60px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links a { font-size: 16px; padding: 14px 24px; }
}
