/* ============================================================
   FreeMail.com — Main Stylesheet
   Concept: Bold, clean, modern — consumer + SMB email
   ============================================================ */

:root {
  --purple:        #0ea5e9;
  --purple-dark:   #0284c7;
  --purple-light:  #38bdf8;
  --purple-pale:   #f0f9ff;
  --green:         #10b981;
  --green-dark:    #059669;
  --green-pale:    #ecfdf5;
  --dark:          #0f172a;
  --dark-2:        #1e293b;
  --slate:         #475569;
  --muted:         #94a3b8;
  --border:        #e2e8f0;
  --bg:            #f8fafc;
  --white:         #ffffff;
  --radius-sm:     8px;
  --radius:        16px;
  --radius-lg:     24px;
  --shadow:        0 2px 12px rgba(0,0,0,.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,.1);
  --shadow-purple: 0 8px 32px rgba(14,165,233,.25);
  --t:             .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY UTILS ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tag-purple { background: var(--purple-pale); color: var(--purple); }
.tag-green  { background: var(--green-pale);  color: var(--green-dark); }

h2.headline {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--dark);
}
h2.headline span { color: var(--purple); }
.subline {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 560px;
}
.center { text-align: center; }
.center .subline { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn-purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(124,58,237,.35);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--slate);
}
.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.btn-white-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  border-color: var(--white);
  color: var(--purple);
}
.btn-white:hover {
  background: var(--purple-pale);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }

/* ── TOPBAR ── */
.topbar {
  background: var(--purple);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  text-align: center;
  padding: 10px 24px;
  font-weight: 500;
}
.topbar a { color: #d8b4fe; text-decoration: underline; }
.topbar strong { color: var(--white); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--purple);
}
.navbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo img { height: 38px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color var(--t);
  position: relative;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a.active { color: var(--white); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-end { display: flex; align-items: center; gap: 10px; }
.nav-hamburger { display: none; border: none; background: none; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(160deg, #faf5ff 0%, #f0fdf4 60%, #f8fafc 100%);
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px 6px 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.hero-pill-badge {
  background: var(--purple);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--purple);
  background: linear-gradient(135deg, var(--purple) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .green-word {
  font-style: normal;
  color: var(--green);
  -webkit-text-fill-color: var(--green);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: .95rem;
  outline: none;
  color: var(--dark);
  font-family: inherit;
}
.hero-form input:focus { border-color: var(--purple); }
.hero-form button {
  padding: 14px 24px;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: var(--t);
}
.hero-form button:hover { background: var(--purple-dark); }
.hero-perks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--slate);
  font-weight: 500;
}
.hero-perk svg { color: var(--green); }

/* Hero right panel */
.hero-panel {
  position: relative;
}
.panel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 72px rgba(0,0,0,.12);
  overflow: hidden;
}
.panel-topbar {
  background: var(--dark);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.panel-dots { display: flex; gap: 6px; }
.panel-dots span { width: 10px; height: 10px; border-radius: 50%; }
.panel-tab-bar {
  background: #1e293b;
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.panel-tab {
  padding: 8px 18px;
  font-size: .78rem;
  color: #64748b;
  font-weight: 500;
  cursor: pointer;
}
.panel-tab.active {
  color: var(--white);
  background: rgba(124,58,237,.3);
  border-bottom: 2px solid var(--purple-light);
}

.mail-list { padding: 0; }
.mail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
  transition: background var(--t);
  cursor: pointer;
}
.mail-item:hover { background: #faf5ff; }
.mail-item.unread { background: var(--purple-pale); }
.mail-avatar2 {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.mail-body { flex: 1; min-width: 0; }
.mail-sender { font-size: .82rem; font-weight: 700; color: var(--dark); }
.mail-preview-text { font-size: .76rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mail-right { text-align: right; flex-shrink: 0; }
.mail-time2 { font-size: .72rem; color: var(--muted); margin-bottom: 4px; }
.unread-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); margin-left: auto; }

.panel-footer {
  padding: 16px 20px;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-footer-stat { font-size: .75rem; color: var(--muted); }
.panel-footer-stat strong { color: var(--dark); font-weight: 700; }
.encrypted-badge2 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* Floating chips on hero */
.hero-chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }
.hero-chip-1 { top: -16px; right: -20px; animation-delay: 0s; }
.hero-chip-2 { bottom: 40px; left: -28px; animation-delay: 1.5s; }
.chip-icon { font-size: 1.1rem; }

/* ── NUMBERS STRIP ── */
.numbers-strip {
  background: var(--dark);
  padding: 52px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.number-item {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.number-item:last-child { border-right: none; }
.number-val {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.number-val .accent { color: var(--purple-light); }
.number-label {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── PLANS RIBBON ── */
.plans-ribbon {
  padding: 100px 0;
  background: var(--white);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.plan-tile {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--t);
  position: relative;
  background: var(--white);
}
.plan-tile:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
}
.plan-tile.featured {
  border-color: var(--purple);
  background: linear-gradient(160deg, var(--purple-pale) 0%, var(--white) 100%);
}
.plan-chip {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 14px;
  border-radius: 999px;
}
.plan-tier { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.plan-amount { font-size: 2.2rem; font-weight: 900; letter-spacing: -.03em; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.plan-amount sup { font-size: 1rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.plan-per { font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.plan-summary { font-size: .85rem; color: var(--slate); margin: 14px 0 20px; line-height: 1.5; min-height: 52px; border-top: 1px solid var(--border); padding-top: 14px; }
.plan-feats { margin-bottom: 24px; }
.plan-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--slate);
  padding: 5px 0;
}
.plan-feat .ck { color: var(--green); font-weight: 700; }
.plan-feat .cx { color: var(--muted); }

/* ── FEATURES BENTO GRID ── */
.bento-section {
  padding: 100px 0;
  background: var(--bg);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-top: 56px;
}
.bento-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--t);
}
.bento-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-full { grid-column: span 3; }
.bento-card.dark {
  background: var(--dark);
  border-color: var(--dark-2);
  color: var(--white);
}
.bento-card.purple {
  background: linear-gradient(135deg, var(--purple) 0%, #6d28d9 100%);
  border-color: transparent;
  color: var(--white);
}
.bento-icon {
  font-size: 2rem;
  margin-bottom: 18px;
}
.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.bento-card p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--slate);
}
.bento-card.dark p { color: var(--muted); }
.bento-card.purple p { color: rgba(255,255,255,.8); }

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.feature-tag {
  background: var(--purple-pale);
  color: var(--purple);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.bento-card.dark .feature-tag {
  background: rgba(255,255,255,.08);
  color: var(--purple-light);
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: var(--white);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.how-steps { display: flex; flex-direction: column; gap: 28px; }
.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.how-step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple-pale);
  color: var(--purple);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-step.active .how-step-num { background: var(--purple); color: var(--white); }
.how-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.how-step p { font-size: .88rem; color: var(--slate); line-height: 1.6; }

.how-visual {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  font-family: 'Courier New', monospace;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.terminal-bar span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.t-code {
  font-size: .82rem;
  line-height: 2;
  color: #94a3b8;
}
.t-code .t-cmd { color: #60a5fa; }
.t-code .t-str { color: #34d399; }
.t-code .t-key { color: #f472b6; }
.t-code .t-val { color: #fbbf24; }
.t-code .t-comment { color: #475569; }
.t-code .t-ok { color: #10b981; }
.t-cursor {
  display: inline-block;
  width: 8px; height: 1.2em;
  background: #60a5fa;
  vertical-align: middle;
  animation: blink .9s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* ── SECURITY FEATURES ── */
.security-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 100%);
  color: var(--white);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.sec-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--t);
}
.sec-card:hover {
  background: rgba(124,58,237,.15);
  border-color: rgba(124,58,237,.4);
  transform: translateY(-3px);
}
.sec-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.sec-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.sec-card p { font-size: .86rem; color: #94a3b8; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg);
}
.testimonials-masonry {
  columns: 3;
  column-gap: 22px;
  margin-top: 56px;
}
.tcard {
  break-inside: avoid;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 22px;
  border: 1px solid var(--border);
}
.tcard-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.tcard-text { font-size: .92rem; color: var(--dark-2); line-height: 1.68; margin-bottom: 20px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
  color: var(--white);
}
.tcard-name { font-weight: 700; font-size: .9rem; }
.tcard-role { font-size: .78rem; color: var(--muted); }

/* ── COMPARISON ── */
.comparison-section {
  padding: 100px 0;
  background: var(--white);
}
.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 50px;
}
.comp-table th {
  padding: 18px 22px;
  background: var(--dark);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-align: center;
}
.comp-table th:first-child { text-align: left; background: var(--dark-2); }
.comp-table th.hi { background: var(--purple); }
.comp-table td {
  padding: 14px 22px;
  text-align: center;
  font-size: .88rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.comp-table td:first-child { text-align: left; font-weight: 600; color: var(--dark); }
.comp-table td.hi { background: var(--purple-pale); color: var(--purple); font-weight: 700; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: #f8fafc; }
.comp-table tr:hover td.hi { background: #ede9fe; }
.ck2 { color: var(--green); font-size: 1.1rem; }
.cx2 { color: #ef4444; }
.pt2 { color: #f59e0b; font-size: .85rem; }

/* ── FAQ ── */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  padding: 18px 20px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-q:hover { color: var(--purple); }
.faq-toggle { font-size: 1.3rem; flex-shrink: 0; color: var(--purple); transition: transform var(--t); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.65;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--purple) 0%, #6d28d9 50%, #4c1d95 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -.025em; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-below { margin-top: 20px; font-size: .82rem; color: rgba(255,255,255,.45); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.f-brand img { height: 34px; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(.9); }
.f-brand p { font-size: .85rem; color: #64748b; line-height: 1.65; max-width: 270px; }
.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social a {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: #94a3b8;
  transition: var(--t);
}
.f-social a:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }
.f-col h6 { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 16px; }
.f-col ul li { margin-bottom: 9px; }
.f-col ul li a { font-size: .85rem; color: #64748b; transition: color var(--t); }
.f-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: #475569; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: #475569; transition: color var(--t); }
.footer-bottom-links a:hover { color: #94a3b8; }
.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.footer-badge {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: .72rem;
  color: #64748b;
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.span-2 { grid-column: span 1; }
  .bento-card.span-full { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .panel-card { display: none; }
  .how-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .testimonials-masonry { columns: 1; }
  .faq-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; flex-direction: column; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-2, .bento-card.span-full { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .comparison-section { overflow-x: auto; }
  /* Mobile-specific improvements */
  .nav-end { display: none; }
  .nav-mobile-cta { display: inline-flex; }
  .hero { padding: 56px 0 44px; }
  .hero-chip { display: none; }
  .numbers-strip { padding: 36px 0; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-ribbon, .bento-section, .how-section, .security-section,
  .testimonials-section, .faq-section, .cta-section { padding: 64px 0; }
  .how-visual { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-form { flex-direction: column; border-radius: var(--radius-sm); overflow: visible; }
  .hero-form input { border-right: 2px solid var(--border); border-radius: var(--radius-sm); }
  .hero-form button { border-radius: var(--radius-sm); }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  /* Small phone improvements */
  .topbar { font-size: .76rem; padding: 8px 16px; }
  .container { padding: 0 16px; }
  .number-val { font-size: 2rem; }
  .how-visual { font-size: .76rem; line-height: 1.9; }
  .plans-ribbon, .bento-section, .how-section, .security-section,
  .testimonials-section, .faq-section, .cta-section { padding: 48px 0; }
  .nav-mobile-cta { display: none; }
}

