:root {
  color-scheme: light;
  --bg: #fff7f0;
  --surface: #ffffff;
  --primary: #ff7a59;
  --primary-dark: #e25b35;
  --accent: #ffe6c9;
  --accent-blue: #68d4ff;
  --accent-green: #8ed081;
  --accent-lilac: #c5b2ff;
  --text: #2c1f3f;
  --muted: #645677;
  --border: rgba(44, 31, 63, 0.14);
  --success: #57c175;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1120px;
  --hero-block-padding: clamp(2.4rem, 6vw, 4rem);
  font-family: "Poppins", "Fredoka", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "calt" 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: linear-gradient(180deg, #fff7f0 0%, #f9fbff 100%);
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: transparent;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 50%;
  top: 16px;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  z-index: 1000;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

header {
  padding: 1rem 1.25rem;
}

.nav {
    height: 3rem;
  margin: 0 auto;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 9rem;
  width: auto;
    max-width: 7rem;
  display: block;
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 122, 89, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(255, 122, 89, 0.32);
}

main {
    display: block;
    overflow-x: clip;
}

.section {
  padding: clamp(3rem, 5vw, 5rem) 1.25rem;
  position: relative;
  overflow: visible;
}

.container {
  margin: 0 auto;
  max-width: var(--max-width);
}

.section--playful .container {
  position: relative;
  z-index: 1;
}

.section--playful::before,
.section--playful::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 52% 48% 58% 42%;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  animation: floaty 6.5s ease-in-out infinite alternate;
}

.section--playful::before {
  inset: -160px 8% auto auto;
  background: radial-gradient(circle at 60% 40%, rgba(197, 178, 255, 0.35), rgba(255, 247, 240, 0));
}

.section--playful::after {
  inset: auto auto -150px 12%;
  background: radial-gradient(circle at 40% 70%, rgba(142, 208, 129, 0.3), rgba(255, 247, 240, 0));
  animation-delay: 1.3s;
}

.section-scribble {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 45% 55% 60% 40%;
  opacity: 0.65;
  pointer-events: none;
  animation: floaty 6.5s ease-in-out infinite alternate;
}

.section-scribble--left {
  inset: -40px auto auto -60px;
  background: radial-gradient(circle at 30% 30%, rgba(104, 212, 255, 0.3), rgba(255, 247, 240, 0));
}

.section-scribble--right {
  inset: auto -60px -40px auto;
  background: radial-gradient(circle at 70% 70%, rgba(255, 122, 89, 0.28), rgba(255, 247, 240, 0));
  animation-delay: 1.3s;
}

.hero {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
  padding-top: clamp(1rem, 5vw, 2.5rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 48% 52% 60% 40%;
  filter: blur(0);
  opacity: 0.65;
  pointer-events: none;
  animation: floaty 4.8s ease-in-out infinite alternate;
}

.hero::before {
  width: 320px;
  height: 320px;
  inset: -140px auto auto -160px;
  background: radial-gradient(circle at 30% 30%, rgba(104, 212, 255, 0.32), rgba(255, 247, 240, 0));
}

.hero::after {
  width: 280px;
  height: 280px;
  inset: auto -140px -160px auto;
  background: radial-gradient(circle at 70% 70%, rgba(197, 178, 255, 0.4), rgba(255, 247, 240, 0));
  animation-delay: 2.5s;
}

.hero-card,
.hero-side {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 230, 204, 0.66));
  border-radius: var(--radius-lg);
  padding: var(--hero-block-padding);
  border: 1px solid rgba(197, 178, 255, 0.28);
  box-shadow: 0 32px 60px rgba(44, 31, 63, 0.12);
  overflow: hidden;
}

.hero-card > .badge {
  margin-bottom: 1rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -110px auto auto -90px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 40% 40%, rgba(142, 208, 129, 0.32), rgba(255, 247, 240, 0));
  border-radius: 58% 42% 48% 52%;
  opacity: 0.7;
  pointer-events: none;
  animation: floaty 4.2s ease-in-out infinite alternate;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(197, 178, 255, 0.45), rgba(255, 247, 240, 0));
  border-radius: 45% 55% 55% 45%;
  opacity: 0.85;
  pointer-events: none;
  animation: floaty 4.6s ease-in-out infinite alternate;
  animation-delay: 1.6s;
}

