/* =========================================================
   My Baby My Way AI — Landing Page
   Pixel-perfect build of Figma node 7522:13820
   ========================================================= */

:root {
  --purple-700: #4a3aff;
  --purple-600: #897fff;
  --purple-300: #d2ceff;
  --brand-primary: #c99ff3;
  --brand-tertiary: #5454d2;
  --brand-secondary: #beb9f2;
  --brand-alternate: #0b303b;
  --neutral-700: #170f49;
  --text-primary: #14181b;
  --text-body: #53525e;
  --text-secondary: #525252;
  --neutral-500: #737373;
  --neutral-300: #d4d4d4;
  --neutral-200: #e5e5e5;
  --neutral-100: #f5f5f5;
  --neutral-50: #fafafa;
  --white: #fff;
  --soft-pink: #faf5fe;
  --soft-lilac: #f1f0fb;
  --grid-line: #edeef7;

  --primary-gradient: linear-gradient(173deg, #897fff 5%, #4a3aff 87%);
  --brand-gradient-horizontal: linear-gradient(90deg, #5454d2 0%, #c99ff3 100%);
  --cta-gradient: linear-gradient(90deg, #5454d2 0%, #c99ff3 100%);

  --radius-pill: 200px;
  --radius-card: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  --shadow-button: 0 2px 5px 0 rgba(74,58,255,0.25);
  --shadow-tile: 38.3px 27.4px 30px 0 rgba(105,100,168,0.08);
  --shadow-card-lg: 0 4px 16px 0 rgba(16,24,40,0.08), 0 12px 24px -4px rgba(16,24,40,0.05);
  --shadow-s: 0 1px 5px 0 rgba(0,0,0,0.05);
  --shadow-m: 0 4px 10px 0 rgba(0,0,0,0.05);
}

/* ------- base ------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--neutral-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { margin: 0; font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  padding: 14px 16px;
  border-radius: var(--radius-pill);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  border: .5px solid var(--purple-300);
  white-space: nowrap;
}
.btn-lg {
  font-size: 16px;
  padding: 18px 20px;
}
.btn-full { width: 100%; padding: 16px 20px; font-size: 15px; }
.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-button),
    inset 0 -2px 2px 0 rgba(0,66,137,0.15),
    inset 0 1px 1px 0 rgba(255,255,255,0.1),
    inset 0 3px 4px 0 rgba(223,238,255,0.1);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--purple-700);
  border: 0;
  padding: 16px 28px;
  font-weight: 600;
}
.btn-white:hover { background: #fafafe; }
.btn-ghost {
  background: transparent;
  color: var(--purple-700);
  border: 1px solid var(--purple-300);
  font-weight: 600;
}
.btn-ghost:hover { background: var(--soft-pink); }

.link-chevron {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: var(--neutral-700);
  font-weight: 400;
}

/* ---------- header ---------- */
.site-header {
  position: relative;
  z-index: 20;
  padding: 32px 0;
  background: var(--soft-pink);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.6px;
  color: var(--neutral-700);
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--neutral-700);
  line-height: 1.35;
}
.nav a:hover { color: var(--purple-700); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-cta .login {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--neutral-700);
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--soft-pink);
  padding: 0 0 96px;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  left: -437px; top: -104px;
  width: 1378px; height: 910px;
  transform: rotate(-12.91deg);
  background: linear-gradient(135deg, rgba(200,160,243,.45) 0%, rgba(137,127,255,.35) 40%, rgba(74,58,255,.25) 100%);
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  filter: blur(85px);
  opacity: 0.55;
}
.hero-grid {
  position: absolute;
  left: 50%; top: calc(50% - 10px);
  transform: translate(-50%,-50%);
  width: 1440px;
  height: 900px;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: calc(1440px / 12) calc(900px / 8);
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.hero-fade-top {
  position: absolute; left: 0; top: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, var(--soft-pink), rgba(255,255,255,0));
}
.hero-fade-bottom {
  position: absolute; left: 0; bottom: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--soft-pink), rgba(255,255,255,0));
}

.hero-grid-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 620px;
  gap: 64px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 0;
  min-height: 710px;
}

