/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --cream: #FAF6F1;
  --cream-dark: #F0EAE1;
  --white: #FFFFFF;
  --text-primary: #1A1715;
  --text-secondary: #6B6560;
  --text-tertiary: #9C9590;
  --accent: #B8533E;
  --accent-hover: #9E4433;
  --accent-light: #F3DDD8;
  --accent-glow: rgba(184, 83, 62, 0.15);
  --deep: #1A1715;
  --deep-softer: #2A2622;
  --border: #E8E2DA;
  --border-light: #F0EAE1;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise / grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

::selection {
  background: var(--accent-light);
  color: var(--text-primary);
}

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

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

button, input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.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; }

/* Hero-specific stagger (loads immediately) */
.hero-reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 1s var(--ease-out-expo) forwards;
}

.hero-reveal-1 { animation-delay: 0.15s; }
.hero-reveal-2 { animation-delay: 0.3s; }
.hero-reveal-3 { animation-delay: 0.45s; }
.hero-reveal-4 { animation-delay: 0.6s; }
.hero-reveal-5 { animation-delay: 0.75s; }

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

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-out-quart);
}

.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  background: var(--text-primary);
  color: var(--cream);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-quart);
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
============================================ */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4rem);
  color: var(--text-primary);
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  font-weight: 300;
}

.hero-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  max-width: 440px;
}

.hero-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.9375rem;
  background: var(--white);
  color: var(--text-primary);
  transition: border-color 0.3s;
}

.hero-form input::placeholder { color: var(--text-tertiary); }
.hero-form input:focus { border-color: var(--accent); }

.hero-form button {
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-quart);
  white-space: nowrap;
}

.hero-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--white);
  border-radius: 36px;
  border: 6px solid var(--text-primary);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 32px 64px rgba(26, 23, 21, 0.12),
    0 16px 32px rgba(26, 23, 21, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--text-primary);
  border-radius: 0 0 18px 18px;
  z-index: 5;
}

.phone-screen {
  padding: 40px 16px 0;
  height: 100%;
  background: linear-gradient(180deg, #FAF6F1 0%, #FFFFFF 100%);
  display: flex;
  flex-direction: column;
}

.phone-header {
  text-align: center;
  margin-bottom: 14px;
}

.phone-header h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.phone-search {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}

.phone-search:focus-within {
  border-color: var(--accent);
}

.phone-search .search-icon {
  width: 16px;
  height: 16px;
  border: 2px solid var(--text-tertiary);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.phone-search .search-icon::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 6px;
  height: 2px;
  background: var(--text-tertiary);
  transform: rotate(45deg);
  border-radius: 2px;
}

.phone-search input {
  font-size: 0.75rem;
  color: var(--text-primary);
  width: 100%;
  padding: 0;
  background: transparent;
}

.phone-search input::placeholder {
  color: var(--text-tertiary);
}

.phone-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.phone-filter {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 0.625rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s var(--ease-out-quart);
  user-select: none;
}

.phone-filter:hover {
  border-color: var(--accent-light);
}

.phone-filter.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.phone-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}

.phone-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.phone-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
}

.phone-card-name {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.phone-card-role {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.phone-card-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.phone-card-tag {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.5625rem;
  font-weight: 500;
  background: var(--cream);
  color: var(--text-secondary);
}

.phone-card-list {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
}

.phone-card.hidden {
  display: none;
}

/* Decorative elements */
.hero-deco-1 {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(80px);
  z-index: 0;
}

.hero-deco-2 {
  position: absolute;
  bottom: 20%;
  left: -5%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(91, 138, 114, 0.08);
  filter: blur(60px);
  z-index: 0;
}

.hero-deco-dots {
  position: absolute;
  top: 30%;
  right: 2%;
  display: grid;
  grid-template-columns: repeat(5, 6px);
  gap: 10px;
  opacity: 0.2;
  z-index: 0;
}

.hero-deco-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-primary);
}

/* ============================================
   PHILOSOPHY
============================================ */
.philosophy {
  padding: 8rem 0;
  background: var(--deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 83, 62, 0.08) 0%, transparent 70%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.25;
  font-style: italic;
  color: var(--cream);
  position: relative;
}

.philosophy-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5em;
  left: -0.05em;
  font-size: 5rem;
  color: var(--accent);
  font-style: normal;
  line-height: 1;
  opacity: 0.5;
}

.philosophy-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(250, 246, 241, 0.7);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.philosophy-text p:last-child { margin-bottom: 0; }

.philosophy-text strong {
  color: var(--cream);
  font-weight: 500;
}

.philosophy-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2rem;
  border-radius: 2px;
}

/* ============================================
   FEATURES / TWO MODES
============================================ */
.features {
  padding: 8rem 0;
}

