/* ════════════════════════════════════════════
   Oxi Digital (oxipay.digital) — Stylesheet
   Primary #694AC4 · colored hero · overlay nav
   ════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #694AC4;
  --primary-dk: #553BA3;
  --primary-lt: #9B7FE0;
  --teal:       #2FD9C0;   /* hero eyebrow accent */
  --text:    #293742;
  --body:    #4C5A63;
  --muted:   #6E7C85;
  --paper:   #FFFFFF;
  --soft:    #F1EDFB;
  --soft2:   #FAF8FE;
  --line:    rgba(41, 55, 66, 0.10);
  --card-bd: rgba(41, 55, 66, 0.09);
  --shadow:  0 16px 44px rgba(41, 55, 66, 0.10);
  --purple-grad: linear-gradient(120deg, #694AC4 0%, #9B7FE0 100%);
  --hero-grad:   linear-gradient(125deg, #5A3CAB 0%, #694AC4 46%, #8A6FD6 100%);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--paper); color: var(--body); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); letter-spacing: -0.02em; }

/* ── NAV (overlay → solid on scroll) ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 88px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, height 0.3s, border-color 0.3s;
}
nav.scrolled { height: 74px; background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); box-shadow: 0 6px 24px rgba(41,55,66,0.06); }

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 50px; width: auto; display: block; transition: filter 0.3s, height 0.3s; filter: brightness(0) invert(1); }
nav.scrolled .logo img { filter: none; height: 44px; }

.nav-links { display: flex; align-items: center; gap: 2.4rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; text-decoration: none; transition: color 0.2s, opacity 0.2s; opacity: 0.92;
}
.nav-links a:hover { opacity: 1; }
nav.scrolled .nav-links a { color: var(--text); opacity: 0.85; }
nav.scrolled .nav-links a:hover { opacity: 1; color: var(--primary); }
nav.scrolled .nav-links a.active { color: var(--primary); opacity: 1; }

.nav-cta {
  background: #fff; color: var(--primary) !important; opacity: 1 !important;
  padding: 0.7rem 1.6rem; border-radius: 100px; font-weight: 700 !important;
  letter-spacing: 0.06em; transition: background 0.2s, color 0.2s, transform 0.15s !important;
}
.nav-cta:hover { transform: translateY(-1px); }
nav.scrolled .nav-cta { background: var(--primary); color: #fff !important; }
nav.scrolled .nav-cta:hover { background: var(--primary-dk); }

/* dropdown */
.dropdown > a { display: inline-flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.7; transition: transform 0.2s; }
.dropdown.open > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 290px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 0.6rem; opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s; z-index: 120;
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.dd-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.75rem 0.85rem; border-radius: 10px; text-decoration: none; opacity: 1 !important; text-transform: none !important; letter-spacing: 0 !important; transition: background 0.15s; }
.dd-item:hover { background: var(--soft); }
.dd-mark { width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0; background: rgba(105,74,196,0.1); display: flex; align-items: center; justify-content: center; }
.dd-mark svg { width: 22px; height: 22px; }
.dd-text-title { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.86rem; font-weight: 700; color: var(--text); }
.dd-text-sub { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 1px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; z-index: 130; }
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: background 0.3s; }
nav.scrolled .hamburger span { background: var(--text); }

/* ── BUTTONS ── */
.btn-solid { display: inline-block; padding: 0.9rem 2rem; background: var(--primary); color: #fff; font-weight: 600; font-size: 0.92rem; border-radius: 100px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-solid:hover { background: var(--primary-dk); transform: translateY(-2px); }
.btn-ghost { display: inline-block; padding: 0.9rem 2rem; background: transparent; color: var(--text); font-weight: 600; font-size: 0.92rem; border-radius: 100px; border: 1px solid var(--line); text-decoration: none; transition: border-color 0.2s, color 0.2s, transform 0.15s, background 0.2s; }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-white { display: inline-block; padding: 0.9rem 2rem; background: #fff; color: var(--primary); font-weight: 700; font-size: 0.92rem; border-radius: 100px; text-decoration: none; transition: transform 0.15s, background 0.2s; }
.btn-white:hover { background: var(--soft); transform: translateY(-2px); }

/* hero buttons inverted (over colored hero) */
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.12); }