.hero-copy { max-width: 729px; }
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: -1.8px;
  color: var(--brand-alternate);
  margin-bottom: 32px;
}
.gradient-text {
  background: var(--brand-gradient-horizontal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text-inline {
  background: var(--brand-gradient-horizontal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-body);
  max-width: 567px;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* ---------- hero phone / visual ---------- */
.hero-visual {
  position: relative;
  height: 652px;
  width: 620px;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: .55;
}
.blob-1 { background: #d8c4f5; width: 340px; height: 300px; left: 110px; top: 20px; }
.blob-2 { background: #b9a4f2; width: 260px; height: 240px; left: 260px; top: 60px; }
.blob-3 { background: #e7d9f7; width: 280px; height: 260px; left: 40px; top: 130px; }

.hero-phone-img {
  position: absolute;
  left: 130px;
  top: 0;
  width: 340px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(16,24,40,0.18));
}

/* Floating hero tiles */
.float-tile {
  position: absolute;
  background: #fff;
  border: .618px solid #f1f2f9;
  border-radius: 13.137px;
  padding: 16.618px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  box-shadow: 38.315px 27.368px 30px 0 rgba(105,100,168,0.08);
  width: 257px;
  z-index: 3;
}
.float-tile-bp {
  right: -50px;
  top: 120px;
}
.float-tile-weight {
  left: 0;
  bottom: 20px;
}
.float-icon {
  width: 40px; height: 40px;
  border-radius: 9999px;
  background: #dcd1f6;
  display: flex; align-items: center; justify-content: center;
}
.float-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  line-height: 28px;
}
.float-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-body);
  line-height: 24px;
}
.float-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 17px;
  background: var(--soft-pink);
  border: 1px solid rgba(190,185,242,0.05);
  border-radius: 24px;
}
.float-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-tertiary);
}
.float-status {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--text-body);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ---------- section shared ---------- */
.section {
  position: relative;
  padding: 112px 0;
  background: #fff;
}
.section-head {
  margin-bottom: 64px;
  max-width: 1216px;
}
.section-head-center {
  margin: 0 auto 64px;
  text-align: center;
}
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--soft-pink);
  border: 1px solid var(--purple-300);
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--purple-700);
  margin-bottom: 24px;
}
.chip-dot {
  width: 6px; height: 6px;
  background: var(--purple-700);
  border-radius: 50%;
}
.section-title-big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  color: var(--brand-alternate);
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.section-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-body);
  max-width: 640px;
}
.section-head-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- how it works ---------- */
.how-it-works { background: #fff; }
.how-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 40px 0;
}
.how-row.reverse .how-visual { order: 2; }
.how-row.reverse .how-copy { order: 1; }
.how-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.how-visual img {
  width: 100%;
  max-width: 653px;
  height: auto;
  display: block;
}
.how-copy { max-width: 505px; display: flex; flex-direction: column; gap: 34px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 8px;
  background: linear-gradient(270deg, #c99ff3 0%, #5454d2 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  border-radius: 6px;
  margin: 0;
}
.how-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.1;
  color: #000;
  letter-spacing: -0.3333px;
  margin: 0;
}
.how-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #656565;
  letter-spacing: -0.3333px;
  margin: 0;
}

/* ---------- everything section ---------- */
.everything { background: #fff; padding-bottom: 96px; }
.everything-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.feat-list { display: flex; flex-direction: column; gap: 12px; }
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease;
}
.feat-item.is-active {
  background: var(--soft-pink);
  border-color: var(--purple-300);
}
.feat-num {
  width: 48px; height: 48px;
  background: #f1f1f4;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #4a4a55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s ease, color .3s ease;
}
.feat-item.is-active .feat-num {
  background: linear-gradient(135deg, #5454d2 0%, #c99ff3 100%);
  color: #fff;
  font-weight: 700;
}
.feat-body { flex: 1; min-width: 0; }
.feat-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--brand-alternate);
}
.feat-desc-wrap {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .4s ease;
}
.feat-item.is-active .feat-desc-wrap {
  grid-template-rows: 1fr;
}
.feat-desc-wrap > .feat-desc { min-height: 0; }
.feat-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  padding-top: 8px;
  opacity: 0;
  transition: opacity .3s ease .1s;
}
.feat-item.is-active .feat-desc { opacity: 1; }
.feat-preview {
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 520px;
}
.feat-preview-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.feat-preview-img.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- community ---------- */
.community {
  background: #fff;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.community-copy { padding: 20px 0; }
.community-copy .section-title-big { margin-bottom: 24px; }
.community-copy .section-subtitle { margin-bottom: 32px; }
.community-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--soft-pink);
  border: 1px solid var(--purple-300);
  border-radius: 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--purple-700);
}
.cat-chip img {
  width: auto;
  height: 16px;
  flex-shrink: 0;
}
.community-visual { display: flex; justify-content: center; }
.community-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
}

