/* =========================================================
   FinKariyer — Ana Stylesheet
   ========================================================= */

:root {
  --bg: #060b16;
  --bg-alt: #081020;
  --panel: #0d1526;
  --panel-alt: #101a2e;
  --panel-border: rgba(255, 255, 255, 0.08);
  --panel-border-strong: rgba(255, 255, 255, 0.14);

  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-faint: #64748b;

  --teal: #2dd4bf;
  --teal-light: #5eead4;
  --teal-dark: #0f9c8c;
  --blue: #38bdf8;
  --accent-grad: linear-gradient(135deg, #2dd4bf 0%, #22a5c9 100%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-glow: 0 0 0 1px rgba(45, 212, 191, 0.15), 0 20px 60px -20px rgba(45, 212, 191, 0.25);
  --shadow-card: 0 10px 30px -15px rgba(0, 0, 0, 0.6);

  --container: 1180px;
  --header-h: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(700px 500px at 85% 5%, rgba(45, 212, 191, 0.10), transparent 60%),
    radial-gradient(600px 500px at 10% 30%, rgba(56, 189, 248, 0.07), transparent 60%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-light);
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.25);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.eyebrow svg { width: 14px; height: 14px; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-head p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.02rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--teal-light), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; }

.btn-primary {
  background: var(--accent-grad);
  color: #04211d;
  box-shadow: 0 10px 25px -8px rgba(45, 212, 191, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(45, 212, 191, 0.7);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--panel-border-strong);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn-store:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn-store svg { width: 20px; height: 20px; }
.btn-store .store-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-store .store-text small { font-size: 0.68rem; color: var(--text-muted); }
.btn-store .store-text span { font-size: 0.9rem; font-weight: 600; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 11, 22, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--panel-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04211d;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 20px -6px rgba(45, 212, 191, 0.6);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}

.main-nav a:hover { color: var(--text); }

.main-nav a.active {
  color: var(--text);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent-grad);
  border-radius: 2px;
}

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown > a svg { width: 14px; height: 14px; transition: transform 0.18s ease; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: var(--panel-alt);
  border: 1px solid var(--panel-border-strong);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--panel-border-strong);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Mobile nav ---------- */

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--bg-alt);
  padding: 28px 24px;
  overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--panel-border);
  color: var(--text);
}

.mobile-nav .btn { margin-top: 24px; }

/* ---------- Hero ---------- */

.hero {
  padding: 76px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  margin-bottom: 20px;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-social-proof { display: flex; align-items: center; gap: 14px; }

.avatar-stack { display: flex; }
.avatar-stack img,
.avatar-stack .avatar-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -12px;
  object-fit: cover;
  background: var(--panel-alt);
}
.avatar-stack :first-child { margin-left: 0; }

.hero-social-proof span { font-size: 0.9rem; color: var(--text-muted); }
.hero-social-proof strong { color: var(--text); }

/* ---------- Phone mockup (built with CSS, not an image) ---------- */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.hero-visual .glow-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.22), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.mascot-float {
  position: absolute;
  right: -6%;
  bottom: -6%;
  width: 46%;
  max-width: 260px;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.phone {
  position: relative;
  z-index: 1;
  width: 300px;
  background: linear-gradient(160deg, #131d33, #0a1220);
  border-radius: 40px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glow), 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}

.phone-screen {
  background: #060c18;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.phone-notch .pill {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 90px;
  height: 16px;
  background: #060c18;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-body { padding: 6px 16px 16px; }

.phone-greeting { font-size: 0.92rem; font-weight: 700; margin-bottom: 2px; }
.phone-sub { font-size: 0.74rem; color: var(--text-muted); margin-bottom: 14px; }

.phone-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.phone-goal { display: flex; align-items: center; justify-content: space-between; }
.phone-goal .label { font-size: 0.66rem; color: var(--text-muted); margin-bottom: 4px; }
.phone-goal .value { font-size: 1.15rem; font-weight: 800; }
.phone-goal .value small { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }

.ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0% 60%, rgba(255, 255, 255, 0.08) 60% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ring::after {
  content: attr(data-pct);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0d1526;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-card .row-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  margin-bottom: 8px;
}
.phone-card .row-label span:first-child { font-weight: 700; }
.phone-card .row-label span:last-child { color: var(--text-muted); }

.progress-track {
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent-grad);
  border-radius: 4px;
}

.phone-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.phone-mini-tile {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
}
.phone-mini-tile svg { width: 16px; height: 16px; color: var(--teal-light); margin: 0 auto 6px; }
.phone-mini-tile span { font-size: 0.56rem; color: var(--text-muted); display: block; line-height: 1.2; }

.phone-upcoming .row-label { margin-bottom: 10px; }
.exam-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.exam-row .exam-name { font-size: 0.74rem; font-weight: 600; }
.exam-row .exam-date { font-size: 0.64rem; color: var(--text-muted); }
.exam-row .days-left {
  font-size: 0.62rem;
  background: rgba(45, 212, 191, 0.12);
  color: var(--teal-light);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.phone-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 12px; }

.phone-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 12px;
}
.phone-search svg { width: 14px; height: 14px; color: var(--text-faint); flex-shrink: 0; }
.phone-search span { font-size: 0.72rem; color: var(--text-faint); }