/* ── HERO (full-bleed colored) ── */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 110px 5% 70px; background: var(--hero-grad); color: #fff; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; top: -10%; right: -5%; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 3rem; align-items: center; }
.hero-inner { max-width: 620px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.4rem; }
.hero-eyebrow::before { content: ''; width: 30px; height: 3px; background: var(--teal); border-radius: 3px; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5.2vw, 4.4rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; margin-bottom: 1.4rem; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 500px; line-height: 1.7; margin-bottom: 2.2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-points { display: flex; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,0.22); }
.hero-point { padding: 1.4rem 1.8rem 0 0; }
.hero-point + .hero-point { padding-left: 1.8rem; border-left: 1px solid rgba(255,255,255,0.22); }
.hero-point-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.05rem; color: #fff; }
.hero-point-sub { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }
.hero-visual { display: flex; justify-content: center; align-items: center; }

/* product hero motif */
.qr-motif { position: absolute; top: 50%; right: 2%; transform: translateY(-50%); width: 420px; height: 420px; pointer-events: none; z-index: 1; opacity: 0.9; }

/* ── APP MOCKUP (hero phone) ── */
.app-mock { width: 310px; background: #15121F; border-radius: 42px; padding: 12px; box-shadow: 0 45px 90px rgba(35,20,75,0.5); position: relative; transform: rotate(1.5deg); }
.app-mock::before { content: ''; position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #15121F; border-radius: 100px; z-index: 3; }
.am-screen { background: #F4F2FB; border-radius: 32px; overflow: hidden; }
.am-purple { background: var(--hero-grad); color: #fff; padding: 38px 18px 22px; }
.am-top { display: flex; align-items: center; gap: 0.6rem; }
.am-ava { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.22); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; }
.am-hi { line-height: 1.15; flex: 1; }
.am-hi span { font-size: 0.62rem; opacity: 0.8; }
.am-hi b { display: block; font-family: 'Plus Jakarta Sans'; font-size: 0.86rem; }
.am-icons { font-size: 0.85rem; opacity: 0.9; letter-spacing: 0.2rem; }
.am-bal-label { font-size: 0.6rem; opacity: 0.8; margin-top: 1.1rem; letter-spacing: 0.04em; }
.am-bal-amt { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.5rem; margin-top: 0.15rem; }
.am-bal-amt span { font-size: 0.9rem; opacity: 0.75; }
.am-pills { display: flex; gap: 0.5rem; margin-top: 0.9rem; }
.am-pills span { font-size: 0.6rem; font-weight: 600; background: rgba(255,255,255,0.2); padding: 0.28rem 0.7rem; border-radius: 100px; }
.am-actions { display: flex; align-items: center; justify-content: space-between; background: #fff; margin: -14px 14px 0; border-radius: 14px; padding: 0.8rem 1rem; box-shadow: 0 10px 24px rgba(40,20,80,0.12); position: relative; }
.am-act { font-size: 0.7rem; font-weight: 600; color: var(--text); }
.am-scan { width: 38px; height: 38px; border-radius: 50%; background: var(--text); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.am-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 14px 0; }
.am-tile { background: #fff; border-radius: 12px; padding: 0.8rem; box-shadow: 0 6px 16px rgba(40,20,80,0.06); }
.am-tile-h { font-size: 0.62rem; color: var(--muted); font-weight: 600; }
.am-tile-amt { font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 0.92rem; color: var(--text); margin-top: 0.3rem; }
.am-tile-sub { font-size: 0.58rem; color: var(--muted); margin-top: 0.2rem; }
.am-mini-card { height: 26px; border-radius: 6px; background: var(--purple-grad); margin: 0.4rem 0; }
.am-insight { display: flex; justify-content: space-between; align-items: center; gap: 8px; background: #fff; border-radius: 12px; padding: 0.8rem; margin: 12px 14px 0; box-shadow: 0 6px 16px rgba(40,20,80,0.06); }
.am-profit { text-align: right; }
.am-profit b { font-family: 'Plus Jakarta Sans'; font-size: 1.2rem; color: var(--primary); }
.am-profit span { display: block; font-size: 0.55rem; color: var(--muted); }
.am-nav { display: flex; justify-content: space-around; align-items: center; padding: 14px 0 18px; margin-top: 12px; }
.am-nav span { width: 22px; height: 22px; border-radius: 6px; background: rgba(105,74,196,0.14); }
.am-nav span.on { width: 56px; border-radius: 100px; background: var(--primary); }

/* ── SECTIONS ── */
section { padding: 100px 6%; }
.soft { background: var(--soft); }
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.9rem; }
.title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; line-height: 1.16; margin-bottom: 1rem; }
.sub { color: var(--muted); font-size: 1rem; max-width: 560px; line-height: 1.7; }
.accent { color: var(--primary); }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.card { background: #fff; border: 1px solid var(--card-bd); border-radius: 16px; padding: 2rem 1.8rem; box-shadow: var(--shadow); transition: transform 0.2s, border-color 0.2s; }
.card:hover { transform: translateY(-4px); border-color: rgba(105,74,196,0.45); }
.card-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(105,74,196,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; }
.card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.55rem; }
.card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

.info-card { background: #fff; border: 1px solid var(--card-bd); border-radius: 18px; padding: 2.2rem 2rem; box-shadow: var(--shadow); }
.info-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.2rem; }
.how-card-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); background: rgba(105,74,196,0.1); padding: 0.32rem 0.85rem; border-radius: 100px; margin-bottom: 1.4rem; }
.how-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.how-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.9rem; color: var(--body); line-height: 1.65; }
.how-list li strong { color: var(--text); font-weight: 600; }
.check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(105,74,196,0.14); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; margin-top: 2px; }

