:root {
  --blue-top: #47c1fb;
  --blue-primary: #0553ad;
  --blue-deep: #012951;
  --blue-header: #00103e;
  --lavender: #5e75f1;
  --surface: #ffffff;
  --canvas: #f4f7fd;
  --muted: #64748b;
  --border: #dde6f2;
  --shadow: 0 18px 50px rgba(1, 41, 81, 0.12);
  --radius: 18px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--blue-deep);
  background: var(--canvas);
  line-height: 1.6;
  -webkit-tap-highlight-color: rgba(5, 83, 173, 0.12);
  touch-action: manipulation;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}

.app-main {
  overflow-x: clip;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: Montserrat, Inter, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(71, 193, 251, 0.14);
  color: var(--blue-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  user-select: none;
}

.btn-lg {
  min-height: 54px;
  padding: 1rem 1.35rem;
  font-size: 1rem;
  border-radius: 16px;
}

.btn-block {
  width: 100%;
}

.btn:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), #0a6fd4);
  color: #fff;
  box-shadow: 0 12px 28px rgba(5, 83, 173, 0.28);
}

.btn-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--blue-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(221, 230, 242, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  color: var(--blue-header);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(5, 83, 173, 0.08);
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--blue-header);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.site-header.open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobil tam ekran menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 16, 62, 0.62);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-menu.is-open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 320px);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: calc(1rem + env(safe-area-inset-top, 0px)) 1.15rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #00103e 0%, #0a2463 100%);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 1.15rem;
}

.mobile-menu-head img {
  border-radius: 10px;
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.02rem;
  font-weight: 600;
}

.mobile-menu-panel a:active {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-cta {
  margin-top: auto;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phone-frame {
  position: relative;
  border-radius: 28px;
  padding: 10px 10px 14px;
  background: linear-gradient(165deg, #0b1f4f 0%, #00103e 100%);
  box-shadow: 0 24px 60px rgba(1, 41, 81, 0.28);
  overflow: hidden;
}

.phone-frame-bar {
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin: 4px auto 10px;
}

.phone-frame img {
  width: 100%;
  border-radius: 18px;
  object-fit: contain;
  background: #f8fbff;
}

.hero-shot-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(71, 193, 251, 0.22), transparent 28%),
    radial-gradient(circle at 10% 20%, rgba(94, 117, 241, 0.16), transparent 32%),
    linear-gradient(180deg, #fff 0%, var(--canvas) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  margin: 1rem 0;
  font-size: clamp(2rem, 4.8vw, 3.45rem);
  color: var(--blue-header);
}

.hero p.lead {
  font-size: 1.08rem;
  color: #475569;
  max-width: 38rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 1.75rem;
}

.badge {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.phone-stack {
  position: relative;
  min-height: 520px;
}

.phone {
  position: absolute;
  width: min(270px, 78%);
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(160deg, #0b1f4f, #00103e);
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-screen {
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  background: #f8fbff;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-main {
  right: 0;
  top: 0;
  transform: rotate(2deg);
}

.phone-side {
  left: 0;
  top: 48px;
  transform: rotate(-6deg) scale(0.92);
  opacity: 0.92;
}

.mock-header {
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--blue-header), #0a2463);
  color: #fff;
}

.mock-header strong {
  display: block;
  font-size: 0.95rem;
}

.mock-header span {
  font-size: 0.75rem;
  opacity: 0.82;
}

.mock-body {
  padding: 14px;
}

.mock-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}

.mock-card h4 {
  margin: 0 0 4px;
  font-size: 0.86rem;
}

.mock-card p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.mock-pill {
  display: inline-block;
  margin-top: 8px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(71, 193, 251, 0.16);
  color: var(--blue-primary);
  font-size: 0.68rem;
  font-weight: 700;
}

.stats {
  padding: 1.5rem 0 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--blue-primary);
  font-family: Montserrat, sans-serif;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  margin: 0.75rem 0;
  color: var(--blue-header);
}

.section-header p {
  color: #52607a;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(1, 41, 81, 0.04);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(71, 193, 251, 0.18), rgba(5, 83, 173, 0.12));
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: #5b677a;
  font-size: 0.93rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: #425066;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-primary);
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-top), var(--blue-primary));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-card.featured {
  border-color: var(--blue-primary);
  box-shadow: 0 18px 40px rgba(5, 83, 173, 0.14);
  transform: translateY(-4px);
}

.price-card h3 {
  margin: 0;
}

.price {
  font-size: 2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  color: var(--blue-header);
  margin: 0.75rem 0;
}

.price small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.price-card li {
  padding: 0.42rem 0;
  border-bottom: 1px dashed #e8edf5;
  font-size: 0.9rem;
  color: #4b596d;
}

.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-header);
}

