/* FivePrayer — Homepage styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #F4F2FA;
  --bg-elev: #EDEBF3;
  --bg-card: #ffffff;
  --fg: #323232;
  --fg-muted: #5F5F5F;
  --fg-dim: #8C8C8C;
  --accent: #289491;
  --accent-deep: #003231;
  --accent-soft: #D6E5E5;
  --accent-2: #CF9F02;
  --line: rgba(50,50,50,0.08);
  --line-strong: rgba(50,50,50,0.16);

  --font-sans: 'Nunito', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --sec-pad: 112px;
  --gap: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.section { padding: var(--sec-pad) 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.display {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: var(--accent-deep);
}
.h1 { font-size: clamp(56px, 8.5vw, 120px); }
.h2 { font-size: clamp(36px, 4.5vw, 64px); }
.h3 { font-size: clamp(24px, 2.5vw, 36px); }
.lead {
  font-size: 18px; line-height: 1.55;
  color: var(--fg-muted);
  max-width: 56ch;
  font-weight: 500;
  text-wrap: pretty;
}
.mono { font-family: var(--font-mono); letter-spacing: -0.02em; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 700; font-size: 15px;
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-deep);
  color: var(--bg-card);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--fg);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-elev); }

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: 1280px; margin: 0 auto;
  gap: 24px;
}
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 600; color: var(--fg-muted); }
.nav-links a { transition: color 0.15s; }
.nav-links a:hover { color: var(--fg); }

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--accent-deep);
}
.logo img { border-radius: 7px; }

/* ─── Hero ─── */
.hero-section {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.store-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 54px;
  padding: 0 18px;
  background: var(--accent-deep); color: #fff;
  border-radius: 12px;
  transition: transform 0.15s, filter 0.15s;
  line-height: 1;
}
.store-btn:hover { transform: translateY(-1px); filter: brightness(1.1); }
.store-btn-icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.store-btn-icon svg {
  width: 100%; height: 100%; display: block;
}
.store-btn-label {
  display: inline-flex; flex-direction: column;
  line-height: 1.05; text-align: left;
  gap: 2px;
}
.store-btn-label small {
  font-size: 9px; opacity: 0.72; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.store-btn-label strong {
  font-size: 14px; font-weight: 800;
}

.countdown-card {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  max-width: 520px;
  box-shadow: 0 0 24px rgba(0,50,49,0.06);
}
.countdown-label {
  font-size: 13px; color: var(--fg-muted); font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.countdown-label .prayer-name { font-weight: 800; color: var(--accent-deep); }
.countdown-time {
  font-size: 44px; font-weight: 800; margin-top: 6px; line-height: 1;
  letter-spacing: -0.03em;
}
.countdown-time .h { color: var(--fg); }
.countdown-time .m { color: var(--accent); }
.countdown-sub {
  font-size: 12px; color: var(--fg-muted); margin-top: 6px;
  display: flex; align-items: center; gap: 6px;
}
.countdown-ring {
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
}
.countdown-ring-inner {
  position: absolute; width: 62px; height: 62px; border-radius: 50%;
  background: var(--bg-card);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800; color: var(--accent);
}

.hero-stats {
  display: flex; gap: 36px; margin-top: 40px;
  font-size: 13px; color: var(--fg-muted); font-weight: 600;
  flex-wrap: wrap;
}
.hero-stats strong { color: var(--accent-deep); font-weight: 800; }

.dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px 2px color-mix(in oklab, var(--accent) 60%, transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── iOS Device Mockup ─── */
.phone-wrap {
  display: flex; justify-content: center; align-items: center;
  min-height: 620px;
}
.phone-shadow {
  filter: drop-shadow(0 40px 80px rgba(0,50,49,0.25));
  transform: scale(0.82) rotate(-3deg);
  transform-origin: center;
}
.phone {
  width: 402px; height: 874px;
  border-radius: 48px; overflow: hidden;
  position: relative;
  background: #F2F2F7;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.12);
  font-family: -apple-system, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.phone-island {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 126px; height: 37px; border-radius: 24px; background: #000; z-index: 50;
}
.phone-home-indicator {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 60;
  height: 34px; display: flex; justify-content: center; align-items: flex-end;
  padding-bottom: 8px; pointer-events: none;
}
.phone-home-indicator > div {
  width: 139px; height: 5px; border-radius: 100px;
  background: rgba(0,0,0,0.25);
}
.phone-statusbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  font-family: -apple-system, "SF Pro", system-ui;
  font-weight: 590; font-size: 17px; color: #000;
}
.phone-statusbar-icons { display: flex; align-items: center; gap: 7px; }

.phone-screen {
  height: 100%;
  background: #F4F2FA;
  font-family: "Nunito", -apple-system, system-ui, sans-serif;
  color: #323232;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 62px 16px 0;
}
.phone-screen-tree {
  position: absolute; top: 0; right: 0; width: 100%; opacity: 0.25; pointer-events: none;
}

.phone-header-row {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 2;
}
.phone-logo-row { display: flex; align-items: center; gap: 8px; }
.phone-logo-row img { border-radius: 6px; }
.phone-logo-row span {
  font-size: 18px; font-weight: 800; color: #003231; letter-spacing: -0.01em;
}
.phone-chips { display: flex; gap: 6px; }
.phone-chip {
  height: 28px; border-radius: 999px; padding: 0 10px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 8px rgba(0,0,0,0.04);
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: #003231;
}

.phone-prayer-card {
  margin-top: 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.04);
  position: relative; z-index: 2;
}
.phone-prayer-card .current-label {
  font-size: 14px; color: #5F5F5F; font-weight: 500;
  display: flex; justify-content: center; align-items: center; gap: 8px;
}
.phone-prayer-card .current-label b { font-size: 18px; font-weight: 800; color: #003231; }
.phone-prayer-card .remaining {
  margin-top: 12px; font-size: 56px; font-weight: 800; letter-spacing: -0.02em; line-height: 1;
}
.phone-prayer-card .remaining .h { color: #323232; }
.phone-prayer-card .remaining .m { color: #003231; }
.phone-prayer-card .streak-text {
  margin-top: 10px; font-size: 12px; color: #5F5F5F;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.phone-prayer-card .prayed-btn {
  margin-top: 14px; width: 100%; padding: 16px;
  background: #003231; color: #fff; border-radius: 999px;
  font-weight: 700; font-size: 15px; border: 0;
}

.phone-widgets {
  margin-top: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  position: relative; z-index: 2;
}
.phone-widget {
  height: 60px; border-radius: 16px;
  background: rgba(255,255,255,0.7);
  padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 0 8px rgba(0,0,0,0.04);
}
.phone-widget small { font-size: 11px; color: #5F5F5F; font-weight: 500; display: block; }
.phone-widget strong { font-size: 16px; font-weight: 800; color: #323232; margin-top: 1px; }
.phone-widget-icon {
  width: 28px; height: 28px; border-radius: 8px; background: #D6E5E5;
  display: grid; place-items: center; font-size: 14px;
}

.phone-today-list {
  margin-top: 16px; flex: 1;
  background: rgba(255,255,255,0.9);
  border-radius: 20px 20px 0 0;
  padding: 16px;
  position: relative; z-index: 2;
}
.phone-today-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.phone-today-header .date { font-size: 15px; font-weight: 800; color: #003231; }
.phone-today-header .count { font-size: 10px; color: #8C8C8C; font-weight: 600; }

.prayer-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 12px;
  margin-bottom: 8px;
}
.prayer-row.done { background: #F0F3F5; }
.prayer-row.current { background: #D6E5E5; }
.prayer-row.upcoming { background: #F4F2FA; }
.prayer-row-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center; font-size: 14px;
  background: #EDEBF3;
}
.prayer-row.done .prayer-row-icon { background: #D6E5E5; }
.prayer-row.current .prayer-row-icon { background: #289491; }
.prayer-row-name { flex: 1; font-size: 15px; font-weight: 700; color: #323232; }
.prayer-row.done .prayer-row-name { color: #5F5F5F; }
.prayer-row.current .prayer-row-name { color: #003231; }
.prayer-row-time { font-size: 13px; font-weight: 700; color: #323232; }
.prayer-row.done .prayer-row-time { color: #5F5F5F; }
.prayer-row.current .prayer-row-time { color: #003231; }
.prayer-row-badge {
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800;
}
.prayer-row.done .prayer-row-badge { background: #289491; color: #fff; }

.phone-tabbar {
  display: flex; justify-content: space-around;
  background: #fff;
  padding: 10px 16px 28px;
  border-top: 1px solid #EDEBF3;
  position: relative; z-index: 3;
}
.phone-tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: #B9B9B9; font-size: 10px; font-weight: 700;
}
.phone-tab.active { color: #289491; }
.phone-tab-dot { width: 22px; height: 22px; border-radius: 6px; background: #E6E6E6; }
.phone-tab.active .phone-tab-dot { background: #289491; }

/* ─── LiveDemo ─── */
.demo-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}
/* ─── City Search (global worldwide search) ─── */
.city-search-wrap {
  position: relative;
  margin-bottom: 22px;
  max-width: 560px;
}
.city-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.city-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(40, 148, 145, 0.12);
}
.city-search-icon {
  color: var(--fg-muted);
  flex-shrink: 0;
}
.city-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
  font-family: inherit;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.city-search input::placeholder {
  color: var(--fg-dim);
  font-weight: 500;
}
.city-search-hint {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  color: var(--fg-muted);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
}
.city-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 50, 49, 0.14), 0 2px 8px rgba(0,0,0,0.04);
  z-index: 30;
  max-height: 340px;
  overflow-y: auto;
  display: none;
}
.city-search-results.open { display: block; }
.city-result {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.1s;
}
.city-result:last-child { border-bottom: 0; }
.city-result:hover,
.city-result.highlighted {
  background: var(--accent-soft);
}
.city-result-flag {
  font-size: 22px;
  line-height: 1;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.city-result-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.city-result-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.city-result-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.city-result-arrow {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.1s;
  flex-shrink: 0;
}
.city-result:hover .city-result-arrow,
.city-result.highlighted .city-result-arrow {
  opacity: 1;
}

.chip-row {
  display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; align-items: center;
}
.chip {
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 12px; font-weight: 600;
  background: transparent; color: var(--fg-muted);
  transition: all 0.15s;
}
.chip:hover { color: var(--fg); }
.chip.active {
  background: var(--accent-deep);
  color: var(--bg-card);
  border-color: var(--accent-deep);
}
.method-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-deep);
  font-size: 12px; font-weight: 700;
}
.method-pill-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 0 24px rgba(0,50,49,0.04);
}
.demo-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; flex-wrap: wrap; gap: 8px;
}
.demo-card-head .now {
  font-size: 12px; font-weight: 700; color: var(--fg-muted); letter-spacing: 0.08em;
}
.demo-card-head .loc {
  font-size: 12px; font-weight: 700; color: var(--fg-muted);
}
.times-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.time-cell {
  padding: 20px 16px; border-radius: 16px;
  background: var(--bg-elev);
  border: 1px solid transparent;
}
.time-cell.next {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.time-cell.done { opacity: 0.72; }
.time-cell .name {
  font-size: 22px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--fg);
}
.time-cell.next .name { color: var(--accent-deep); }
.time-cell .time {
  font-size: 18px; margin-top: 8px; font-weight: 700; color: var(--fg-muted);
}
.time-cell.next .time { color: var(--accent-deep); }
.time-cell .status {
  font-size: 10px; font-weight: 700; color: var(--fg-dim);
  margin-top: 6px; letter-spacing: 0.1em;
}
.time-cell.next .status { color: var(--accent); }

.demo-progress {
  margin-top: 24px;
}
.demo-progress-bar {
  height: 6px; border-radius: 3px; background: var(--bg-elev);
  position: relative; overflow: hidden;
}
.demo-progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--accent); border-radius: 3px;
}
.demo-progress-labels {
  display: flex; justify-content: space-between;
  margin-top: 10px; font-size: 11px; color: var(--fg-dim);
  font-weight: 700; letter-spacing: 0.08em;
}

.loc-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--fg-muted); font-weight: 600;
  margin-top: 10px;
}
.loc-status button {
  text-decoration: underline; color: var(--accent); cursor: pointer;
  font-size: 12px; font-weight: 700;
}

/* ─── Features ─── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--line-strong); }
.feature-visual {
  height: 110px; border-radius: 14px;
  background: var(--bg-elev);
  display: grid; place-items: center;
  overflow: hidden; position: relative;
}
.feature-title {
  font-size: 22px; font-weight: 800; letter-spacing: -0.015em;
  line-height: 1.15; margin-top: 8px; color: var(--accent-deep);
}
.feature-body {
  color: var(--fg-muted); font-size: 15px; margin-top: 10px;
  flex: 1; font-weight: 500;
}

/* ─── App section (simplified) ─── */
.app-section {
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.app-section-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.app-section .phone-shadow {
  transform: scale(0.75) rotate(2deg);
}

/* ─── Testimonials ─── */
.quotes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap);
}
.quote-card { padding: 36px; }
.quote-text {
  font-size: 22px; line-height: 1.35; letter-spacing: -0.01em;
  font-weight: 600; color: var(--accent-deep);
}
.quote-author {
  margin-top: 24px; display: flex; align-items: center; gap: 12px;
}
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--bg-card); font-weight: 800; font-size: 14px;
}
.quote-name { font-size: 14px; font-weight: 700; }
.quote-meta { font-size: 12px; color: var(--fg-muted); font-weight: 500; }

/* ─── FAQ ─── */
details.faq {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
details.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--accent-deep);
  gap: 24px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-weight: 400;
  font-size: 28px; color: var(--fg-muted);
  transition: transform 0.3s;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .faq-body {
  padding-top: 14px;
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 64ch;
  font-weight: 500;
}

/* ─── Download CTA ─── */
.cta-section {
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section .store-buttons {
  justify-content: center;
  margin: 36px auto 0;
}
.cta-requirements {
  font-size: 11px; color: var(--fg-dim);
  margin-top: 24px;
  font-weight: 700; letter-spacing: 0.1em;
}

/* ─── Decoration ─── */
.tree-deco {
  position: absolute; top: 0; right: 0;
  width: 640px; max-width: 55%;
  height: 100%;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  background: var(--bg-elev);
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.site-footer-brand p {
  font-size: 14px; color: var(--fg-muted); margin-top: 12px; max-width: 300px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-deep);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  font-size: 14px; color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent-deep); }

.site-footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--fg-muted); font-weight: 600;
}
.footer-social {
  display: flex; gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: background 0.15s, border-color 0.15s;
}
.footer-social a:hover { background: var(--bg-card); border-color: var(--accent); color: var(--accent); }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  :root { --sec-pad: 72px; }
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr !important; }
  .phone-wrap { min-height: auto; margin-top: 24px; }
  .app-section-grid { grid-template-columns: 1fr !important; }
  .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .times-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .quotes-grid { grid-template-columns: 1fr !important; }
  .site-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px; }
}
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; gap: 12px; }
  .features-grid { grid-template-columns: 1fr !important; }
  .site-footer-grid { grid-template-columns: 1fr !important; }
  .nav-cta-ghost { display: none; }
  .hero-section { padding: 32px 0 56px; }
  .phone-shadow { transform: scale(0.7) rotate(-3deg); }
  .countdown-card { grid-template-columns: 1fr; gap: 16px; }
  .countdown-ring { justify-self: end; }
  .store-btn { padding: 10px 16px; }
  .store-btn-label strong { font-size: 13px; }
  .demo-card { padding: 20px; }
  .time-cell { padding: 14px 10px; }
  .time-cell .name { font-size: 16px; }
  .time-cell .time { font-size: 14px; }
  .card { padding: 24px; }
  details.faq summary { font-size: 18px; }
  .quote-text { font-size: 18px; }
}
