/* ============================================================
   GROWTIDE — Main Stylesheet
   Design system: Growth Green #1B8A6B | Sunshine Amber #F5A623
   Warm White #F8F6F0 | Deep Slate #2E3A45
   Font: Nunito (matches the app)
   ============================================================ */

:root {
  --green: #1B8A6B;
  --green-dark: #136650;
  --green-light: #e8f5f0;
  --amber: #F5A623;
  --amber-dark: #d4891a;
  --coral: #F26C4F;
  --sky: #4A90D9;
  --purple: #7B5EA7;
  --warm-white: #F8F6F0;
  --slate: #2E3A45;
  --slate-mid: #4a5d6a;
  --slate-light: #8fa3b1;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(46,58,69,0.08);
  --shadow-md: 0 8px 32px rgba(46,58,69,0.12);
  --shadow-lg: 0 24px 64px rgba(46,58,69,0.16);
  --shadow-green: 0 16px 48px rgba(27,138,107,0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Nunito', sans-serif;
  --max-w: 1140px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--warm-white);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.subheadline {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--slate-mid);
}

.label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,138,107,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 24px rgba(27,138,107,0.4);
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,166,35,0.3);
}
.btn-amber:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(46,58,69,0.1);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--slate); }
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; animation: logoGlow 3s ease-in-out infinite; }

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(245,166,35,0)); }
  50% { filter: drop-shadow(0 0 8px rgba(245,166,35,0.7)); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--slate-mid); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(245,166,35,0.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,0.4) !important; }
.nav-mobile-toggle { display: none; cursor: pointer; }
.nav-mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-mobile-toggle span { background: var(--slate); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a3a4a 0%, #1B8A6B 60%, #136650 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

/* Animated background dots */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(245,166,35,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(245,166,35,0.2);
  animation: floatDot linear infinite;
}
.hero-dot:nth-child(1) { width: 8px; height: 8px; left: 10%; top: 20%; animation-duration: 8s; animation-delay: 0s; }
.hero-dot:nth-child(2) { width: 12px; height: 12px; left: 20%; top: 70%; animation-duration: 12s; animation-delay: -3s; }
.hero-dot:nth-child(3) { width: 6px; height: 6px; left: 70%; top: 15%; animation-duration: 9s; animation-delay: -5s; }
.hero-dot:nth-child(4) { width: 10px; height: 10px; left: 85%; top: 60%; animation-duration: 11s; animation-delay: -2s; }
.hero-dot:nth-child(5) { width: 5px; height: 5px; left: 50%; top: 85%; animation-duration: 7s; animation-delay: -6s; }
.hero-dot:nth-child(6) { width: 14px; height: 14px; left: 35%; top: 10%; animation-duration: 13s; animation-delay: -1s; background: rgba(255,255,255,0.1); }

@keyframes floatDot {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--amber);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title span { color: var(--amber); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 500;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-signup {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-signup-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signup-form input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  outline: none;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.5); }
.signup-form input:focus { border-color: var(--amber); background: rgba(255,255,255,0.2); }
.signup-form button {
  width: 100%;
  padding: 16px;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.signup-form button:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.5);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.hero-trust-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 50%; }

