@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(fonts/nunito-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/pacifico-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --pink-light: #fde8f0;
  --pink-mid: #f7b8d0;
  --pink-main: #f08faf;
  --pink-dark: #d4607e;
  --teal-light: #d9f5ee;
  --teal-mid: #8de3cb;
  --teal-main: #3ec9a7;
  --teal-dark: #1e9e7e;
  --cream: #fffaf9;
  --white: #ffffff;
  --text-dark: #3a2d35;
  --text-mid: #7a6570;
  --text-light: #79636f;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Keyboard focus indicator (WCAG 2.4.7). Only shows for keyboard users. */
:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

.typography {
  line-height: 1.7;
  color: var(--text-dark);
}

.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
  line-height: 1.3;
  font-weight: 700;
  margin: 1.5em 0 0.5em;
}

.typography h1:first-child,
.typography h2:first-child,
.typography h3:first-child {
  margin-top: 0;
}

.typography h1 { font-size: 2rem; }
.typography h2 { font-size: 1.5rem; }
.typography h3 { font-size: 1.25rem; }
.typography h4 { font-size: 1.1rem; }
.typography h5 { font-size: 1rem; }
.typography h6 { font-size: 0.9rem; color: var(--text-mid); }

.typography p {
  margin: 0 0 1em;
}

.typography ul,
.typography ol {
  margin: 0 0 1em;
  padding-left: 1.75em;
}

.typography li {
  margin-bottom: 0.35em;
}

.typography li:last-child {
  margin-bottom: 0;
}

.typography ul ul,
.typography ul ol,
.typography ol ul,
.typography ol ol {
  margin-top: 0.35em;
  margin-bottom: 0;
}

.typography a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.typography a:hover {
  color: var(--teal-main);
}

.typography strong {
  font-weight: 700;
}

.typography hr {
  border: none;
  border-top: 1px solid var(--pink-light);
  margin: 2em 0;
}

.typography table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1em;
}

.typography th,
.typography td {
  text-align: left;
  padding: 0.5em 0.75em;
  border-bottom: 1px solid var(--pink-light);
}

.typography th {
  font-weight: 700;
}

.page-prose {
  padding: 3rem 1.5rem 4rem;
}

.page-prose-inner {
  max-width: 48rem;
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--pink-light);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  text-decoration: none;
}

.logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 28px;
  font-weight: 400;
  color: var(--pink-dark);
}

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

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--pink-dark);
}

.nav-links a.btn-nav-trial {
  color: white;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-login {
  color: var(--pink-dark);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background 0.2s;
}

.btn-nav-login:hover {
  background: var(--pink-light);
}

.btn-nav-trial {
  background: var(--pink-dark);
  color: white;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-nav-trial:hover {
  background: #c8536f;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 250, 249, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  padding: 32px 5%;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-mid);
  padding: 14px 0;
  border-bottom: 1.5px solid var(--pink-light);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--pink-dark);
}

.mobile-menu .mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  border-bottom: none;
  padding: 0;
}

.mobile-menu .btn-nav-login,
.mobile-menu .btn-nav-trial {
  text-align: center;
  font-size: 16px;
  padding: 14px;
}

.mobile-menu .btn-nav-login {
  color: var(--pink-dark);
  border: 1.5px solid var(--pink-dark);
  border-radius: 8px;
}

.mobile-menu .btn-nav-trial {
  color: white;
}

.hero {
  padding: 80px 5% 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero h1 .pink {
  color: var(--pink-dark);
}

.hero h1 .teal {
  color: var(--teal-dark);
}

.hero p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--pink-dark);
  color: white;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(212, 96, 126, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 96, 126, 0.45);
  background: #c8536f;
}

.btn-hero-secondary {
  background: white;
  color: var(--teal-dark);
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  border: 2.5px solid var(--teal-mid);
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}

.trust-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.trust-check {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-check svg {
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 96, 126, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 3px solid var(--pink-light);
  background: white;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.2s;
}

.slideshow-dot.active {
  background: var(--pink-dark);
  transform: scale(1.2);
}

.hero-slideshow-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--teal-light) 100%);
}

