/* Lumibrain — Neural intelligence dark, warm amber-orange neon accent */

/* ── Fonts ───────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/poppins-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/poppins-900.woff2') format('woff2');
}

/* ── Tokens ──────────────────────────────────────────── */
:root {
  --accent:      #00e5ff;
  --accent-h:    #7209b7;
  --accent-glow: rgba(0, 229, 255, 0.22);
  --accent2:     #f72585;
  --bg:          #0a0a0f;
  --bg2:         #0f0f15;
  --surface:     #16161e;
  --surface2:    #1a1a24;
  --text:        #f8f8f2;
  --muted:       #9392aa;
  --border:      rgba(255,255,255,0.07);
  --border-glow: rgba(0, 229, 255, 0.2);
  --radius:      8px;
  --radius-lg:   14px;
  --header-h:    70px;
  --font-display:'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;
  --transition:  0.25s ease;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ── Layout ──────────────────────────────────────────── */
.container        { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 760px;  margin: 0 auto; padding: 0 1.5rem; }
.section          { padding: 5rem 0; }
.section-sm       { padding: 3rem 0; }

/* ── Typography ──────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.accent { color: var(--accent); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); opacity: 0.92; text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-h); box-shadow: 0 6px 28px var(--accent-glow); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm  { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-lg  { padding: 0.9rem 2rem;  font-size: 1.05rem; }

/* ── Header / Nav ────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(15,16,18,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  direction: ltr; /* keep logo-left, nav-right in both LTR and RTL */
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
.logo img { height: 40px; width: auto; }
.nav-toggle { display: none; }

/* Desktop nav — lives inside header-inner */
.site-nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-inline-start: auto;
}
.site-nav-desktop a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.site-nav-desktop a:hover { color: var(--accent); text-decoration: none; }

/* Mobile nav — lives outside header, hidden on desktop */
.site-nav { display: none; }

div.lang-switcher-mobile { display: none; }

.lang-switcher {
  display: flex;
  align-items: center;
  margin-inline-start: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px;
}
.lang-pill {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.65rem;
  border-radius: 16px;
  color: var(--text-muted, #aaa);
  transition: all var(--transition);
  text-decoration: none;
  min-width: 38px;
  text-align: center;
}
.lang-pill:hover { color: var(--text); }
.lang-active { background: var(--accent); color: #000; box-shadow: 0 0 8px var(--accent-glow); pointer-events: none; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

@media (max-width: 860px) {
  .site-nav-desktop { display: none; }
  .site-nav {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    z-index: 800;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-110%);
    visibility: hidden;
    transition: transform var(--transition), visibility var(--transition);
  }
  .site-nav a:not(.btn) { padding: 0.6rem 0; }
  .site-nav .btn { margin-top: 0.5rem; width: 100%; justify-content: center; }
  .nav-toggle:checked ~ .site-nav { transform: translateY(0); visibility: visible; }
  div.lang-switcher-mobile { display: flex; margin-inline-start: auto; margin-right: 1rem; }
  .nav-burger { display: flex; margin-inline-start: 0; }
  .header-inner { gap: 0.5rem; }
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(15,16,18,0.78) 0%, rgba(15,16,18,0.6) 40%, rgba(15,16,18,0.92) 100%),
    radial-gradient(ellipse 80% 70% at 60% 40%, rgba(0, 229, 255,0.14) 0%, transparent 65%),
    url('../img/image-1.png') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.015)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero h1 { margin-bottom: 0.75rem; }
.hero h1 .accent { display: block; text-shadow: 0 0 40px rgba(0, 229, 255,0.4); }
.hero-p { font-size: 1.15rem; max-width: 560px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  background: rgba(0, 229, 255,0.12);
  border: 1px solid rgba(0, 229, 255,0.3);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
}
.hero-price-amount {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-price-per { font-size: 0.85rem; color: var(--text); font-weight: 500; }
.hero-price-trial { font-size: 0.85rem; color: var(--accent2); font-weight: 600; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text); }
.stat-lbl { font-size: 0.8rem; color: var(--muted); margin-top: 0.1rem; }

/* ── Section Head ────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p  { max-width: 600px; margin: 0 auto; }
.form-section-head { text-align: left; margin-bottom: 2rem; }
.form-section-head h2 { margin-bottom: 0.5rem; }

/* ── Reveal ──────────────────────────────────────────── */
html.js .reveal         { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
html.js .reveal.in      { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Divider ─────────────────────────────────────────── */
hr.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--surface2) 30%, var(--surface2) 70%, transparent);
  margin: 0;
}

