/* ============================================================
   OpenHeart — Premium Landing Page Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,700;1,800&display=swap');

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --primary:            #702ae1;
  --primary-light:      #b28cff;
  --primary-container:  #ede9fe;
  --coral:              #aa2c32;
  --coral-light:        #fce4e4;
  --bg:                 #fcf5ed;
  --surface:            #ffffff;
  --surface-low:        #f5ede3;
  --surface-medium:     #ede3d9;
  --text:               #312e29;
  --text-secondary:     #7a6f65;
  --text-light:         #b5a99f;
  --dark-bg:            #1a1530;
  --dark-mid:           #2d2550;
  --dark-border:        rgba(255,255,255,0.1);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 9999px;

  --shadow-card:    0 4px 24px rgba(112,42,225,0.06);
  --shadow-hover:   0 16px 40px rgba(112,42,225,0.12);
  --shadow-button:  0 8px 32px rgba(112,42,225,0.35);
  --shadow-phone:   0 40px 80px rgba(0,0,0,0.3);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   Utilities
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pill {
  display: inline-block;
  background: var(--primary-container);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(252, 245, 237, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(112, 42, 225, 0.08);
}

.navbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.navbar__links a:hover {
  color: var(--primary);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.navbar__cta:hover {
  background: #5a1fc8;
  transform: translateY(-1px);
}

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

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(252, 245, 237, 0.98);
  border-top: 1px solid rgba(112,42,225,0.08);
  padding: 12px 24px 20px;
}

.navbar__mobile-menu.is-open {
  display: flex;
}

.navbar__mobile-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(112,42,225,0.06);
  transition: color 0.2s;
}

.navbar__mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 8px;
}

.navbar__mobile-menu a:hover {
  color: var(--primary);
}

.navbar__mobile-cta {
  display: inline-block;
  background: var(--primary) !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-align: center;
  margin-top: 8px;
  border-bottom: none !important;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(112,42,225,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(170,44,50,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(112,42,225,0.2);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(112,42,225,0.08);
}

.hero__title {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  max-width: 520px;
  margin-bottom: 20px;
}

.hero__title .gradient-text {
  background: linear-gradient(135deg, #702ae1 0%, #aa2c32 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 440px;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-button);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(112,42,225,0.45);
  background: #5a1fc8;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--primary);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--primary-container);
  transform: translateY(-2px);
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  margin-left: -10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.avatar-stack .avatar:first-child {
  margin-left: 0;
}

.avatar-stack .avatar:nth-child(1) { background: linear-gradient(135deg, #702ae1, #b28cff); }
.avatar-stack .avatar:nth-child(2) { background: linear-gradient(135deg, #aa2c32, #f87171); }
.avatar-stack .avatar:nth-child(3) { background: linear-gradient(135deg, #059669, #34d399); }
.avatar-stack .avatar:nth-child(4) { background: linear-gradient(135deg, #d97706, #fbbf24); }
.avatar-stack .avatar:nth-child(5) { background: linear-gradient(135deg, #2563eb, #60a5fa); }

.hero__social-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero__social-text strong {
  color: var(--text);
}

/* ============================================================
   Phone Mockup
   ============================================================ */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 48px 32px;
}

.phone-frame {
  width: 272px;
  height: 556px;
  border-radius: 40px;
  background: #1a1530;
  box-shadow: var(--shadow-phone), 0 0 0 8px #2a2040;
  position: relative;
  padding: 14px;
  flex-shrink: 0;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 72px;
  height: 20px;
  background: #1a1530;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 10px;
  flex-shrink: 0;
}

.phone-content {
  padding: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.phone-greeting {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-secondary);
}

.phone-avatar-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #702ae1, #b28cff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}

.phone-label {
  display: inline-block;
  background: var(--primary-container);
  color: var(--primary);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 9999px;
  align-self: flex-start;
  text-transform: uppercase;
}