.hero-slideshow-placeholder svg {
  opacity: 0.4;
}

.blob-bg {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  z-index: -1;
}

.blob1 {
  width: 300px;
  height: 280px;
  background: var(--pink-light);
  top: -30px;
  right: -20px;
  opacity: 0.5;
}

.blob2 {
  width: 200px;
  height: 200px;
  background: var(--teal-light);
  bottom: -20px;
  left: -10px;
  opacity: 0.4;
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
}

.value-strip {
  background: var(--pink-dark);
  padding: 0 5%;
}

.value-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.value-item {
  text-align: center;
  color: white;
  padding: 28px 16px;
  position: relative;
}

.value-item+.value-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.value-label {
  font-size: 15px;
  font-weight: 800;
  display: block;
  line-height: 1.2;
  margin-bottom: 3px;
}

.value-sub {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
  display: block;
}

.usp {
  padding: 90px 5%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.usp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.usp h2 {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.usp>p {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.6;
  margin: 0 auto 50px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.usp-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--pink-light);
  transition: transform 0.25s, box-shadow 0.25s;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(212, 96, 126, 0.1);
}

.usp-card:nth-child(2) {
  border-color: var(--teal-light);
}

.usp-card:nth-child(2):hover {
  box-shadow: 0 12px 36px rgba(62, 201, 167, 0.1);
}

.usp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.usp-card h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.usp-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.6;
}

.pullquote {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--pink-light) 100%);
  padding: 40px 5%;
  text-align: center;
}

.pullquote p {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  color: var(--text-dark);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .pullquote p {
    font-size: 18px;
  }
}

.features {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 560px;
}

.section-sub {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--pink-light);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(212, 96, 126, 0.12);
}

.feature-card.teal-accent {
  border-color: var(--teal-light);
}

