@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --bg: #0B1D26;
  --bg-nav: rgba(11, 29, 38, 0.95);
  --cyan: #11AFDD;
  --gold: #C8960C;
  --white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.75);
  --border: rgba(17, 175, 221, 0.25);
  --card-bg: rgba(255, 255, 255, 0.05);
  --max-width: 900px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.landing-page .main,
.landing-page #site-footer {
  position: relative;
  z-index: 1;
}

.landing-bubbles {
  position: fixed;
  z-index: 0;
  top: var(--nav-height);
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-bubble {
  --bubble-size: 42px;
  --bubble-left: 50%;
  --bubble-duration: 24s;
  --bubble-delay: 0s;
  --bubble-color: var(--cyan);
  position: absolute;
  bottom: -12vh;
  left: var(--bubble-left);
  width: var(--bubble-size);
  height: var(--bubble-size);
  border-radius: 50%;
  background: var(--bubble-color);
  box-shadow:
    inset -9px -11px 16px rgba(0, 0, 0, 0.16),
    inset 7px 7px 11px rgba(255, 255, 255, 0.18),
    0 0 18px rgba(255, 255, 255, 0.08);
  opacity: 0;
  filter: blur(0.25px);
  animation: landing-bubble-rise var(--bubble-duration) ease-in-out infinite;
  animation-delay: var(--bubble-delay);
}

.landing-bubble:nth-child(1) {
  --bubble-size: 58px;
  --bubble-left: 7%;
  --bubble-duration: 25s;
  --bubble-delay: -17s;
  --bubble-color: var(--cyan);
}

.landing-bubble:nth-child(2) {
  --bubble-size: 30px;
  --bubble-left: 18%;
  --bubble-duration: 20s;
  --bubble-delay: -6s;
  --bubble-color: #e02d83;
}

.landing-bubble:nth-child(3) {
  --bubble-size: 76px;
  --bubble-left: 31%;
  --bubble-duration: 29s;
  --bubble-delay: -22s;
  --bubble-color: var(--gold);
}

.landing-bubble:nth-child(4) {
  --bubble-size: 38px;
  --bubble-left: 47%;
  --bubble-duration: 22s;
  --bubble-delay: -12s;
  --bubble-color: #6677e8;
}

.landing-bubble:nth-child(5) {
  --bubble-size: 52px;
  --bubble-left: 61%;
  --bubble-duration: 27s;
  --bubble-delay: -3s;
  --bubble-color: var(--cyan);
}

.landing-bubble:nth-child(6) {
  --bubble-size: 28px;
  --bubble-left: 73%;
  --bubble-duration: 21s;
  --bubble-delay: -15s;
  --bubble-color: var(--gold);
}

.landing-bubble:nth-child(7) {
  --bubble-size: 68px;
  --bubble-left: 84%;
  --bubble-duration: 31s;
  --bubble-delay: -26s;
  --bubble-color: #e02d83;
}

.landing-bubble:nth-child(8) {
  --bubble-size: 34px;
  --bubble-left: 92%;
  --bubble-duration: 23s;
  --bubble-delay: -9s;
  --bubble-color: var(--cyan);
}

.landing-bubble:nth-child(9) {
  --bubble-size: 44px;
  --bubble-left: 39%;
  --bubble-duration: 26s;
  --bubble-delay: -19s;
  --bubble-color: #6677e8;
}

@keyframes landing-bubble-rise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0;
  }

  12% {
    opacity: 0.12;
  }

  42% {
    transform: translate3d(24px, -38vh, 0) scale(1);
    opacity: 0.14;
  }

  74% {
    transform: translate3d(-18px, -78vh, 0) scale(0.9);
    opacity: 0.1;
  }

  100% {
    transform: translate3d(16px, -124vh, 0) scale(0.76);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-bubbles {
    display: none;
  }
}

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

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

/* ── Navigation ─────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.nav-logo-title span {
  color: var(--cyan);
  font-weight: 700;
}

.nav-logo-title .logo-g {
  color: var(--cyan);
  font-weight: 700;
}

.nav-logo-sub {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(17, 175, 221, 0.12);
}

.nav-links a.active {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ── Main content ─────────────────────────────────────────────── */

.main {
  padding-top: var(--nav-height);
  min-height: calc(100vh - 200px);
}

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

/* ── Typography ─────────────────────────────────────────────── */

.heading-script {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  text-align: center;
}

