:root {
  --page: #f3e7db;
  --page-top: #f6e6d6;
  --page-bottom: #f2ddcb;
  --surface: #f4f5f7;
  --surface-alt: #f2f2f4;
  --border-soft: rgba(10, 10, 10, 0.06);
  --text-primary: #111318;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --blue: #007aff;
  --green: #34c759;
  --red: #ff3b30;
  --orange: #ff9500;
  --teal: #22c7a9;
  --pink: #ff4fb8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(to bottom, var(--page-top), var(--page-bottom));
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(6px);
  background: rgba(243, 231, 219, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--blue);
  color: white;
  font-weight: 800;
}

.brand-name {
  font-weight: 800;
}

.nav-links {
  display: none;
  gap: 1.3rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid transparent;
  padding: 0.75rem 1.1rem;
  font-weight: 650;
  font-size: 0.9rem;
  transition: 180ms ease;
}

.btn:focus-visible,
.faq-trigger:focus-visible,
.carousel-track-wrapper:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 25px rgba(0, 122, 255, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.07);
}

.btn-secondary {
  background: #fff;
  border-color: rgba(17, 19, 24, 0.12);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--surface-alt);
}

.main {
  padding: 2rem 0 4rem;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  margin: 0;
}

h1,
h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.25rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

h3 {
  margin: 0;
}

.lead,
.section p {
  color: var(--text-secondary);
}

.lead {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.trust {
  margin-top: 0.9rem;
  color: var(--text-secondary);
  font-weight: 550;
  font-size: 0.95rem;
}

.trust span {
  margin: 0 0.4rem;
  color: var(--text-muted);
}

.hero-phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 460px;
  margin-inline: auto;
}

.phone {
  border-radius: 2rem;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.phone img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  border-radius: 2rem;
  width: 100%;
  background: transparent;
}

.phone-shift {
  transform: translateY(1.6rem);
}

.trust-cards {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.card,
.feature-card {
  border: 1px solid var(--border-soft);
  background: var(--surface);
  border-radius: 1.55rem;
  box-shadow: 0 12px 30px rgba(17, 19, 24, 0.08);
}

.card {
  padding: 1.3rem;
}

.card h2 {
  font-size: 1.45rem;
}

.card p {
  color: var(--text-secondary);
  margin: 0.55rem 0 0;
}

.card small {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.68rem;
}

.section-stack {
  margin-top: 4.5rem;
  display: grid;
  gap: 1.1rem;
}

.feature-card {
  padding: 1.4rem;
  display: grid;
  gap: 1.2rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin: 0.75rem 0 0;
}

.mini-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.mini-grid > div {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  padding: 0.7rem 0.85rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.privacy-grid {
  margin-top: 4.5rem;
}

.privacy-grid p {
  max-width: 60ch;
}

.privacy-grid .mini-grid > div {
  background: #fff;
}

.privacy-grid small {
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.feature-matrix {
  margin-top: 1rem;
}

.section {
  margin-top: 4.5rem;
}

.carousel {
  margin-top: 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border-soft);
  background: rgba(244, 245, 247, 0.7);
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(17, 19, 24, 0.08);
}

.carousel-track-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 0.9rem;
  transition: transform 320ms ease;
}

.slide {
  flex: 0 0 100%;
}

.slide .phone {
  transition: transform 300ms ease, box-shadow 300ms ease, opacity 300ms ease;
  transform: scale(0.98);
  opacity: 0.95;
}

.slide.active .phone {
  transform: scale(1.01);
  opacity: 1;
}

.carousel-controls {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.dots {
  display: flex;
  gap: 0.35rem;
}

.dot {
  width: 0.62rem;
  height: 0.62rem;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.24);
}

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

.buttons {
  display: flex;
  gap: 0.5rem;
}

.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 0.78rem;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  text-align: left;
  font-size: 0.9rem;
}

th {
  background: var(--surface-alt);
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.faq-panel {
  display: none;
  padding: 0 1rem 1rem;
}

.faq-panel.open {
  display: block;
}

.faq-panel p {
  margin: 0;
  color: var(--text-secondary);
}

.final-cta {
  margin-top: 4.5rem;
  text-align: center;
  padding: 2rem 1.4rem;
}

.final-cta p {
  margin-inline: auto;
  max-width: 42rem;
}

.final-cta .btn {
  margin-top: 1.1rem;
}

.footer {
  border-top: 1px solid var(--border-soft);
  margin-top: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0.35rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.blue { color: var(--blue); }
.green { color: var(--green); }
.red { color: var(--red); }
.orange { color: var(--orange); }
.teal { color: var(--teal); }
.pink { color: var(--pink); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hero { grid-template-columns: 1fr 0.95fr; }
  .trust-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-card { grid-template-columns: 1fr 0.85fr; align-items: center; padding: 1.6rem; }
  .feature-card.reverse > :first-child { order: 2; }
  .feature-card.reverse > :last-child { order: 1; }
  .mini-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .slide { flex-basis: 50%; }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1100px) {
  .slide { flex-basis: 33.3333%; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
