/* ═══════════════════════════════════════════
   LumeContent — Public / Landing CSS
   Theme: Deep Violet + Electric Yellow
═══════════════════════════════════════════ */

:root {
  --bg:      #07071a;
  --bg2:     #0f0e2b;
  --bg3:     #181736;
  --bg4:     #201f47;
  --violet:  #7856ff;
  --violet-l:#9d80f8;
  --yellow:  #ffd60a;
  --yellow-d:#e6c009;
  --text:    #f0edff;
  --muted:   rgba(240,237,255,.52);
  --border:  rgba(120,86,255,.16);
  --green:   #22c55e;
  --red:     #f43f5e;
  --amber:   #f59e0b;
  --cyan:    #06d6f0;
  --radius:  8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Bebas Neue', impact, sans-serif; letter-spacing: .03em; line-height: .92; }
.display { font-size: clamp(3.5rem, 7vw, 7rem); }
.heading  { font-size: clamp(2.2rem, 4vw, 4.5rem); }
.subhead  { font-size: 1.6rem; font-family: 'Bebas Neue', sans-serif; }
.text-violet { color: var(--violet-l); }
.text-yellow { color: var(--yellow); }
.text-muted  { color: var(--muted); }
.text-outline { -webkit-text-stroke: 2px rgba(240,237,255,.35); color: transparent; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: .45rem; padding: .6rem 1.4rem; border-radius: var(--radius); font-size: .88rem; font-weight: 700; cursor: pointer; border: none; transition: all .18s; font-family: inherit; white-space: nowrap; text-decoration: none; }
.btn-violet  { background: var(--violet); color: #fff; }
.btn-violet:hover { background: #6644ee; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(120,86,255,.3); }
.btn-yellow  { background: var(--yellow); color: var(--bg); font-weight: 800; }
.btn-yellow:hover { background: var(--yellow-d); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--violet-l); color: var(--violet-l); }
.btn-ghost   { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--text); }
.btn-lg  { padding: .85rem 2rem; font-size: .96rem; }
.btn-sm  { padding: .38rem .85rem; font-size: .78rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ── FORMS ── */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .35rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); padding: .65rem .9rem;
  font-family: inherit; font-size: .88rem; outline: none; transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--violet); }
.form-select option { background: var(--bg2); }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-hint  { font-size: .74rem; color: var(--muted); margin-top: .25rem; }
.form-error { font-size: .8rem; color: var(--red); margin-top: .25rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── ALERTS ── */
.alert { padding: .8rem 1.1rem; border-radius: var(--radius); font-size: .85rem; margin-bottom: 1rem; }
.alert-error   { background: rgba(244,63,94,.1);  border: 1px solid rgba(244,63,94,.25);  color: #f87171; }
.alert-success { background: rgba(34,197,94,.1);  border: 1px solid rgba(34,197,94,.25);  color: #34d399; }
.alert-info    { background: rgba(120,86,255,.1); border: 1px solid rgba(120,86,255,.22); color: var(--violet-l); }
.alert-warn    { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.22); color: #fbbf24; }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; gap: .25rem; padding: .18rem .55rem; border-radius: 3px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.badge-violet  { background: rgba(120,86,255,.12); color: var(--violet-l); }
.badge-yellow  { background: rgba(255,214,10,.1);  color: var(--yellow); }
.badge-green   { background: rgba(34,197,94,.1);   color: var(--green); }
.badge-red     { background: rgba(244,63,94,.1);   color: var(--red); }
.badge-free    { background: rgba(6,214,240,.1);   color: var(--cyan); border: 1px solid rgba(6,214,240,.2); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(7,7,26,.88); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.75rem; letter-spacing: .06em; color: var(--violet-l); }
.nav-logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: .82rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--violet-l); }
.nav-actions { display: flex; gap: .7rem; align-items: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1.1fr .9fr;
  align-items: center; gap: 3rem; padding: 7rem 3rem 5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(120,86,255,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: 25%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,214,10,.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,214,10,.08); border: 1px solid rgba(255,214,10,.2);
  border-radius: 3px; padding: .28rem .75rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 1.3rem;
}
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.3 } }
.hero-desc { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--muted); max-width: 460px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2rem; }
.ai-pill-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.ai-pill { font-size: .7rem; font-weight: 600; padding: .22rem .65rem; border-radius: 20px; border: 1px solid var(--border); color: var(--muted); }
.ai-pill.free { border-color: rgba(6,214,240,.25); color: var(--cyan); }