/* ── SPOTLIGHT ── */
.spotlight { margin-top: 3rem; border-radius: 24px; overflow: hidden; background: var(--purple-grad); color: #fff; display: grid; grid-template-columns: 1.2fr 1fr; position: relative; box-shadow: var(--shadow); }
.spotlight-text { padding: 3.2rem; }
.spotlight-badge { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); background: #fff; padding: 0.32rem 0.9rem; border-radius: 100px; margin-bottom: 1.3rem; }
.spotlight h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; margin-bottom: 0.9rem; }
.spotlight p { font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 1.6rem; max-width: 440px; }
.spotlight-chips { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 2rem; }
.chip { font-size: 0.76rem; font-weight: 600; color: #fff; border: 1px solid rgba(255,255,255,0.45); padding: 0.35rem 0.9rem; border-radius: 100px; }
.spotlight-visual { position: relative; display: flex; align-items: center; justify-content: center; padding: 2.5rem; }

/* ── MDR BARS ── */
.mdr-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4.5rem; align-items: center; }
.mdr-text p { color: var(--body); line-height: 1.75; margin-top: 1.2rem; }
.mdr-text strong { color: var(--text); }
.mdr-compare { display: flex; flex-direction: column; gap: 1.1rem; }
.mdr-bar { background: #fff; border: 1px solid var(--card-bd); border-radius: 14px; padding: 1.3rem 1.5rem; box-shadow: var(--shadow); }
.mdr-bar-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.7rem; }
.mdr-bar-label { font-size: 0.84rem; font-weight: 600; color: var(--text); }
.mdr-bar-value { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.2rem; color: var(--text); }
.mdr-track { height: 10px; background: rgba(41,55,66,0.07); border-radius: 100px; overflow: hidden; }
.mdr-fill { height: 100%; border-radius: 100px; }
.fill-market { width: 100%; background: linear-gradient(90deg, #f59e0b, #ef4444); }
.fill-oxi-low { width: 17%; background: var(--purple-grad); }
.fill-oxi-free { width: 4%; background: var(--purple-grad); }
.mdr-bar.highlight { border-color: var(--primary); }
.mdr-bar.highlight .mdr-bar-value { color: var(--primary); }

/* ── GRIDS ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.split-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* ── BANNER ── */
.banner { margin-top: 2.5rem; padding: 1.8rem 2.2rem; background: var(--purple-grad); color: #fff; border-radius: 18px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; box-shadow: var(--shadow); }
.banner h3 { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
.banner p { font-size: 0.88rem; color: rgba(255,255,255,0.9); }
.banner .btn-white { flex-shrink: 0; }

/* ── PHONE (simple, product/spotlight) ── */
.phone { width: 270px; height: 540px; margin: 0 auto; background: linear-gradient(165deg, #4E3A8F, #694AC4); border-radius: 38px; border: 6px solid rgba(255,255,255,0.5); box-shadow: 0 30px 70px rgba(41,55,66,0.28); padding: 1.6rem 1.3rem; position: relative; overflow: hidden; color: #fff; }
.phone::before { content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 90px; height: 18px; background: rgba(255,255,255,0.25); border-radius: 100px; }
.phone-balance-label { font-size: 0.62rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2rem; }
.phone-balance { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.7rem; margin-top: 0.2rem; }
.phone-qr { margin: 1.4rem auto 0; width: 150px; height: 150px; background: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.phone-scan { text-align: center; font-size: 0.68rem; color: #fff; opacity: 0.9; margin-top: 0.8rem; letter-spacing: 0.06em; }
.phone-row { margin-top: 1.2rem; padding: 0.75rem 0.9rem; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; display: flex; justify-content: space-between; font-size: 0.7rem; }
.phone-row span:last-child { font-weight: 700; }
.phone.small { width: 220px; height: 430px; padding: 1.3rem 1.1rem; }
.phone.small .phone-balance { font-size: 1.35rem; }
.phone.small .phone-qr { width: 120px; height: 120px; }

/* ── APP FEATURES ── */
.app-features { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 2.2rem; }
.app-feature { display: flex; gap: 1rem; align-items: flex-start; }
.app-feature-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; background: #fff; border: 1px solid var(--card-bd); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.app-feature h3 { font-size: 0.96rem; font-weight: 700; }
.app-feature p { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; line-height: 1.6; }
.store-btns { display: flex; gap: 0.9rem; margin-top: 2.2rem; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 0.7rem; background: var(--primary); color: #fff; text-decoration: none; padding: 0.65rem 1.3rem; border-radius: 12px; transition: background 0.2s; }
.store-btn:hover { background: var(--primary-dk); }
.store-btn .store-icon { font-size: 1.3rem; }
.store-small { font-size: 0.58rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.06em; }
.store-big { font-family: 'Plus Jakarta Sans'; font-size: 0.85rem; font-weight: 700; margin-top: -2px; }

/* ── SUPPORT / CONTACT ── */
.support-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4.5rem; align-items: start; }
.support-info p { color: var(--body); line-height: 1.75; margin-bottom: 2rem; }
.support-items { display: flex; flex-direction: column; gap: 1rem; }
.support-item { display: flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--card-bd); border-radius: 12px; padding: 1rem 1.2rem; box-shadow: var(--shadow); }
.support-item-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: rgba(105,74,196,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.support-item-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
.support-item-value { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-top: 0.1rem; }
.support-form { background: #fff; border: 1px solid var(--card-bd); border-radius: 18px; padding: 2.2rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; }
.fg label { font-size: 0.76rem; font-weight: 600; color: var(--muted); }
.fg input, .fg textarea, .fg select { font-family: 'Inter', sans-serif; font-size: 0.88rem; padding: 0.75rem 1rem; border: 1px solid rgba(41,55,66,0.14); border-radius: 10px; outline: none; width: 100%; resize: none; background: var(--soft2); color: var(--text); transition: border-color 0.2s; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--primary); }
.fg textarea { min-height: 100px; }
.form-submit { background: var(--primary); color: #fff; font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; padding: 0.9rem; border: none; border-radius: 100px; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--primary-dk); }

/* ── FOOTER ── */
footer { background: var(--soft); color: var(--body); padding: 3rem 6% 2rem; border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.footer-brand .logo { margin-bottom: 0.7rem; }
.footer-brand .logo img { height: 46px; }
.footer-brand p { font-size: 0.84rem; color: var(--muted); max-width: 300px; }
.footer-nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.84rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--primary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem; font-size: 0.78rem; color: var(--muted); }
.socials { display: flex; gap: 0.8rem; }
.socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; font-size: 0.8rem; transition: border-color 0.2s, color 0.2s; }
.socials a:hover { border-color: var(--primary); color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .app-mock { width: 280px; transform: none; }
}
@media (max-width: 980px) {
  .qr-motif { display: none; }
  .mdr-grid, .split, .split-wide, .support-grid, .spotlight { grid-template-columns: 1fr; }
  .mdr-grid, .split-wide, .support-grid { gap: 3rem; }
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 5%; height: 70px; }
  nav.scrolled { height: 64px; }
  .logo img, nav.scrolled .logo img { height: 38px; }
  .nav-links {
    display: none; position: fixed; top: 70px; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: flex-start; padding: 1.4rem 5% 1.8rem; gap: 1.2rem;
    border-bottom: 1px solid var(--line); box-shadow: 0 12px 30px rgba(41,55,66,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; opacity: 0.9; }
  .nav-links a.active { color: var(--primary) !important; }
  .nav-cta { background: var(--primary); color: #fff !important; }
  .hamburger { display: flex; }
  .hamburger span { background: #fff; }
  nav.scrolled .hamburger span, nav .nav-links.open ~ .hamburger span { background: var(--text); }
  .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: 0.4rem 0 0 0.5rem; min-width: 0; background: transparent; }
  .dropdown-menu::before { display: none; }
  .dropdown:not(.open) .dropdown-menu { display: none; }
  .dd-item { padding: 0.55rem 0; }
  section { padding: 70px 5%; }
  .hero { padding: 100px 5% 70px; min-height: auto; }
  .hero-points { flex-wrap: wrap; gap: 0; }
  .hero-point { padding: 1.2rem 1.4rem 0 0; }
  .hero-point + .hero-point { padding-left: 1.4rem; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .spotlight-text { padding: 2.2rem 1.6rem; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