/* Hero phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 0.9s ease 0.2s both;
}

.hero-phone-wrap {
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(-2deg); }
}

.hero-phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.3) 0%, transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-phone-img {
  width: 280px;
  max-width: 100%;
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-badge-icon { font-size: 1.4rem; }
.hero-badge-text { font-size: 0.75rem; font-weight: 700; color: var(--slate); }
.hero-badge-text strong { display: block; font-size: 0.9rem; color: var(--green); }
.hero-badge-1 { top: 10%; right: -30px; animation: badgePulse 3s ease-in-out infinite; }
.hero-badge-2 { bottom: 20%; left: -30px; animation: badgePulse 3s ease-in-out 1.5s infinite; }

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-lg); }
  50% { transform: scale(1.04); box-shadow: 0 32px 80px rgba(46,58,69,0.2); }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
}

/* Keyframe animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-section {
  padding: 96px 0;
  background: var(--white);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.pain-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--amber));
}
.pain-emoji { font-size: 2.2rem; margin-bottom: 20px; }
.pain-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--slate); margin-bottom: 10px; }
.pain-card p { font-size: 0.95rem; color: var(--slate-mid); line-height: 1.6; }

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 96px 0;
  background: var(--warm-white);
}
.features-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(27,138,107,0.08);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27,138,107,0.2);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.feature-icon.green { background: var(--green-light); }
.feature-icon.amber { background: rgba(245,166,35,0.12); }
.feature-icon.purple { background: rgba(123,94,167,0.1); }
.feature-icon.sky { background: rgba(74,144,217,0.1); }
.feature-icon.coral { background: rgba(242,108,79,0.1); }
.feature-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--slate); margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; color: var(--slate-mid); line-height: 1.65; }
.feature-tag {
  display: inline-block;
  margin-top: auto;
  padding: 4px 12px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50px;
}
.feature-tag.unique { background: rgba(245,166,35,0.12); color: var(--amber-dark); }

/* ============================================================
   SCREENSHOTS SECTION
   ============================================================ */