h1,
h2,
h3 {
  font-family: "Fredoka", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  margin: 0 0 1.1rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.7vw, 1.35rem);
  margin-bottom: 1.75rem;
  color: #3c2960;
  max-width: 42ch;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 2.25rem;
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.hero-highlights li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 230, 204, 0.6));
  border-radius: 36px;
  border: 1px solid rgba(197, 178, 255, 0.28);
  padding: 1.6rem 1.35rem 1.5rem;
  box-shadow: 0 18px 36px rgba(44, 31, 63, 0.12);
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
}

.hero-highlights li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.35rem;
  box-shadow: 0 14px 24px rgba(44, 31, 63, 0.18);
}

.hero-badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  color: #3c2960;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(197, 178, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(44, 31, 63, 0.08);
}

.hero-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-badge--mint::before {
  background: var(--accent-green);
}

.legal-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 3.5rem);
  border: 1px solid rgba(44, 31, 63, 0.12);
  box-shadow: 0 24px 48px rgba(44, 31, 63, 0.1);
}

.legal-card > .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.legal-card h1 {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.legal-card a {
  color: var(--primary-dark);
  text-decoration: none;
}

.legal-card a:hover,
.legal-card a:focus {
  text-decoration: underline;
}

.legal-section + .legal-section {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.legal-section h2 {
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  margin: 0 0 0.75rem;
}

.legal-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  list-style: disc;
  display: grid;
  gap: 0.5rem;
}

.legal-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0 2rem;
  font-size: 0.95rem;
  border: 1px solid rgba(44, 31, 63, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.legal-card thead th {
  background: rgba(255, 122, 89, 0.08);
  color: var(--text);
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(44, 31, 63, 0.18);
}

.legal-card tbody td {
  padding: 0.85rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(44, 31, 63, 0.12);
}

.legal-card tbody tr:last-child td {
  border-bottom: none;
}

.hero-side {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.2rem);
  position: relative;
}

.hero-side::before,
.hero-side::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 48% 52% 60% 40%;
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
  animation: floaty 4.4s ease-in-out infinite alternate;
}

.hero-side::before {
  inset: -80px auto auto 40%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 40% 30%, rgba(104, 212, 255, 0.32), rgba(255, 247, 240, 0));
}

.hero-side::after {
  inset: auto 20% -120px auto;
  background: radial-gradient(circle at 70% 70%, rgba(255, 122, 89, 0.32), rgba(255, 247, 240, 0));
  animation-delay: 1.4s;
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255, 226, 184, 0.55), rgba(197, 178, 255, 0.4));
  box-shadow: 0 32px 56px rgba(44, 31, 63, 0.16);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-visual img {
  position: relative;
  display: block;
  width: min(420px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: 0 18px 32px rgba(44, 31, 63, 0.16);
}

.visual-blob {
  position: absolute;
  border-radius: 48% 52% 60% 40%;
  filter: blur(0);
  opacity: 0.8;
  pointer-events: none;
  animation: floaty 3.8s ease-in-out infinite alternate;
}

.visual-blob--sun {
  width: 220px;
  height: 220px;
  inset: -90px auto auto -70px;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.32), rgba(255, 226, 184, 0));
}

.visual-blob--mint {
  width: 200px;
  height: 200px;
  inset: auto -80px -60px auto;
  background: radial-gradient(circle, rgba(142, 208, 129, 0.4), rgba(255, 226, 184, 0));
  animation-delay: 1.2s;
}

.visual-blob--lavender {
  width: 170px;
  height: 170px;
  inset: auto auto -90px 40px;
  background: radial-gradient(circle, rgba(197, 178, 255, 0.45), rgba(255, 226, 184, 0));
  animation-delay: 2.4s;
}

.visual-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  box-shadow: 0 16px 32px rgba(44, 31, 63, 0.16);
}