.feature-card.teal-accent:hover {
  box-shadow: 0 16px 48px rgba(62, 201, 167, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.fi-pink {
  background: var(--pink-light);
}

.fi-teal {
  background: var(--teal-light);
}

.fi-amber {
  background: #fef3e2;
}

.fi-purple {
  background: #f0ebff;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
}

.pill-pink {
  background: var(--pink-light);
  color: var(--pink-dark);
}

.pill-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.pill-amber {
  background: #fef3e2;
  color: #c47d0e;
}

.pill-purple {
  background: #f0ebff;
  color: #7c4dff;
}

.feature-corner-blob {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: -20px;
  right: -20px;
  opacity: 0.12;
}

.cb-pink {
  background: var(--pink-main);
}

.cb-teal {
  background: var(--teal-main);
}

.cb-amber {
  background: #f4a261;
}

.cb-purple {
  background: #7c4dff;
}

.features-hero {
  padding: 80px 5% 40px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-hero .section-title {
  margin: 0 auto 14px;
}

.features-hero .section-sub {
  margin: 0 auto 0;
  text-align: center;
}

.feature-showcase {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 5% 80px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-row-reverse {
  direction: rtl;
}

.showcase-row-reverse>* {
  direction: ltr;
}

.showcase-text {
  display: flex;
  flex-direction: column;
}

.showcase-label {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.sl-pink {
  background: var(--pink-light);
  color: var(--pink-dark);
}

.sl-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.sl-amber {
  background: #fef3e2;
  color: #c47d0e;
}

.sl-purple {
  background: #f0ebff;
  color: #7c4dff;
}

.showcase-text h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.showcase-text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.showcase-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.showcase-highlights li svg {
  flex-shrink: 0;
}

.showcase-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 3px dashed var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  background: var(--white);
}

.showcase-placeholder span {
  font-size: 14px;
  font-weight: 700;
}

.showcase-image img {
  width: 100%;
  box-shadow: 0 12px 40px rgba(58, 45, 53, 0.10);
}

@media (max-width: 820px) {
  .feature-showcase {
    gap: 64px;
  }

  .showcase-row,
  .showcase-row-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .showcase-image {
    order: -1;
  }

  .showcase-text h2 {
    font-size: 26px;
  }

  .features-hero {
    padding: 60px 5% 24px;
  }

  .features-hero .section-title {
    font-size: 32px;
  }
}
/* Blog index */

.blog-index {
  padding: 80px 5% 100px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.blog-index .section-title {
  margin: 0 auto 14px;
}

.blog-index .section-sub {
  margin: 0 auto 60px;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--pink-light);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(212, 96, 126, 0.12);
}

.blog-card-body {
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-card-meta time {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.blog-category {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 50px;
}

.cat-pink {
  background: var(--pink-light);
  color: var(--pink-dark);
}

.cat-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.cat-amber {
  background: #fef3e2;
  color: #c47d0e;
}

.cat-purple {
  background: #f0ebff;
  color: #7c4dff;
}

.cat-blue {
  background: #e7f0fe;
  color: #2563c9;
}

.cat-green {
  background: #e6f6ec;
  color: #1f9d57;
}

.blog-card h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--pink-dark);
}

/* Blog post */

.blog-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 1.5rem 80px;
}

.blog-post-header {
  margin-bottom: 40px;
}

.blog-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.blog-back:hover {
  color: var(--pink-dark);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-post-meta time {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.blog-post-header h1 {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.blog-post-body h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  margin: 36px 0 12px;
}

.blog-post-body p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}

.blog-post-body em {
  font-style: italic;
}

.blog-post-body strong {
  font-weight: 800;
  color: var(--text-dark);
}

@media (max-width: 820px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-header h1 {
    font-size: 28px;
  }

  .blog-post {
    padding: 40px 1.5rem 60px;
  }
}

/* Guides index */

.guides-index {
  padding: 80px 5% 100px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.guides-index .section-title {
  margin: 0 auto 14px;
}

.guides-index .section-sub {
  margin: 0 auto 60px;
  text-align: center;
}

.guide-section {
  margin-bottom: 56px;
  text-align: left;
}

.guide-section-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-light);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.guide-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--pink-light);
  padding: 28px 30px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(212, 96, 126, 0.12);
}

.guide-card h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.guide-card p {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.guide-card-link {
  font-size: 14px;
  font-weight: 800;
  color: var(--pink-dark);
}

/* Guide page */

.guide-post {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 1.5rem 80px;
}

.guide-post-header {
  margin-bottom: 36px;
}

.guide-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.guide-back:hover {
  color: var(--pink-dark);
}

.guide-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.guide-category {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 50px;
}

.guide-post-header h1 {
  font-size: 34px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}

.guide-lede {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 18px;
}

.guide-post-body h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  margin: 36px 0 12px;
}

.guide-post-body h2.guide-subhead {
  font-size: 17px;
  font-weight: 800;
  color: var(--pink-dark);
  margin: 30px 0 8px;
}

.guide-post-body p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}

.guide-post-body strong {
  font-weight: 800;
  color: var(--text-dark);
}

.guide-post-body em {
  font-style: italic;
}

/* Step list — the core building block for how-to guides */

.guide-steps {
  list-style: none;
  counter-reset: guide-step;
  margin: 24px 0 28px;
  padding: 0;
}

.guide-steps > li {
  position: relative;
  counter-increment: guide-step;
  padding: 0 0 24px 56px;
  margin: 0;
}

.guide-steps > li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-weight: 900;
  font-size: 16px;
}

.guide-steps > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 42px;
  bottom: 2px;
  width: 2px;
  background: var(--pink-light);
}

.guide-steps > li h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  padding-top: 5px;
}

.guide-steps > li p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Bulleted list building block */

.guide-post-body .guide-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.guide-post-body .guide-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.65;
}

.guide-post-body .guide-list li::before {
  content: "\2022";
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--pink-mid);
  font-weight: 900;
}

.guide-post-body .guide-list strong {
  color: var(--text-dark);
}

/* Note / tip callout */

.guide-note {
  background: var(--teal-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.65;
}

.guide-note strong {
  color: var(--teal-dark);
}

@media (max-width: 820px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-post-header h1 {
    font-size: 26px;
  }

  .guide-post {
    padding: 40px 1.5rem 60px;
  }
}

.how-it-works {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--teal-light) 100%);
  padding: 100px 5%;
  text-align: center;
}