.heading-cyan {
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

/* ── Home page ─────────────────────────────────────────────── */

.hero {
  padding: 70px 24px 50px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
  text-align: left;
}

.hero-accent {
  color: var(--cyan) !important;
  font-style: italic;
  font-weight: 500;
  border-left: 3px solid var(--cyan);
  border-right: 3px solid var(--cyan);
  padding-left: 18px;
  padding-right: 18px;
  margin-top: 28px !important;
}

.review-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px 70px;
  text-align: center;
}

.review-intro {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.review-list {
  list-style: disc;
  list-style-position: inside;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-list li {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  text-indent: -1.2em;
  padding-left: 1.2em;
  max-width: 760px;
  margin: 0 auto;
}

.review-list li::marker {
  color: var(--cyan);
}

/* Hero logo spin-in animation */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  overflow: visible;
}

.hero-logo-spin {
  width: 170px;
  height: 170px;
  object-fit: contain;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform, opacity;
  animation: logo-spin-in 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes logo-spin-in {
  from {
    transform: translateX(-55vw) rotate(720deg);
    opacity: 0;
  }
  to {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

.photos-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
  padding: 0 24px 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.photos-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.photos-track {
  display: contents;
}

.carousel-clone {
  display: none;
}

/* ── Steps ─────────────────────────────────────────────── */

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto repeat(5, minmax(min-content, auto));
  column-gap: 96px;
  align-items: start;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.85;
  pointer-events: none;
}

.steps-section {
  display: grid;
  grid-row: 1 / -1;
  grid-template-rows: subgrid;
  margin-bottom: 80px;
}

.steps-grid .steps-section {
  margin-bottom: 0;
}

.steps-heading {
  grid-row: 1;
  display: table;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cyan);
  margin: 0 auto 12px;
  padding: 6px 18px;
  border: 1px solid rgba(17, 175, 221, 0.3);
  border-radius: 999px;
  background: rgba(17, 175, 221, 0.07);
  line-height: 1.35;
  letter-spacing: -0.015em;
  text-align: center;
}

.steps-intro {
  grid-row: 2;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
  text-align: center;
}

.steps-list {
  grid-row: 3 / -1;
  list-style: none;
  counter-reset: steps;
  display: grid;
  grid-template-rows: subgrid;
  gap: 14px;
}

.steps-list li {
  counter-increment: steps;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.steps-list li span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

/* ── Why we're different points ─────────────────────────────── */

.points-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.point-item {
  border-left: 3px solid var(--cyan);
  border-right: 3px solid var(--cyan);
  padding: 18px 20px;
  background: var(--card-bg);
  border-radius: 10px;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.point-item:hover,
.point-item:focus-within {
  background: rgba(255, 255, 255, 0.075);
  border-color: #63d3f2;
}

.point-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--cyan);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
}

.point-title:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 6px;
  border-radius: 4px;
}

.point-chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s ease;
}

.point-title[aria-expanded="true"] .point-chevron {
  transform: translateY(2px) rotate(225deg);
}