.visual-chip::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.visual-chip--top {
  top: 22px;
  right: 24px;
}

.visual-chip--bottom {
  bottom: 26px;
  left: 28px;
}

.visual-chip--bottom::before {
  background: var(--accent-green);
}

.hero-insight {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: var(--hero-block-padding);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  border: 1px solid rgba(44, 31, 63, 0.08);
  box-shadow: 0 30px 48px rgba(44, 31, 63, 0.16);
  overflow: hidden;
  z-index: 1;
}

.hero-insight::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(104, 212, 255, 0.2), rgba(255, 247, 240, 0));
  pointer-events: none;
}

.hero-insight h2 {
  font-size: 1.1rem;
  margin: 0;
  color: #3c2960;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-form {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.9rem;
}

.hero-form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(44, 31, 63, 0.16);
  font-size: 1rem;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.hero-form .primary-button {
  padding: 1rem 2rem;
  white-space: nowrap;
}

.hero-form-note {
  font-size: 0.9rem;
  color: #4c3a6b;
}

.primary-button {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.9rem;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 16px 30px rgba(255, 122, 89, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(255, 122, 89, 0.32);
}

.primary-button:active {
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(92%, 620px);
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(44, 31, 63, 0.12);
  box-shadow: 0 18px 40px rgba(44, 31, 63, 0.15);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  z-index: 1100;
  transition: opacity 200ms ease, transform 200ms ease;
  overflow: hidden;
}

.cookie-banner--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__content {
  display: grid;
  gap: 0.75rem;
}

.cookie-banner__title {
  font-family: "Fredoka", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  margin: 0;
}

.cookie-banner__message {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  z-index: 1;
}

.cookie-banner__button {
  padding: 0.85rem 1.6rem;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(44, 31, 63, 0.14);
  color: var(--text);
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  border-color: rgba(44, 31, 63, 0.28);
  box-shadow: 0 10px 22px rgba(44, 31, 63, 0.12);
  transform: translateY(-1px);
}

.secondary-button:active {
  transform: translateY(0);
}

.cookie-banner__sticker {
    align-self: end;
    justify-self: end;
    width: 13.2rem;
    height: auto;
    pointer-events: none;
    margin-bottom: -1.4rem;
    margin-right: -3rem;
}

.cookie-banner__inline-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(44, 31, 63, 0.4);
}

.cookie-banner__inline-link:hover,
.cookie-banner__inline-link:focus-visible {
  color: var(--primary-dark);
  text-decoration-color: currentColor;
}

@media (max-width: 720px) {
  .cookie-banner {
    bottom: 1rem;
    padding: 1.2rem 1.3rem;
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__sticker {
    display: none;
  }
}

.insight-card {
  display: grid;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(44, 31, 63, 0.08);
  box-shadow: 0 16px 32px rgba(44, 31, 63, 0.1);
}

.insight-card strong {
  font-size: 1.05rem;
  color: var(--text);
}

.insight-card span {
  font-size: 0.95rem;
  color: #4c3a6b;
}

.social-proof {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.logo-row {
  display: flex;
  gap: clamp(1rem, 6vw, 3rem);
  flex-wrap: wrap;
  justify-content: center;
}

.logo-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 226, 184, 0.4));
  border: 1px solid rgba(197, 178, 255, 0.28);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3c2960;
  box-shadow: 0 16px 28px rgba(44, 31, 63, 0.12);
}

.section-heading {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
}

.section-lead {
  color: #4c3a6b;
  font-size: 1.05rem;
  max-width: 60ch;
}

.value-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 226, 184, 0.32));
  border: 1px solid rgba(44, 31, 63, 0.08);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  display: grid;
  gap: 0.85rem;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.value-card p {
  margin: 0;
  color: #4c3a6b;
}

.value-card:hover,
.value-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(197, 178, 255, 0.45);
  box-shadow: 0 20px 34px rgba(44, 31, 63, 0.15);
}

.value-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(197, 178, 255, 0.32);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
}