.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.features-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.features-header p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 23, 21, 0.06);
  border-color: var(--accent-light);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card:first-child .feature-card-icon {
  background: var(--accent-light);
  color: var(--accent);
}

.feature-card:last-child .feature-card-icon {
  background: #E0EDDF;
  color: #4A7A5B;
}

.feature-card .icon-search {
  width: 24px;
  height: 24px;
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  position: relative;
}

.feature-card .icon-search::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 10px;
  height: 2.5px;
  background: var(--accent);
  transform: rotate(45deg);
  border-radius: 2px;
}

.feature-card .icon-sparkle {
  position: relative;
  width: 24px;
  height: 24px;
}

.feature-card .icon-sparkle::before,
.feature-card .icon-sparkle::after {
  content: '';
  position: absolute;
  background: #4A7A5B;
  border-radius: 50%;
}

.feature-card .icon-sparkle::before {
  width: 24px;
  height: 4px;
  top: 10px;
  left: 0;
  border-radius: 4px;
}

.feature-card .icon-sparkle::after {
  width: 4px;
  height: 24px;
  top: 0;
  left: 10px;
  border-radius: 4px;
}

.feature-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-card .badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.feature-card:first-child .badge {
  background: var(--accent-light);
  color: var(--accent);
}

.feature-card:last-child .badge {
  background: #E0EDDF;
  color: #4A7A5B;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.feature-card-visual {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 14px;
}

/* Search mode visual */
.search-visual-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
  transition: border-color 0.3s;
}

.search-visual-bar:focus-within {
  border-color: var(--accent);
}

.search-visual-bar .dot {
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.search-visual-bar .dot::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 5px;
  height: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}

.search-visual-bar input {
  font-size: 0.8125rem;
  color: var(--text-primary);
  width: 100%;
  padding: 0;
  background: transparent;
}

.search-visual-bar input::placeholder {
  color: var(--text-tertiary);
}

.search-visual-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.search-visual-chips span {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s var(--ease-out-quart);
  user-select: none;
}

.search-visual-chips span:hover {
  border-color: var(--accent-light);
}

.search-visual-chips span.filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.search-results-list {
  max-height: 180px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
  margin-top: 12px;
}

.search-result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 6px;
}

.search-result-row .result-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.search-result-row .result-info {
  flex: 1;
  min-width: 0;
}

.search-result-row .result-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.search-result-row .result-detail {
  font-size: 0.625rem;
  color: var(--text-tertiary);
}

.search-result-row.hidden {
  display: none;
}

/* Discover mode visual */
.discover-visual-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.discover-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.discover-mini-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.discover-mini-info {
  flex: 1;
}

.discover-mini-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.discover-mini-detail {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
}

.discover-mini-match {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #4A7A5B;
  background: #E0EDDF;
  padding: 3px 8px;
  border-radius: 6px;
}

/* ============================================
   HOW IT WORKS
============================================ */
.how-it-works {
  padding: 8rem 0;
  background: var(--cream-dark);
}

.how-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 4rem;
}

.how-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0.75rem 0;
  letter-spacing: -0.02em;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.how-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.how-step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
}

.how-step h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.how-step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* Connector lines between steps */
.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 3.5rem;
  right: -1rem;
  width: 2rem;
  height: 1.5px;
  background: var(--border);
}

/* ============================================
   FAQ
============================================ */
.faq {
  padding: 8rem 0;
}

.faq-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.faq-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0.75rem 0;
  letter-spacing: -0.02em;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-tertiary);
  transition: transform 0.3s var(--ease-out-quart), color 0.3s;
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
  color: var(--accent);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  overflow: hidden;
  transition: height 0.4s var(--ease-out-expo);
}

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

.faq-answer p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.final-cta p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.final-cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.final-cta-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 1rem;
  background: var(--white);
  color: var(--text-primary);
  transition: border-color 0.3s;
}

.final-cta-form input::placeholder { color: var(--text-tertiary); }
.final-cta-form input:focus { border-color: var(--accent); }

.final-cta-form button {
  padding: 1rem 2.25rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-quart);
  white-space: nowrap;
}

.final-cta-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.final-cta-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

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

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

.footer-col ul a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.3s;
  font-weight: 400;
}

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

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

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero { padding: 8rem 0 4rem; text-align: center; }

  .hero-subtitle { margin: 0 auto; }

  .hero-form {
    max-width: 100%;
    justify-content: center;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-grid { gap: 1.5rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 7rem 0 3rem; }
  .hero h1 { font-size: 2.25rem; }

  .hero-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-form button { width: 100%; }

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

  .how-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .how-step:not(:last-child)::after { display: none; }

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

  .final-cta-form button { width: 100%; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 240px;
    height: 480px;
  }
}