.phone-filter-row { display: flex; gap: 8px; margin-bottom: 12px; overflow: hidden; }
.phone-filter-chip {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  color: var(--text-muted);
  white-space: nowrap;
}
.phone-filter-chip.active { background: var(--accent-grad); color: #04211d; border-color: transparent; }

.phone-cat-list { display: flex; flex-direction: column; gap: 8px; }
.phone-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 10px 12px;
}
.phone-cat-row .cat-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(45, 212, 191, 0.12);
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-cat-row .cat-icon svg { width: 14px; height: 14px; }
.phone-cat-row .cat-text { flex-grow: 1; }
.phone-cat-row .cat-text strong { display: block; font-size: 0.72rem; font-weight: 700; }
.phone-cat-row .cat-text span { font-size: 0.6rem; color: var(--text-muted); }
.phone-cat-row > svg { width: 14px; height: 14px; color: var(--text-faint); flex-shrink: 0; }

.phone-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 10px 6px 4px;
  border-top: 1px solid var(--panel-border);
  margin-top: 4px;
}
.phone-tabbar div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.56rem;
  color: var(--text-faint);
}
.phone-tabbar svg { width: 16px; height: 16px; }
.phone-tabbar .tab-active { color: var(--teal-light); }

/* ---------- Feature grid ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.35);
  background: var(--panel-alt);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal-light);
}
.icon-box svg { width: 22px; height: 22px; }

.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Content pill / tag section ---------- */

.section-tag {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

/* ---------- Exam category cards (with link) ---------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.category-card:hover { transform: translateY(-4px); border-color: rgba(45, 212, 191, 0.3); }

.category-card h3 { font-size: 1rem; margin-bottom: 10px; }
.category-card p { color: var(--text-muted); font-size: 0.86rem; margin-bottom: 18px; min-height: 58px; }

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-light);
  font-size: 0.88rem;
  font-weight: 600;
}
.category-link svg { width: 15px; height: 15px; transition: transform 0.18s ease; }
.category-card:hover .category-link svg { transform: translateX(3px); }

/* ---------- Stats bar ---------- */

.stats-bar {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 34px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
  border-right: 1px solid var(--panel-border);
}
.stat-item:last-child { border-right: none; }

.stat-item .icon-box { margin-bottom: 0; width: 44px; height: 44px; }
.stat-item strong { display: block; font-size: 1.4rem; }
.stat-item span { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-alt) 100%);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.cta-banner .mascot-cta { width: 130px; flex-shrink: 0; }

.cta-banner h2 { font-size: 1.5rem; margin-bottom: 8px; }
.cta-banner p { color: var(--text-muted); font-size: 0.95rem; max-width: 460px; }

.cta-right { display: flex; align-items: center; gap: 20px; }

.qr-box {
  width: 84px;
  height: 84px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  flex-shrink: 0;
}

.cta-download-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-download-label strong { color: var(--teal-light); font-size: 0.95rem; }
.cta-download-label span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 90px;
  border-top: 1px solid var(--panel-border);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 14px 0 18px; max-width: 280px; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--panel-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.social-row a:hover { color: var(--teal-light); border-color: var(--teal); }
.social-row svg { width: 16px; height: 16px; }

.footer-col h4 { font-size: 0.9rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.18s ease; }
.footer-col a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid var(--panel-border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--text-muted); }
.footer-legal { display: flex; gap: 18px; }

/* ---------- Utility spacing ---------- */

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.mt-lg { margin-top: 60px; }

/* ---------- Badges ---------- */

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 212, 191, 0.1);
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .main-nav, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 20px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--panel-border); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--panel-border); padding-bottom: 20px; }
  .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .cta-banner .mascot-cta { margin: 0 auto; }
  .cta-right { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .feature-grid, .feature-grid.cols-4, .category-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--panel-border); padding-bottom: 18px; }
  .stat-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding: 40px 0 20px; }
  .phone { width: 260px; }
}