/* ── HERO MOCKUP ── */
.hero-visual { position: relative; }
.dash-mock {
  background: var(--bg2); border: 1px solid rgba(120,86,255,.22);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(120,86,255,.08);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
  transition: transform .5s;
}
.dash-mock:hover { transform: perspective(900px) rotateY(-2deg) rotateX(1deg); }
.dash-bar { background: var(--bg3); padding: .8rem 1rem; display: flex; align-items: center; gap: .45rem; border-bottom: 1px solid var(--border); }
.wdot { width: 9px; height: 9px; border-radius: 50%; }
.wd-r { background: #ff5f57; } .wd-y { background: #ffbd2e; } .wd-g { background: #28c840; }
.dash-bar-lbl { font-size: .65rem; color: rgba(240,237,255,.25); margin-left: .4rem; font-family: 'DM Mono', monospace; }
.dash-inner { padding: 1rem; }
.dash-sec-lbl { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(240,237,255,.28); margin-bottom: .6rem; }
.post-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: .75rem; }
.pm { background: var(--bg3); border: 1px solid rgba(120,86,255,.08); border-radius: 6px; padding: .6rem .65rem; }
.pm.hl { border-color: rgba(255,214,10,.22); background: rgba(255,214,10,.04); }
.pm-tag { font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; margin-bottom: .3rem; }
.pm p { font-size: .62rem; color: rgba(240,237,255,.5); line-height: 1.4; }
.pm-icons { display: flex; gap: 3px; margin-top: .4rem; }
.mi { width: 13px; height: 13px; border-radius: 3px; background: rgba(240,237,255,.07); display: flex; align-items: center; justify-content: center; font-size: 6px; }
.dash-prog { background: var(--bg3); border-radius: 6px; padding: .6rem .8rem; display: flex; align-items: center; gap: .6rem; margin-top: .4rem; }
.dp-lbl { font-size: .62rem; color: rgba(240,237,255,.4); white-space: nowrap; }
.dp-track { flex: 1; height: 3px; background: rgba(255,255,255,.07); border-radius: 2px; }
.dp-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg,var(--violet),var(--yellow)); }
.dp-pct { font-size: .62rem; color: var(--yellow); white-space: nowrap; font-family: 'DM Mono', monospace; }
.float-badge {
  position: absolute; font-size: .68rem; font-weight: 700; padding: .32rem .8rem;
  border-radius: 20px; display: flex; align-items: center; gap: .32rem; white-space: nowrap;
}
.fb-top { top: -13px; right: 22px; background: var(--yellow); color: var(--bg); box-shadow: 0 6px 20px rgba(255,214,10,.35); }
.fb-bot { bottom: 15px; left: -20px; background: var(--bg3); color: var(--text); border: 1px solid rgba(120,86,255,.25); box-shadow: 0 8px 24px rgba(0,0,0,.4); }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; padding: .85rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(120,86,255,.02); }
.ticker { display: flex; gap: 2.5rem; animation: tick 24s linear infinite; width: max-content; }
.tick-item { font-family: 'Bebas Neue', sans-serif; font-size: .95rem; letter-spacing: .14em; color: rgba(120,86,255,.3); white-space: nowrap; display: flex; align-items: center; gap: .9rem; }
.tick-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,214,10,.2); }
@keyframes tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTION BASE ── */
.section { padding: 6rem 3rem; }
.section-dark { background: var(--bg2); }
.sec-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); margin-bottom: .8rem; }
.sec-title { margin-bottom: .9rem; }
.sec-sub { font-size: .96rem; font-weight: 300; color: var(--muted); max-width: 500px; line-height: 1.72; margin-bottom: 3.2rem; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.step-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; transition: border-color .2s, transform .2s; }
.step-card:hover { border-color: rgba(120,86,255,.3); transform: translateY(-3px); }
.step-num { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,214,10,.3); background: rgba(255,214,10,.07); display: flex; align-items: center; justify-content: center; font-family: 'DM Mono', monospace; font-size: .82rem; color: var(--yellow); margin-bottom: 1.2rem; }
.step-card h3 { font-size: 1.5rem; letter-spacing: .04em; color: var(--text); margin-bottom: .5rem; }
.step-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ── PROVIDERS ── */
.prov-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: .85rem; }
.prov-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.1rem; transition: border-color .2s, transform .15s; }
.prov-card:hover { border-color: rgba(120,86,255,.3); transform: translateY(-2px); }
.prov-card.free-prov { border-color: rgba(6,214,240,.18); }
.prov-icon { width: 40px; height: 40px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: .9rem; }
.prov-card h3 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.prov-card p { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.free-label { display: inline-block; background: rgba(6,214,240,.1); color: var(--cyan); font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .12rem .45rem; border-radius: 3px; border: 1px solid rgba(6,214,240,.2); margin-bottom: .5rem; }

/* ── FEATURES ── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.feat-card { background: var(--bg); padding: 1.8rem; transition: background .2s; }
.feat-card:hover { background: var(--bg2); }
.feat-icon { width: 42px; height: 42px; border-radius: var(--radius); background: rgba(120,86,255,.08); border: 1px solid rgba(120,86,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1.1rem; }
.feat-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .45rem; }
.feat-card p { font-size: .84rem; color: var(--muted); line-height: 1.62; }

/* ── PRICING ── */
.price-toggle { display: flex; align-items: center; gap: .9rem; margin-bottom: 2.5rem; }
.toggle-lbl { font-size: .84rem; color: var(--muted); }
.toggle-lbl.active { color: var(--yellow); font-weight: 700; }
.toggle-switch { width: 42px; height: 22px; border-radius: 11px; background: rgba(120,86,255,.15); border: 1px solid rgba(120,86,255,.25); cursor: pointer; position: relative; flex-shrink: 0; }
.toggle-knob { width: 16px; height: 16px; border-radius: 50%; background: var(--violet); position: absolute; top: 2px; left: 2px; transition: transform .2s; }
.save-pill { background: rgba(255,214,10,.1); border: 1px solid rgba(255,214,10,.2); color: var(--yellow); font-size: .7rem; font-weight: 700; padding: .2rem .55rem; border-radius: 20px; }
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.price-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem 1.5rem; position: relative; transition: transform .2s, border-color .2s; }
.price-card:hover { transform: translateY(-3px); }
.price-card.featured { border-color: rgba(120,86,255,.4); background: linear-gradient(160deg,rgba(120,86,255,.08) 0%,var(--bg2) 60%); }
.pop-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--violet); color: #fff; font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: .28rem .85rem; border-radius: 20px; white-space: nowrap; }
.plan-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .06em; color: var(--text); margin-bottom: .2rem; }
.plan-tagline { font-size: .78rem; color: var(--muted); margin-bottom: 1.3rem; }
.price-val { font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem; line-height: 1; color: var(--text); }
.price-val sup { font-size: 1.4rem; vertical-align: super; }
.price-period { font-size: .76rem; color: var(--muted); margin-bottom: 1.5rem; }
.price-feats { list-style: none; margin-bottom: 1.8rem; }
.price-feats li { font-size: .83rem; color: rgba(240,237,255,.72); padding: .4rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: .55rem; line-height: 1.45; }
.price-feats li::before { content: '✓'; color: var(--yellow); font-size: .76rem; font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.price-feats li.dim { color: rgba(240,237,255,.25); }
.price-feats li.dim::before { content: '—'; color: rgba(240,237,255,.18); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 1.6rem; transition: border-color .2s; }
.testi-card:hover { border-color: rgba(120,86,255,.25); }
.stars { color: var(--yellow); font-size: .68rem; letter-spacing: .1em; margin-bottom: .8rem; }
.testi-quote { font-size: .89rem; line-height: 1.7; color: rgba(240,237,255,.78); font-style: italic; margin-bottom: 1.3rem; }
.testi-author { display: flex; align-items: center; gap: .7rem; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .76rem; font-weight: 700; flex-shrink: 0; }
.testi-author strong { display: block; font-size: .82rem; font-weight: 700; }
.testi-author span { font-size: .74rem; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band {
  margin: 0 3rem 6rem;
  background: linear-gradient(135deg, var(--violet) 0%, rgba(255,214,10,.6) 100%);
  border-radius: 16px; padding: 4.5rem 4rem;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem;
}
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem,4vw,4.2rem); line-height: .9; letter-spacing: .02em; color: #fff; }
.cta-band p  { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: .7rem; line-height: 1.6; }
.cta-side { display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; white-space: nowrap; }
.btn-dark { background: var(--bg); color: var(--yellow); border: none; }
.btn-dark:hover { background: var(--bg2); }
.cta-note { font-size: .74rem; color: rgba(255,255,255,.6); }

/* ── LOGOS BAR ── */
.logos-bar { padding: 2.5rem 3rem; text-align: center; }
.logos-bar p { font-size: .72rem; color: rgba(240,237,255,.22); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.4rem; }
.logos-row { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: .07em; color: rgba(240,237,255,.14); transition: color .2s; cursor: default; }
.logo-name:hover { color: rgba(240,237,255,.35); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 3rem 3rem 2rem; display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 2rem; }
.foot-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .06em; color: var(--violet-l); display: block; margin-bottom: .7rem; }
.foot-logo span { color: var(--yellow); }
.foot-brand p { font-size: .83rem; color: var(--muted); line-height: 1.65; max-width: 230px; }
.foot-col h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin-bottom: .9rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.foot-col ul a { font-size: .83rem; color: var(--muted); transition: color .2s; }
.foot-col ul a:hover { color: var(--violet-l); }
.foot-bottom { margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: .75rem; color: rgba(240,237,255,.25); grid-column: 1/-1; }