/* ── Showcase / Cards ────────────────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.showcase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.showcase-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 229, 255,0.08);
}
.showcase-card h3 { margin-bottom: 0.5rem; }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(0, 229, 255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  border: 1px solid rgba(0, 229, 255,0.15);
}
.card-icon svg { width: 22px; height: 22px; }

/* ── About Strip ─────────────────────────────────────── */
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-strip-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255,0.15);
  box-shadow: 0 0 40px rgba(0, 229, 255,0.08);
}
.about-strip-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 860px) {
  .about-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-strip-img { order: -1; }
  .about-strip-img img { height: 240px; }
}

/* ── Features Grid ───────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 4px 24px rgba(0, 229, 255,0.07);
}
.feature-card h3 { margin: 0.75rem 0 0.5rem; }

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: radial-gradient(ellipse 120% 180% at 50% 120%, rgba(0, 229, 255,0.18) 0%, transparent 65%),
              var(--surface);
  border: 1px solid rgba(0, 229, 255,0.18);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 229, 255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--text); margin-bottom: 0.75rem; position: relative; }
.cta-banner p  { color: var(--muted); margin-bottom: 2rem; position: relative; }


/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; margin: 0 auto; }
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
details.faq-item[open] { border-color: var(--border-glow); }
details.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.5rem 1.1rem; color: var(--muted); }

/* ── Page Hero ───────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse 100% 140% at 50% -10%, rgba(0, 229, 255,0.18) 0%, transparent 60%),
    linear-gradient(to bottom, var(--surface) 0%, var(--bg2) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .eyebrow { display: block; margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { color: var(--muted); font-size: 1.1rem; }

/* ── About page ──────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.value-card:hover { border-color: var(--border-glow); box-shadow: 0 4px 24px rgba(0, 229, 255,0.07); }
.value-card h3 { margin: 1rem 0 0.5rem; }
.milestones { display: flex; flex-direction: column; gap: 2rem; max-width: 720px; margin: 0 auto; position: relative; }
.milestones::before { content: ''; position: absolute; left: 56px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.milestone { display: flex; gap: 1.5rem; align-items: flex-start; }
.milestone-year {
  min-width: 48px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  padding-top: 0.3rem;
  text-align: right;
}
.milestone-dot {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
  box-shadow: 0 0 10px var(--accent-glow);
}
.milestone-body h4 { color: var(--text); margin-bottom: 0.25rem; }

/* ── Pricing ─────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: 1.5rem;
  margin-bottom: 4rem;
  justify-content: center;
}
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 229, 255,0.1);
}
.pricing-card.featured { border-color: var(--border-glow); }
.pricing-card .btn { align-self: center; }
.pricing-operator { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--text); }
.pricing-amount span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.pricing-trial { font-size: 0.85rem; color: var(--accent); margin: 0.4rem 0 1rem; }
.pricing-features { flex: 1; margin: 1.25rem 0; }
.pricing-features li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.pricing-features li::before { content: '✓'; color: var(--accent); flex-shrink: 0; font-weight: 700; }
.pricing-unsub { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; text-align: center; }
.pricing-unsub a { color: var(--accent); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.step-card h3 { margin-bottom: 0.5rem; }

/* ── Contact ─────────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--border-glow); }
.contact-card h3 { margin: 1rem 0 0.5rem; }
.contact-card-ico {
  width: 44px; height: 44px;
  background: rgba(0, 229, 255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(0, 229, 255,0.15);
}
.contact-card-ico svg { width: 20px; height: 20px; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }

/* ── Forms ───────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.65rem 0.9rem;
  width: 100%;
  transition: border-color var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-msg { margin-top: 0.75rem; font-size: 0.9rem; }
.form-msg.ok  { color: #36d68a; }
.form-msg.err { color: var(--accent); }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ── RTL form alignment ──────────────────────────────── */
[dir="rtl"] .form-group input[type="text"],
[dir="rtl"] .form-group textarea { direction: rtl; text-align: right; }
/* Email and phone stay fully LTR — no direction or alignment change */
[dir="rtl"] .form-group input[type="email"],
[dir="rtl"] .form-group input[type="tel"] { direction: ltr; text-align: left; }
/* Phone row stays LTR so prefix stays on the left */
[dir="rtl"] .phone-row { direction: ltr; }
[dir="rtl"] .form-group label { text-align: right; }
[dir="rtl"] .form-section-head { text-align: right; }
/* Signin card label stays centered in both directions */
[dir="rtl"] .signin-card .form-group label { text-align: center; }