/* ---------- pricing ---------- */
.pricing { background: var(--soft-pink); padding: 112px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1216px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(16,24,40,0.04);
}
.price-card-featured {
  border: 1.5px solid var(--purple-700);
  box-shadow: 0 25px 50px -12px rgba(74,58,255,0.20);
}
.price-head {
  padding: 32px;
  border-bottom: 1px solid var(--neutral-100);
}
.price-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.price-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--brand-alternate);
  margin-bottom: 16px;
}
.price-heading-row .price-heading { margin-bottom: 0; }
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--soft-pink);
  color: var(--purple-700);
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
}
.price-badge .chip-dot { width: 6px; height: 6px; }
.price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: var(--brand-alternate);
  letter-spacing: -2px;
}
.price-amount-accent { color: var(--purple-700); }
.price-period {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.2;
  margin-bottom: 10px;
}
.price-support {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}
.price-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.price-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-alternate);
  letter-spacing: 0.8px;
}
.price-sublabel {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--text-body);
  margin-top: -8px;
}
.price-sublabel strong { color: var(--brand-alternate); font-weight: 700; }
.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  margin-bottom: 8px;
}
.price-list li {
  position: relative;
  padding-left: 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--brand-alternate);
  line-height: 1.5;
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px; height: 22px;
  background: url("images/assets/icon-checkmark.svg") center/contain no-repeat;
}

/* ---------- cta ---------- */
.cta-section { background: #fff; padding: 112px 0; }
.cta-card {
  background: linear-gradient(163.33deg, #5454d2 0%, #c99ff3 100%);
  color: #fff;
  border-radius: 40px;
  padding: 64px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(84,84,210,0.20);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}
.cta-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 28px;
  max-width: 672px;
  margin: 0;
}
.cta-card .btn-white {
  padding: 20px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  border: 0.5px solid #d2ceff;
  box-shadow: 0 2px 5px rgba(74,58,255,0.25),
    inset 0 -2px 2px 0 rgba(0,66,137,0.15),
    inset 0 1px 1px 0 rgba(255,255,255,0.1),
    inset 0 3px 4px 0 rgba(223,238,255,0.1);
}

/* ---------- faq ---------- */
.faq { background: #fff; padding: 112px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1216px;
  margin: 0 auto;
}
.faq-card {
  padding: 33px;
  background: #fff;
  border: 1px solid #eee9fb;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.faq-q {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #2f323a;
  line-height: 28px;
  margin: 0 0 12px;
}
.faq-a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #53525e;
  line-height: 1.625;
}

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(154.09deg, #5454d2 27.17%, #c99ff3 119.02%);
  color: #fff;
  box-shadow: 0 25px 50px 0 rgba(84,84,210,0.2);
}
.footer-top { padding: 100px 0 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 64px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-logo-mark {
  width: 51px; height: 51px;
  border-radius: 12px;
  display: block;
  background: #fff;
  padding: 6px;
  object-fit: contain;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}
.footer-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.6px;
  color: #fff;
}
.footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 359px;
}
.footer-socials { display: flex; gap: 24px; }
.footer-socials a {
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity .15s;
}
.footer-socials a:hover { opacity: 1; }
.footer-socials svg { width: 24px; height: 24px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 6px;
}
.footer-col a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #f2f2f2;
  line-height: 1.6;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 40px 0;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
