:root {
  --pink: #fd46c1;
  --violet: #9674fd;
  --navy: #070769;
  --gold: #ffc72d;
  --white: #ffffff;
  --black: #141414;
  --text: #1d1d1f;
  --muted: #666b78;
  --line: #e8e8ee;
  --soft-bg: #f7f7f4;
  --soft-bg-2: #fcfcfa;
  --card: #ffffff;
  --radius: 24px;
  --radius-sm: 18px;
  --shadow: 0 14px 40px rgba(15, 18, 40, 0.06);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.7;
}

body,
p,
li,
a,
input,
textarea,
select,
button,
.btn,
.nav-link {
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.hero-kicker,
.section-kicker,
.brand-text {
  font-family: "Fraunces", serif;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--soft-bg-2);
}

.centre {
  text-align: center;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.section-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  color: var(--navy);
  font-weight: 600;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 1rem auto 0;
  color: var(--muted);
  max-width: 760px;
  font-size: 1.04rem;
}

/* NAVBAR */

#site-navbar {
  position: sticky;
  top: 0;
  z-index: 2000;
}

.site-header {
  padding: 0.75rem 0;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(15, 18, 40, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  color: #252835;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: rgba(7, 7, 105, 0.06);
  color: var(--navy);
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.8rem 1.25rem;
}

.nav-cta:hover {
  background: #e8b200;
  color: var(--white);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--black);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 18, 40, 0.08);
  }

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

  .brand-logo {
    height: 46px;
  }
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  transition: all 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: #252525;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: #d9d9e2;
}

.btn-outline:hover {
  background: #ffffff;
}

/* CARDS */

.card-grid {
  display: grid;
  gap: 1.35rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  line-height: 1.18;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 800;
}

.section-cta {
  margin-top: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-item {
  padding: 1.25rem;
  border-top: 2px solid var(--pink);
}

.feature-item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.brand-badge,
.blog-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  background: rgba(151, 116, 253, 0.10);
  color: var(--navy);
}

.blog-image {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.blog-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.step-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
}

.step-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.45;
}

/* FAQ */

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

.faq-item {
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(15, 18, 40, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.25rem;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(151, 116, 253, 0.22);
  outline-offset: -3px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-answer a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.faq-answer a:hover {
  color: var(--pink);
  text-decoration-color: var(--pink);
}

.faq-answer a:focus-visible {
  outline: 2px solid rgba(151, 116, 253, 0.28);
  outline-offset: 2px;
  border-radius: 4px;
}

/* FINAL CTA */

.final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
}

.final-cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.final-cta-box p:last-child {
  color: var(--muted);
  margin-top: 1rem;
}

.final-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* FOOTER */

.site-footer {
  padding: 4rem 0 1.5rem;
  background: #fbfbf9;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 2rem;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.footer-col h3 {
  font-size: 1.35rem;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--pink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--pink);
}

.footer-brand-subtitle {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: var(--muted);
  font-size: 0.96rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.7rem;
}

.footer-col a:hover {
  color: var(--navy);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.footer-credit {
  margin-top: 0.45rem !important;
}

.footer-credit a {
  color: var(--pink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  color: var(--navy);
}

.footer-love {
  color: var(--pink);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-contact-link i {
  color: var(--pink);
  font-size: 1rem;
  flex-shrink: 0;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .card-grid.three,
  .feature-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

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

  .header-inner {
    position: relative;
  }

  .brand-logo {
    height: 52px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4rem 0;
  }

  .card-grid.three,
  .feature-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    width: 100%;
  }

  .final-cta-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 700px) {
  .section-heading h2,
  .section-title,
  .bottom-form-copy h2,
  .spotlight-copy h2,
  .intro-band-copy h2 {
    font-size: clamp(1.75rem, 7vw, 2.15rem);
    line-height: 1.12;
  }

  .section-heading p,
  .section-lead,
  .bottom-form-copy p,
  .spotlight-copy p,
  .intro-band-copy p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