.how-it-works .section-title,
.how-it-works .section-sub {
  margin: 0 auto;
}

.how-it-works .section-sub {
  margin-bottom: 60px;
}

.steps-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  width: 240px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--pink-dark);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card:nth-child(even) .step-num {
  background: var(--teal-dark);
}

.step-card h4 {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.55;
}

.arrow-between {
  display: flex;
  align-items: center;
  color: var(--pink-mid);
  font-size: 28px;
  font-weight: 900;
  padding-top: 20px;
}

.how-it-works-cta {
  margin-top: 48px;
}

.how-it-works-cta p {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.pricing {
  padding: 100px 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.pricing-toggle-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: color 0.2s;
}

.pricing-toggle-label.active {
  color: var(--text-dark);
}

.pricing-toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--pink-light);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s;
}

.pricing-toggle-switch.annual {
  background: var(--pink-dark);
}

.pricing-toggle-switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.pricing-toggle-switch.annual::after {
  transform: translateX(24px);
}

.pricing-save-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}

.pricing-trial-banner {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--pink-light) 100%);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trial-banner-icon {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trial-banner-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.trial-banner-text strong {
  color: var(--teal-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 2px solid var(--pink-light);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--pink-main);
  box-shadow: 0 20px 60px rgba(212, 96, 126, 0.18);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-dark);
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.plan-price {
  font-size: 46px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span:first-child {
  font-size: 20px;
  vertical-align: super;
  font-weight: 700;
}

.plan-period {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.plan-features li {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--pink-light);
}

.plan-features li:last-child {
  border-bottom: none;
}

.check {
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-plan-primary {
  background: var(--pink-dark);
  color: white;
  box-shadow: 0 6px 18px rgba(212, 96, 126, 0.35);
}

.btn-plan-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 96, 126, 0.4);
}

.btn-plan-outline {
  background: transparent;
  color: var(--pink-dark);
  border: 2px solid var(--pink-mid);
}

.btn-plan-outline:hover {
  background: var(--pink-light);
}

/* FAQ */

.pricing-faq {
  padding: 80px 5% 60px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-faq-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 700;
  color: var(--pink-main);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 24px 18px;
  margin: 0;
  color: var(--text-mid);
  line-height: 1.6;
  font-size: 15px;
}

/* Guarantee strip */

.pricing-guarantee {
  padding: 0 5% 60px;
}

.pricing-guarantee-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-dark);
}

/* Pricing teaser (homepage) */

.pricing-teaser {
  padding: 80px 5%;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.pricing-teaser .price-highlight {
  font-size: 56px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin: 24px 0 4px;
}

.pricing-teaser .price-highlight span {
  font-size: 24px;
  vertical-align: super;
  font-weight: 700;
}

.pricing-teaser .price-period {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-teaser .price-annual {
  font-size: 14px;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 28px;
}

.pricing-teaser .teaser-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  list-style: none;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
}

.pricing-teaser .teaser-features .check {
  color: var(--teal-dark);
  margin-right: 4px;
}

.btn-pricing-link {
  display: inline-block;
  background: var(--pink-dark);
  color: white;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(212, 96, 126, 0.35);
  transition: all 0.2s;
}

.btn-pricing-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 96, 126, 0.4);
}