/* ── AUTH CARD ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1rem; background: var(--bg); }
.auth-card { width: 100%; max-width: 420px; }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo .lname { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: .07em; color: var(--violet-l); }
.auth-logo .lname span { color: var(--yellow); }
.auth-logo p { font-size: .85rem; color: var(--muted); }
.auth-box { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.auth-box h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: .3rem; }
.auth-box p.sub { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.auth-divider { text-align: center; font-size: .78rem; color: var(--muted); margin: 1.2rem 0; position: relative; }
.auth-divider::before,.auth-divider::after { content:''; position:absolute; top:50%; width:42%; height:1px; background:var(--border); }
.auth-divider::before { left:0; } .auth-divider::after { right:0; }
.auth-link-row { text-align: center; margin-top: 1.2rem; font-size: .83rem; color: var(--muted); }
.auth-link-row a { color: var(--violet-l); }
.auth-link-row a:hover { text-decoration: underline; }

/* ── PASSWORD STRENGTH ── */
.strength-bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,.07); margin-top: .4rem; overflow: hidden; }
.strength-fill { height: 100%; border-radius: 2px; transition: width .3s, background .3s; width: 0; }

/* ── SCROLL FADE ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .section { padding: 4rem 1.2rem; }
  .price-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .cta-band { margin: 0 1.2rem 4rem; padding: 2.5rem 1.5rem; }
  footer { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
