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

:root {
  --black:       #111111;
  --text:        #1a1a1a;
  --muted:       #555;
  --white:       #ffffff;
  --bg:          #ffffff;

  /* Soft green */
  --green:       #6aab72;
  --green-light: #eaf5eb;
  --green-dark:  #3d7a45;

  /* Soft pink */
  --pink:        #e8879a;
  --pink-light:  #fceef1;
  --pink-dark:   #c45c72;

  --border:      #e0e0e0;
  --radius:      12px;
  --shadow:      0 4px 20px rgba(0,0,0,0.07);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--black);
  color: var(--white);
  font-size: 1.05rem;
  padding: 0.8rem 2rem;
}

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

.btn-nav {
  background: var(--pink);
  color: var(--white);
  padding: 0.5rem 1.1rem;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 100px; width: auto; display: block; }

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

.nav nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav nav a:not(.btn):hover { color: var(--black); }
.nav nav a.btn-nav { color: var(--white); }

/* ── Hero ── */
.hero {
  padding: 8rem 1.5rem 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content { width: 100%; }

.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  white-space: nowrap;
  line-height: 1.15;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1.5rem;
}

/* Pink accent on a keyword */
.hero h1 em {
  font-style: normal;
  color: var(--pink-dark);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.hero-call {
  margin-top: 0.9rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.hero-graphic {
  flex-shrink: 0;
  font-size: 8rem;
  line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
  animation: float 3s ease-in-out infinite;
}

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

/* ── Section base ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ── Services ── */
.services { background: var(--green-light); }
#services, #how-it-works, #signup { scroll-margin-top: 130px; }
.services .section-inner { padding-top: 2rem; }

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-promo {
  background: var(--pink-light);
  border-color: var(--pink);
}
.card-promo h3 { color: var(--pink-dark); }

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
}

.card-icon { width: 2.2rem; height: 2.2rem; margin-bottom: 0.9rem; color: var(--green-dark); }
.card-icon svg { width: 100%; height: 100%; }

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.93rem; color: var(--muted); }

/* ── How It Works ── */
.how-it-works { background: var(--white); }

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 620px;
  margin: 2.5rem auto 0;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.step-num {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.steps li strong { display: block; font-size: 1.05rem; margin-bottom: 0.2rem; color: var(--black); }
.steps li p { font-size: 0.93rem; color: var(--muted); }

/* ── Sign Up ── */
.signup { background: var(--pink-light); }
.signup h2 { color: var(--black); }
.signup p  { color: var(--muted); }

.signup-inner { text-align: center; }
.signup-inner > p { margin-bottom: 2rem; font-size: 1.05rem; }

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 420px;
  margin: 0 auto 1rem;
}

.signup-form input {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 1rem;
  outline: none;
  background: var(--white);
  color: var(--text);
}
.signup-form input::placeholder,
.signup-form textarea::placeholder { color: #aaa; }
.signup-form input:focus,
.signup-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232, 135, 154, 0.2);
}

.signup-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 1rem;
  outline: none;
  background: var(--white);
  color: var(--text);
  width: 100%;
  resize: vertical;
  font-family: inherit;
}

.notes-field { display: flex; flex-direction: column; gap: 0.4rem; }

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.notes-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.notes-hint {
  font-size: 0.8rem;
  color: #999;
  text-align: left;
}

.signup-form .btn-primary {
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
}

.service-prompt {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.8rem;
  margin-bottom: 0;
}

.service-options {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.service-option {
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  border: 2px solid var(--pink);
  background: transparent;
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.service-option:hover { background: var(--pink-light); }
.service-option.selected { background: var(--pink); color: var(--white); }

.total-tally {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin: 0.5rem 0 1rem;
}

#total-amount {
  font-size: 2rem;
  color: var(--green-dark);
}

.free-promo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 0.5rem;
}

.signup-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 1.5rem auto;
  width: 60%;
}

.auto-renew {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 1rem 0 0.5rem;
  cursor: pointer;
}

.signup-fine { font-size: 0.8rem; color: #999; margin-top: 0.3rem; }

/* ── Footer ── */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--black);
  color: #aaa;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer a { color: #ccc; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .hero h1 { white-space: normal; }
  .nav nav a:not(.btn) { display: none; }
  .logo-img { height: 70px; }
}