@media (max-width: 600px) {
  .pricing-guarantee-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.cta-banner {
  margin: 0 5% 80px;
  background: var(--pink-dark);
  border-radius: var(--radius-xl);
  padding: 60px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -100px;
  left: -80px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -60px;
  right: 60px;
}

.cta-banner h2 {
  font-size: 40px;
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-white {
  background: white;
  color: var(--pink-dark);
  padding: 15px 34px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-cta-white:hover {
  transform: translateY(-2px);
}

.btn-cta-outline {
  background: transparent;
  color: white;
  padding: 15px 34px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.unsubscribe {
  text-align: center;
}

.unsubscribe-actions {
  margin-top: 2rem;
}

/* Scoped under .unsubscribe to override the more specific `.typography a` link styles. */
.unsubscribe .unsubscribe-btn {
  display: inline-block;
  background: var(--pink-dark);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.unsubscribe .unsubscribe-btn:hover {
  transform: translateY(-2px);
  background: var(--pink-main);
  color: #fff;
  text-decoration: none;
}

.unsubscribe .unsubscribe-backlink {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--text-mid);
  text-decoration: underline;
}

footer {
  background: var(--text-dark);
  padding: 50px 5% 32px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  font-weight: 400;
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  flex-basis: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--pink-mid);
}

/* Landing pages (minimal layout) — centred, single-CTA pages for ad campaigns.
   Reuses shared tokens + button/value-strip/cta-banner classes; only adds the
   landing-specific header, hero and footer. */

.lp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  border-bottom: 1.5px solid var(--pink-light);
  background: var(--cream);
}

.lp-hero {
  padding: 72px 5% 56px;
  text-align: center;
}

.lp-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.lp-hero .hero-badge {
  margin-bottom: 22px;
}

.lp-hero h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.lp-hero h1 .pink {
  color: var(--pink-dark);
}

.lp-hero h1 .teal {
  color: var(--teal-dark);
}

.lp-hero p {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 34px;
}

.lp-hero-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.lp-hero .trust-checks {
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}

/* Features — reuse the homepage .features / .feature-card markup, but centre the
   section heading to fit the landing page's centred layout. */
.lp-features {
  text-align: center;
  padding-top: 72px;
}

.lp-features .section-title,
.lp-features .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.lp-features .features-grid {
  text-align: left;
}

/* Pricing reassurance — answers the #1 "learn more" question on-page. */
.lp-pricing {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 80px;
  padding: 0 5%;
}

.lp-price {
  font-size: 56px;
  font-weight: 900;
  color: var(--pink-dark);
  line-height: 1;
}

.lp-price-currency {
  font-size: 30px;
  vertical-align: super;
  margin-right: 2px;
}

.lp-price-period {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-mid);
}

.lp-pricing p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.6;
  margin-top: 14px;
}

/* Slim footer */
.lp-footer {
  background: var(--text-dark);
  padding: 28px 5%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
}

.lp-footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.lp-footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-footer-links a:hover {
  color: var(--pink-mid);
}

@media (max-width: 700px) {
  .lp-hero h1 {
    font-size: 36px;
  }

  .lp-features {
    padding-top: 48px;
  }
}

/* Full-viewport positioning container (pointer-events: none) so it anchors the
   bar to the bottom without blocking use of the page — not a cookie wall. */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

/* The explicit display above overrides the UA [hidden] rule, so the JS toggle
   (banner.hidden = true/false) needs this to actually hide the banner. */
.cookie-banner[hidden] {
  display: none;
}

/* The bar itself is the interactive element. */
.cookie-bar {
  width: 100%;
  pointer-events: auto;
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.9);
  border-top: 4px solid var(--teal-main);
  padding: 22px 24px;
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.28);
  animation: cookie-bar-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cookie-banner-inner p {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
}

.cookie-banner-inner p strong {
  color: #fff;
}

.cookie-banner-inner a {
  color: var(--pink-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-btn:active {
  transform: translateY(1px);
}

.cookie-btn-accept {
  background: var(--teal-main);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

@keyframes cookie-bar-in {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

@media (max-width: 600px) {
  .cookie-bar {
    padding: 18px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
  }
}

/* Respect users who prefer no motion — show it in place, no slide/fade. */
@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-bar {
    animation: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: fadeUp 0.6s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.34s;
}

.delay-4 {
  animation-delay: 0.46s;
}

@media (max-width: 960px) {
  .usp-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .value-item:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .hero-visual {
    margin-top: 36px;
  }

  .hero-slideshow {
    max-width: 440px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-trial-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .arrow-between {
    transform: rotate(90deg);
    padding: 0;
  }
}

@media (max-width: 600px) {
  .value-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-checks {
    flex-direction: column;
    gap: 6px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