.how-it-works {
  display: grid;
  gap: 1.6rem;
  margin-top: 2.5rem;
  counter-reset: steps;
}

.step-card {
  display: grid;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  padding: 2.6rem 1.85rem 1.85rem;
  border: 1px solid rgba(44, 31, 63, 0.08);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 230, 204, 0.42));
  position: relative;
  overflow: visible;
  box-shadow: 0 22px 44px rgba(44, 31, 63, 0.12);
  color: var(--text);
}

.step-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.step-card p {
  margin: 0;
  color: #4c3a6b;
  line-height: 1.6;
}

.step-card::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: -18px;
  left: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px 24px 18px 24px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #21163f;
  font-size: 1.2rem;
  background: var(--accent-blue);
  box-shadow: 0 18px 30px rgba(104, 212, 255, 0.35);
}

.step-card:nth-child(2)::before {
  background: var(--accent-green);
  box-shadow: 0 18px 30px rgba(142, 208, 129, 0.32);
}

.step-card:nth-child(3)::before {
  background: var(--accent-lilac);
  box-shadow: 0 18px 30px rgba(197, 178, 255, 0.32);
}

.testimonials {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  position: relative;
  background: linear-gradient(180deg, rgba(104, 212, 255, 0.45), rgba(255, 247, 240, 0.95));
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.85rem 2rem;
  border: 1px solid rgba(197, 178, 255, 0.24);
  display: grid;
  gap: 1.25rem;
  text-align: center;
  align-content: center;
  min-height: 280px;
  box-shadow: 0 24px 40px rgba(44, 31, 63, 0.14);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 1.1rem;
  left: 1.4rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(44, 31, 63, 0.18);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.6;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--text);
  padding: 0 0.75rem;
}

.testimonial-card figcaption {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}

.urgency-banner {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 122, 89, 0.18), rgba(104, 212, 255, 0.22));
  border: 1px solid rgba(197, 178, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-card {
  margin-top: 2.75rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(197, 178, 255, 0.28));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 31, 63, 0.08);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 28px 48px rgba(44, 31, 63, 0.16);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-lead {
  color: #4c3a6b;
  font-size: 1.05rem;
  margin: 0.5rem 0 0;
  max-width: 60ch;
}

input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(44, 31, 63, 0.16);
  font-size: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.28);
}

.privacy-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.95rem;
}

.secondary-cta svg {
  width: 1rem;
  height: 1rem;
}

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

details {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}

summary {
  font-weight: 600;
  cursor: pointer;
  outline: none;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

footer {
  padding: 3rem 1.25rem 4rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(44, 31, 63, 0.12);
  padding-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-note {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.footer-meta a:hover,
.footer-meta a:focus {
  color: var(--primary-dark);
}

.toast-container {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
  pointer-events: none;
}

.toast {
  min-width: 240px;
  max-width: calc(100vw - 4rem);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(44, 31, 63, 0.12);
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 12px 34px rgba(44, 31, 63, 0.18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: auto;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast--success {
  background: #d6f5df;
  border-color: #57c175;
}

.toast--error {
  background: #fdded5;
  border-color: #e25b35;
}

.toast--info {
  background: #d5f2ff;
  border-color: #68d4ff;
}

@media (max-width: 599px) {
  .section-scribble {
    display: none;
  }

  .hero-form-fields {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-form .primary-button {
    width: 100%;
    text-align: center;
  }

  .toast-container {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
  }

  .toast {
    max-width: none;
  }
}

@keyframes floaty {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
    border-radius: 48% 52% 60% 40%;
  }

  50% {
    transform: translate3d(18px, -18px, 0) scale(1.08);
    opacity: 0.95;
    border-radius: 60% 40% 45% 55%;
  }

  100% {
    transform: translate3d(-14px, 16px, 0) scale(0.97);
    opacity: 1;
    border-radius: 42% 58% 62% 38%;
  }
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero-side {
    align-self: stretch;
  }

  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-it-works {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .urgency-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-card > p {
    max-width: 44ch;
  }

}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    padding: 2.75rem;
  }

  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