/* ── Sign In ─────────────────────────────────────────── */
.signin-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 1.5rem 3rem;
  background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(0, 229, 255,0.08) 0%, transparent 70%), var(--bg);
}
.signin-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.signin-logo { margin: 0 auto 1.5rem; }
.signin-logo img { height: 80px; margin: 0 auto; }
.signin-card h1 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.signin-card > p { font-size: 0.9rem; margin-bottom: 1.75rem; }
.phone-row { display: flex; gap: 0.5rem; }
.phone-prefix {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0.75rem;
  white-space: nowrap;
  font-size: 0.9rem;
  color: var(--text);
  flex-shrink: 0;
}
.signin-card .form-group input { background: var(--bg2); }
.signin-disclaimer { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }
.signin-msg { margin-top: 0.75rem; font-size: 0.9rem; padding: 0.6rem 1rem; border-radius: 6px; display: none; }
.signin-msg.ok  { background: rgba(54,214,138,0.1); color: #36d68a; display: block; }
.signin-msg.err { background: rgba(0, 229, 255,0.1); color: var(--accent); display: block; }

/* ── Unsubscribe ─────────────────────────────────────── */
.unsub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.unsub-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition);
}
.unsub-card:hover { border-color: var(--border-glow); }
.unsub-card h3 { margin-bottom: 1rem; }
.unsub-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; align-items: center; padding: 0.8rem 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; font-size: 1rem; margin-top: 0.5rem; }
.unsub-part { display: flex; align-items: center; gap: 0.5rem; color: var(--text); white-space: nowrap; }
.unsub-part strong { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.unsub-part strong.keyword { color: var(--accent); font-family: monospace; font-size: 1.1rem; background: rgba(0,0,0,0.2); padding: 0.2rem 0.5rem; border-radius: 4px; text-transform: none; letter-spacing: normal; }
.refund-list { display: flex; flex-direction: column; gap: 0.75rem; }
.refund-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
.refund-item::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── Carrier Billing ─────────────────────────────────── */
.carrier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.carrier-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.carrier-card h3 { margin-bottom: 0.75rem; color: var(--accent); }

/* ── Legal ───────────────────────────────────────────── */
.legal-wrap { width: 100%; color: var(--muted); }
.legal-wrap h1, .legal-wrap h2, .legal-wrap h3, .legal-wrap h4, .legal-wrap h5 { color: var(--text); margin: 1.5rem 0 0.75rem; }
.legal-wrap h6 { color: var(--text); margin: 1rem 0 0.5rem; font-size: 1rem; }
.legal-wrap p, .legal-wrap li { margin-bottom: 0.75rem; line-height: 1.7; }
.legal-wrap ul, .legal-wrap ol { padding-left: 1.5rem; }
.legal-wrap a { color: var(--accent); }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo img { height: 36px; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; margin-bottom: 1rem; }
.footer-entity { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.footer-phone { margin-top: 0.75rem; font-size: 0.78rem; color: var(--muted); }
.footer-phone a { color: var(--accent); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--muted); font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-version { font-size: 0.72rem; }

/* ── 404 ─────────────────────────────────────────────── */
.not-found-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
}
.not-found-num { font-family: var(--font-display); font-size: clamp(6rem,20vw,12rem); font-weight: 900; color: var(--accent); opacity: 0.2; line-height: 1; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .milestones::before { left: 44px; }
  .milestone-year { min-width: 36px; }
}

/* Legals / Terms Page Styling */
.legals { padding: 8rem 0 4rem; color: var(--text-muted, #ccc); font-size: 0.95rem; line-height: 1.7; }
.legals h1 { font-size: 2.2rem; color: var(--text); margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.legals h6 { font-size: 1.1rem; color: var(--text); margin-top: 2.5rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.legals p { margin-bottom: 1.2rem; }
.legals strong, .legals span.operator-info { color: var(--accent); font-weight: 700; }
.legals a { color: var(--accent); text-decoration: underline; }