.phone-spark-card {
  border-radius: 16px;
  background: linear-gradient(135deg, #702ae1 0%, #5a1fc8 45%, #aa2c32 100%);
  padding: 14px;
  color: #fff;
  flex-shrink: 0;
}

.phone-spark-card .card-eyebrow {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.65;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.phone-spark-card .card-title {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.phone-spark-card .card-question {
  font-size: 9px;
  opacity: 0.82;
  line-height: 1.5;
  margin-bottom: 10px;
}

.phone-spark-card .card-btn {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 9999px;
}

.phone-section-label {
  font-size: 8px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.phone-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
}

.phone-cat-card {
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phone-cat-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.phone-cat-name {
  font-size: 8px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.phone-cat-count {
  font-size: 7px;
  color: var(--text-secondary);
}

.phone-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--surface-medium);
  flex-shrink: 0;
  background: var(--surface);
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 6px;
  font-weight: 600;
  color: var(--text-light);
}

.phone-nav-item.active {
  color: var(--primary);
}

.phone-nav-dot {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--surface-low);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.phone-nav-item.active .phone-nav-dot {
  background: var(--primary-container);
}

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 10;
}

.float-card--top {
  top: 16px;
  right: -8px;
  animation: float 4s ease-in-out infinite;
}

.float-card--bottom {
  bottom: 80px;
  left: -16px;
  animation: float 4s ease-in-out infinite 2s;
}

.float-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.float-card__icon--coral { background: var(--coral-light); }
.float-card__icon--green { background: #d1fae5; }

.float-card__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.float-card__sub {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 1px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}

/* ============================================================
   Features Section
   ============================================================ */
.features {
  background: var(--surface);
  padding: 100px 24px;
}

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

.feature-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(112,42,225,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   How It Works
   ============================================================ */
.how-it-works {
  background: var(--bg);
  padding: 100px 24px;
}

.steps-list {}

.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  padding: 44px 0;
}

.step:not(:last-child) {
  border-bottom: 1px solid var(--surface-medium);
}

.step__number {
  font-size: 72px;
  font-weight: 800;
  color: rgba(112,42,225,0.12);
  line-height: 1;
  letter-spacing: -3px;
  padding-top: 4px;
}

.step__content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step__content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   Stats Section
   ============================================================ */
.stats {
  background: linear-gradient(135deg, #1a1530 0%, #2d2550 100%);
  padding: 80px 24px;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   Categories Section
   ============================================================ */
.categories {
  background: var(--surface);
  padding: 100px 24px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  border-radius: 20px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cat-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}

.cat-card__desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #702ae1 0%, #5a1fc8 50%, #aa2c32 100%);
  padding: 110px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__blob1 {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(60px);
  pointer-events: none;
}

.cta-section__blob2 {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  filter: blur(80px);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-white:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--dark-bg);
  padding: 60px 24px 40px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.footer__logo {
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  font-weight: 400;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: rgba(255,255,255,0.9);
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
}

.footer__made {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  font-weight: 400;
}

/* ============================================================
   Inner Page: Hero
   ============================================================ */
.inner-hero {
  padding: 140px 24px 64px;
  background: linear-gradient(160deg, rgba(112,42,225,0.07) 0%, var(--bg) 55%);
  text-align: center;
  border-bottom: 1px solid rgba(112,42,225,0.07);
}

.inner-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.inner-hero p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

.inner-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(112,42,225,0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s ease;
  font-family: inherit;
  border: none;
  line-height: 1.4;
}

.faq-question:hover {
  background: rgba(112,42,225,0.025);
}

.faq-chevron {
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid rgba(112,42,225,0.06);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-contact-card {
  background: linear-gradient(135deg, var(--primary-container) 0%, rgba(252,228,228,0.5) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid rgba(112,42,225,0.1);
}

.faq-contact-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.faq-contact-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(112,42,225,0.08);
  border: 1px solid rgba(112,42,225,0.07);
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(112,42,225,0.15);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(112,42,225,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a6f65' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: var(--shadow-button);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 8px;
}

.form-submit:hover {
  background: #5a1fc8;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(112,42,225,0.45);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.form-success p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.contact-email-block {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(112,42,225,0.06);
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-email-block__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-container);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-email-block__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-email-block__email {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================================
   Legal Pages
   ============================================================ */
.legal-section {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(112,42,225,0.06);
  margin-bottom: 14px;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.legal-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--text);
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 22px;
}

.legal-section ul li {
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
  font-weight: 500;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 52px;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta-row {
    justify-content: center;
  }

  .hero__social-proof {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .phone-frame {
    width: 232px;
    height: 472px;
  }

  .float-card--top {
    right: 0px;
    top: 8px;
  }

  .float-card--bottom {
    left: 0px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .step__number {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .stat-item__number {
    font-size: 44px;
  }

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

  .footer__top {
    flex-direction: column;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 15px;
    padding: 14px 22px;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .inner-hero {
    padding: 110px 20px 48px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .legal-section {
    padding: 24px 20px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 16px 20px 20px;
  }
}