.footer-legal { display: flex; gap: 36px; }
.footer-legal a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
.footer-legal a:hover { opacity: 0.85; }
.footer-admin-link { opacity: 0.35; font-weight: 400 !important; }
.footer-admin-link:hover { opacity: 0.6 !important; }

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .hero-grid-layout { grid-template-columns: 1fr 520px; gap: 40px; }
  .hero-visual { width: 520px; }
  .hero-phone-img { left: 90px; }
  .float-tile-bp { right: -20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
  .hero-visual { width: 100%; height: 560px; }
  .hero-phone-img { left: 50%; transform: translateX(-50%); }
  .hero-title { font-size: 52px; line-height: 1.05; }
  .section-title-big { font-size: 36px; }
  .how-row, .how-row.reverse { grid-template-columns: 1fr; gap: 32px; }
  .how-row.reverse .how-visual, .how-row.reverse .how-copy { order: unset; }
  .everything-grid, .community-grid { grid-template-columns: 1fr; gap: 40px; }
  .everything-features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; }
  .float-tile { width: 220px; }
  .float-tile-bp { right: -10px; top: 60px; }
  .float-tile-weight { left: 0; bottom: 0; }
}
@media (max-width: 720px) {
  .site-header { padding: 20px 0; }
  .site-header .container {
    flex-wrap: wrap;
    row-gap: 16px;
    column-gap: 12px;
  }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .brand { font-size: 20px; }
  .nav,
  .header-cta {
    display: none;
    flex-basis: 100%;
    order: 3;
  }
  .site-header.is-open .nav,
  .site-header.is-open .header-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 8px;
  }
  .site-header.is-open .nav a,
  .site-header.is-open .header-cta .login {
    padding: 10px 4px;
    font-size: 17px;
  }
  .site-header.is-open .header-cta .btn { width: 100%; }
}
@media (max-width: 560px) {
  .hero { padding-bottom: 64px; }
  .hero-title { font-size: 38px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 20px; }
  .hero-buttons .btn-primary { width: 100%; justify-content: center; }
  .hero-buttons .link-chevron { align-self: center; }
  .hero-visual { height: 480px; }
  .hero-phone-img { width: 260px; }
  .float-tile {
    width: 180px;
    padding: 12px;
    gap: 12px;
    border-radius: 10px;
    box-shadow: 24px 18px 30px 0 rgba(105,100,168,0.10);
  }
  .float-tile .float-icon { width: 32px; height: 32px; }
  .float-tile .float-title { font-size: 15px; }
  .float-tile .float-desc { font-size: 12px; line-height: 1.45; }
  .float-tile-bp { right: -8px; top: 24px; }
  .float-tile-weight { left: -8px; bottom: 8px; }
  .section { padding: 72px 0; }
  .cta-card { padding: 40px 24px; border-radius: 24px; }
  .cta-title { font-size: 28px; }
  .cta-sub { font-size: 16px; line-height: 24px; }
  .faq-card { padding: 24px; }
  .footer-top { padding: 64px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { padding: 28px 0; }
  .footer-copyright, .footer-legal a { font-size: 14px; }
  .footer-legal { gap: 24px; flex-wrap: wrap; }
  .coverage-card { border-radius: 24px; }
  .coverage-header { padding: 40px 24px; border-radius: 24px 24px 0 0; }
  .coverage-title { font-size: 32px; }
  .coverage-body { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
}

/* ---------- coverage ---------- */
.coverage { background: #fff; padding: 48px 0 48px; }
.coverage-card {
  border: 1px solid var(--purple-300);
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-m);
}
.coverage-header {
  background: linear-gradient(163.33deg, #5454d2 0%, #897fff 100%);
  color: #fff;
  padding: 56px 64px;
}
.coverage-chip {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: #d2ceff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.coverage-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #fff;
  font-family: 'Roboto', serif;
}
.coverage-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0;
  max-width: 640px;
}
.coverage-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 48px 64px;
  align-items: start;
}
.coverage-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.coverage-checks li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--neutral-700);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.coverage-checks .check-ico {
  color: #16a34a;
  font-weight: 700;
  font-size: 18px;
}
.coverage-form { display: flex; flex-direction: column; gap: 14px; }
.coverage-form input,
.coverage-form select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  padding: 16px 20px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  background: #fff;
  color: var(--neutral-700);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.coverage-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}
.coverage-form input::placeholder { color: #9aa0a6; }
.coverage-form input:focus,
.coverage-form select:focus {
  border-color: var(--purple-600);
  box-shadow: 0 0 0 3px rgba(137,127,255,0.15);
}
.coverage-submit { margin-top: 8px; padding: 16px 24px; font-size: 16px; }
.coverage-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--neutral-500);
  text-align: center;
  margin: 4px 0 0;
}
.coverage-success {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #16a34a;
  text-align: center;
  margin: 4px 0 0;
  font-weight: 600;
}
.coverage-error {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #dc2626;
  text-align: center;
  margin: 4px 0 0;
}