.faq p {
  margin: 0.75rem 0 0;
  color: #52607a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.download-band {
  background: linear-gradient(135deg, var(--blue-header), #0a2463 55%, var(--blue-primary));
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.download-band h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.download-actions .btn {
  width: 100%;
}

.scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin: 0 0 1rem;
}

.screenshot-scroll {
  width: 100%;
  overflow: hidden;
}

.screenshot-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.mobile-bar {
  display: none;
}

.nav-desktop-only {
  display: inline-flex;
}

.whatsapp-fab-desktop {
  display: inline-flex;
}

.site-footer {
  background: var(--blue-header);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.screenshot-grid {
  display: none;
}

.shot-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(1, 41, 81, 0.06);
}

.shot-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: top center;
  background: linear-gradient(180deg, #eef3fa 0%, #f8fbff 100%);
}

.shot-card figcaption {
  padding: 0.75rem 0.85rem 0.9rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue-deep);
}


.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.38);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

@media (max-width: 980px) {
  .screenshot-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split,
  .feature-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
  }

  .whatsapp-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }

  .site-header {
    background: var(--blue-header);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    z-index: 310;
  }

  .brand {
    color: #fff;
  }

  .menu-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 310;
  }

  .menu-toggle-bar {
    background: #fff;
  }

  .nav {
    min-height: 60px;
  }

  .nav-links,
  .nav-desktop-only {
    display: none !important;
  }

  .hero {
    padding: 1.5rem 0 2rem;
    overflow: hidden;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-shot-wrap {
    order: -1;
    max-width: min(68vw, 240px);
  }

  .hero h1 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    margin: 0.65rem 0;
    color: var(--blue-header);
  }

  .hero p.lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 1rem 0 1.15rem;
  }

  .badge {
    text-align: center;
    padding: 0.55rem 0.65rem;
    font-size: 0.78rem;
  }

  .badge-hide-mobile {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-note {
    text-align: center;
    font-size: 0.84rem;
  }

  .stats {
    padding: 0.25rem 0 1.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .stat-card {
    padding: 0.95rem 0.65rem;
    border-radius: 16px;
  }

  .stat-card strong {
    font-size: 1.25rem;
  }

  .stat-card span {
    font-size: 0.8rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .section-header h2 {
    font-size: clamp(1.35rem, 5.2vw, 1.75rem);
  }

  .feature-grid,
  .split,
  .contact-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature-card {
    padding: 1.1rem;
    border-radius: 16px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .price-card {
    border-radius: 18px;
  }

  .price-card.featured {
    order: -1;
    transform: none;
    border-width: 2px;
  }

  .price-card .btn {
    width: 100%;
  }

  #mobil {
    overflow: hidden;
    padding-bottom: 2rem;
  }

  .scroll-hint-mobile {
    display: block;
  }

  .screenshot-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 0.25rem 0 0.75rem;
    margin: 0;
    width: 100%;
    max-width: 100vw;
  }

  .screenshot-scroll::-webkit-scrollbar {
    display: none;
  }

  .screenshot-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.85rem;
    width: max-content;
    padding-inline: 0.75rem;
    grid-template-columns: unset;
  }

  .shot-card {
    flex: 0 0 clamp(220px, 72vw, 260px);
    scroll-snap-align: center;
    border-radius: 16px;
  }

  .shot-card img {
    max-height: none;
    aspect-ratio: 9 / 19.5;
    object-fit: contain;
  }

  .shot-card figcaption {
    font-size: 0.8rem;
    padding: 0.6rem 0.75rem 0.75rem;
  }

  .download-band {
    padding: 1.35rem;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .faq details {
    padding: 0.95rem;
    border-radius: 16px;
  }

  .faq summary {
    font-size: 0.96rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .contact-card .btn {
    width: 100%;
  }

  .site-footer {
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-fab-desktop {
    display: none !important;
  }

  body.menu-open .mobile-bar {
    display: none;
  }

  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.65rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    padding: 0.7rem 0.85rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 24px rgba(1, 41, 81, 0.08);
  }

  .mobile-bar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.98rem;
    border: 0;
    text-decoration: none;
  }

  .mobile-bar-primary {
    background: linear-gradient(135deg, var(--blue-primary), #0a6fd4);
    color: #fff;
    box-shadow: 0 8px 20px rgba(5, 83, 173, 0.25);
  }

  .mobile-bar-whatsapp {
    width: 50px;
    padding: 0;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
  }

  .mobile-bar-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  .phone-stack {
    min-height: 420px;
    margin-top: 1rem;
  }

  .phone-side {
    display: none;
  }

  .phone-main {
    position: relative;
    margin-inline: auto;
    transform: none;
  }
}

@media (max-width: 520px) {
  .eyebrow {
    font-size: 0.76rem;
    padding: 0.35rem 0.7rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-family: Montserrat, sans-serif;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (min-width: 769px) {
  .download-actions .btn {
    width: auto;
  }
}