.point-body {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.point-body p {
  margin-top: 8px;
}

/* ── Team cards ─────────────────────────────────────────────── */

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.team-name {
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-bio-placeholder {
  color: rgba(255,255,255,0.35);
  font-style: italic;
  font-size: 0.9rem;
}

.team-photo {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 3px solid var(--cyan);
}

/* ── Quotes carousel ──────────────────────────────────────────── */

.quotes-carousel {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.quotes-track {
  display: flex;
  transition: transform 0.6s ease;
}

.quote-slide {
  min-width: 100%;
  padding: 24px 20px;
  text-align: center;
  box-sizing: border-box;
}

.quote-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  line-height: 1.75;
  margin-bottom: 12px;
}

.quote-source {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}

.quotes-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s;
}

.quote-dot.active {
  background: var(--cyan);
}

/* ── Contact form ─────────────────────────────────────────────── */

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(17, 175, 221, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  background: var(--cyan);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  align-self: flex-start;
  letter-spacing: 0.3px;
}

.btn-submit:hover {
  background: #0E98C0;
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-submit:disabled {
  background: #555;
  cursor: not-allowed;
}

.form-message {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #EF4444;
  display: block;
}

/* ── Privacy Policy ─────────────────────────────────────────── */

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.privacy-section h2 {
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.privacy-section p,
.privacy-section li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.privacy-section ul,
.privacy-section ol {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.privacy-section a {
  color: var(--cyan);
  text-decoration: underline;
}

.privacy-meta {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  margin-top: -20px;
}

/* ── Store badges ─────────────────────────────────────────────── */

.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.store-badges--inline {
  margin-top: 12px;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  min-width: 150px;
}

.store-badge--apple {
  background: #000;
}

.store-badge--google {
  background: #000;
}

.store-badge:hover {
  border-color: var(--cyan);
  background: #1a1a1a;
  transform: translateY(-1px);
}

.store-badge__icon {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.store-badge--google .store-badge__icon {
  width: 20px;
  height: 20px;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge__sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.store-badge__name {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* ── Footer ─────────────────────────────────────────────── */

.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  margin-top: 40px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-logo-text {
  text-align: center;
}

.footer-logo-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.footer-logo-title span {
  color: var(--cyan);
  font-weight: 700;
}

.footer-logo-title .logo-g {
  color: var(--cyan);
  font-weight: 700;
}

.footer-logo-sub {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.footer-social a:hover {
  background: rgba(17, 175, 221, 0.15);
  border-color: var(--cyan);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 2px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-container {
    padding: 0 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .photos-row {
    display: block;
    overflow: hidden;
    padding: 0;
    margin-top: 40px;
    padding-bottom: 16px;
  }

  .review-section {
    padding-top: 30px;
  }

  .photos-track {
    display: flex;
    width: 400%;
    animation: carousel-scroll 13.5s ease-in-out infinite;
  }

  .photos-track img {
    width: 25%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 0;
    border: none;
  }

  .carousel-clone {
    display: block;
  }

  @keyframes carousel-scroll {
    0%      { transform: translateX(-75%); }
    22.2%   { transform: translateX(-75%); }
    27.8%   { transform: translateX(-50%); }
    50%     { transform: translateX(-50%); }
    55.6%   { transform: translateX(-25%); }
    77.8%   { transform: translateX(-25%); }
    83.3%   { transform: translateX(0%); }
    100%    { transform: translateX(0%); }
  }

  .hero {
    padding: 50px 20px 36px;
  }

  .hero p {
    font-size: 1rem;
  }

  .container {
    padding: 50px 20px;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
    align-self: stretch;
  }

  .team-card {
    padding: 24px 20px;
  }

  .team-photo {
    width: 140px;
    height: 140px;
  }

  .steps-section {
    margin-bottom: 60px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 0;
  }

  .steps-grid::before {
    display: none;
  }

  .steps-grid .steps-section {
    margin-bottom: 60px;
  }

  .steps-section {
    display: block;
    grid-row: auto;
  }

  .steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .steps-list li {
    gap: 10px;
    padding: 6px 0;
  }

  .steps-list li span {
    font-size: 0.92rem;
  }

  .quote-slide {
    padding: 20px 16px;
  }

  .quote-text {
    font-size: 1.1rem;
  }

  .points-list {
    gap: 20px;
  }

  .point-item {
    padding: 16px 16px;
    border-left: 2px solid var(--cyan);
    border-right: 2px solid var(--cyan);
  }

  .review-section {
    padding: 50px 20px 60px;
  }

  .review-list {
    gap: 12px;
  }

  .review-list li {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .contact-intro {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .heading-script {
    font-size: 1.9rem;
    margin-bottom: 28px;
  }

  .heading-cyan {
    font-size: 1rem;
  }

  .nav-logo-title {
    font-size: 18px;
  }

  .nav-logo-sub {
    font-size: 8px;
  }

  .nav-logo img {
    height: 38px;
  }

  .section-intro {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-logo-spin {
    width: 130px;
    height: 130px;
  }

  .steps-heading {
    font-size: 1.15rem;
  }

  .steps-intro {
    font-size: 0.9rem;
  }

  .point-title {
    font-size: 0.95rem;
  }

  .point-body {
    font-size: 0.9rem;
  }

  .review-intro {
    font-size: 1rem;
  }

  .landing-bubble:nth-child(n + 7) {
    display: none;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  .team-name {
    font-size: 1.1rem;
  }

  .team-bio {
    font-size: 0.9rem;
  }

  .quote-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .quote-source {
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
    padding: 14px 16px;
  }

  .btn-submit {
    font-size: 16px;
    padding: 16px 24px;
  }

  .footer {
    padding: 32px 20px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .contact-intro {
    font-size: 0.95rem;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 0.9rem;
  }
}