.screenshots-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--warm-white) 100%);
  overflow: hidden;
}
.screenshots-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.screenshots-track-wrap {
  position: relative;
  overflow: hidden;
}
.screenshots-track-wrap::before,
.screenshots-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.screenshots-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--warm-white), transparent); }
.screenshots-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--warm-white), transparent); }
.screenshots-track {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  overflow-x: scroll;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.screenshots-track::-webkit-scrollbar { display: none; }
.screenshots-track:active { cursor: grabbing; }
.screenshot-item {
  flex-shrink: 0;
  text-align: center;
}
.screenshot-item img {
  height: 480px;
  width: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.screenshot-item:hover img { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.screenshot-label {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-mid);
}
.screenshots-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.screenshots-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(27,138,107,0.2);
  background: var(--white);
  color: var(--green);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.screenshots-nav button:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: scale(1.1);
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-section {
  padding: 96px 0;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(27,138,107,0.2) 0%, transparent 60%);
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.how-content .section-tag { color: var(--amber); }
.how-content .section-tag::before { background: var(--amber); }
.how-content h2 { color: var(--white); margin-bottom: 16px; }
.how-content p { color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.how-step-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(27,138,107,0.3);
  border: 1px solid rgba(27,138,107,0.5);
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.how-step-content h4 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.how-step-content p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }
.how-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 800;
  font-size: 0.95rem;
  margin-top: 32px;
  transition: var(--transition);
}
.how-link:hover { gap: 12px; }
.how-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.how-phone-stack {
  position: relative;
  width: 260px;
}
.how-phone-1 {
  width: 220px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.how-phone-2 {
  width: 200px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  position: absolute;
  right: -40px;
  top: 40px;
  z-index: 1;
  opacity: 0.7;
}

/* ============================================================
   ABOUT / FOUNDER SECTION
   ============================================================ */
.about-section {
  padding: 96px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-photo-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green);
  color: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-photo-badge strong { display: block; font-size: 1.8rem; font-weight: 900; }
.about-photo-badge span { font-size: 0.75rem; font-weight: 700; opacity: 0.85; }
.about-content .section-tag { color: var(--amber); }
.about-content .section-tag::before { background: var(--amber); }
.about-content h2 { color: var(--slate); margin-bottom: 20px; }
.about-content p { color: var(--slate-mid); line-height: 1.75; margin-bottom: 16px; font-size: 1.05rem; }
.about-content p strong { color: var(--slate); font-weight: 800; }
.about-quote {
  border-left: 4px solid var(--amber);
  padding: 16px 20px;
  background: rgba(245,166,35,0.06);
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--slate);
  font-weight: 600;
}

/* ============================================================
   SIGNUP CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green) 0%, #136650 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,166,35,0.15) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 40px; font-size: 1.1rem; }
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.cta-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { border-color: var(--amber); background: rgba(255,255,255,0.2); }
.cta-form button {
  padding: 16px 28px;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cta-form button:hover { background: var(--amber-dark); transform: translateY(-2px); }
.cta-trust {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 20px;
  color: var(--white);
  transition: var(--transition);
}
.store-badge:hover { background: rgba(0,0,0,0.35); transform: translateY(-2px); }
.store-badge-icon { font-size: 1.6rem; }
.store-badge-text { text-align: left; }
.store-badge-text span { display: block; font-size: 0.7rem; font-weight: 600; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.05em; }
.store-badge-text strong { font-size: 0.95rem; font-weight: 800; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--slate);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 16px;
}
.footer-logo img { width: 32px; height: 32px; border-radius: 8px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 240px; }
.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 20px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); font-weight: 600; transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ============================================================
   INNER PAGE STYLES (How It Works, Blog, Privacy, Terms)
   ============================================================ */
.inner-hero {
  background: linear-gradient(135deg, #1a3a4a 0%, #1B8A6B 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero h1 { color: var(--white); margin-bottom: 16px; }
.inner-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.inner-content {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 48px 80px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .inner-content {
    max-width: 100%;
    padding: 40px 48px 64px;
  }
}

@media (max-width: 768px) {
  .inner-content {
    padding: 32px 24px 48px;
  }
}

@media (max-width: 480px) {
  .inner-content {
    padding: 24px 16px 40px;
  }
}
.inner-content h2 { color: var(--slate); margin: 48px 0 16px; font-size: 1.5rem; font-weight: 800; }
.inner-content h3 { color: var(--slate); margin: 32px 0 12px; font-size: 1.15rem; font-weight: 800; }
.inner-content p { color: var(--slate-mid); margin-bottom: 16px; line-height: 1.75; }
.inner-content ul { margin: 16px 0 24px 24px; }
.inner-content ul li { color: var(--slate-mid); line-height: 1.7; margin-bottom: 8px; list-style: disc; }
.inner-content a { color: var(--green); font-weight: 700; }
.inner-content a:hover { text-decoration: underline; }
.inner-content a.btn-primary { color: var(--white); text-decoration: none; }
.last-updated {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 40px;
}

/* How it works steps */
.hiw-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(46,58,69,0.08);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num {
  width: 56px; height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  flex-shrink: 0;
}
.hiw-step-content h3 { color: var(--slate); font-size: 1.3rem; margin-bottom: 10px; }
.hiw-step-content p { color: var(--slate-mid); line-height: 1.7; }
.hiw-step-img {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 300px;
}

/* Blog placeholder */
.blog-coming {
  text-align: center;
  padding: 96px 24px;
}
.blog-coming-icon { font-size: 4rem; margin-bottom: 24px; }
.blog-coming h2 { color: var(--slate); margin-bottom: 16px; }
.blog-coming p { color: var(--slate-mid); max-width: 480px; margin: 0 auto 32px; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-phone-img { width: 220px; }
  .hero-badge-1 { right: -10px; }
  .hero-badge-2 { left: -10px; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }

  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-phone-2 { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-badge { bottom: -10px; right: 10px; }

  .cta-form { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .hiw-step { grid-template-columns: 1fr; }
  .hiw-step-num { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .store-badges { flex-direction: column; align-items: center; }
  .hero-phone-img { width: 200px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-amber { color: var(--amber); }
.text-white { color: var(--white); }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-auto { margin-top: auto; }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--slate);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--white); font-size: 1.4rem; font-weight: 800; }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.6rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* Success state for forms */
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--white);
}
.form-success.show { display: block; }
.form-success h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; opacity: 0.8; }
