/* ================================================
   CafeConnects — Global Design System
   Premium Coffee-Inspired Brand
   ================================================ */

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

/* ── Design Tokens ───────────────────────────── */
:root {
  /* Colors */
  --espresso:    #3E2723;
  --coffee:      #5D4037;
  --latte:       #D7CCC8;
  --rose:        #F7D8D8;
  --cream:       #FFF8F3;
  --white:       #FFFFFF;
  --dark:        #1A0F0A;
  --mid-dark:    #2C1810;

  /* Text */
  --text-primary:   #1A0F0A;
  --text-secondary: #5D4037;
  --text-muted:     #8D6E63;
  --text-light:     #BCAAA4;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #FFF8F3 0%, #F7D8D8 50%, #FFF8F3 100%);
  --grad-warm:    linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
  --grad-subtle:  linear-gradient(180deg, #FFF8F3 0%, #FFFFFF 100%);
  --grad-glass:   linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.10) 100%);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(62,39,35,0.08);
  --shadow-md:  0 8px 32px rgba(62,39,35,0.12);
  --shadow-lg:  0 24px 64px rgba(62,39,35,0.16);
  --shadow-xl:  0 40px 80px rgba(62,39,35,0.20);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py: 120px;
  --section-py-sm: 80px;

  /* Borders */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; border: none; }

/* ── Typography ──────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--espresso);
}

.display-xl {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
}

.display-lg {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.display-md {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.display-sm {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.body-lg { font-size: 18px; line-height: 1.7; }
.body-md { font-size: 16px; line-height: 1.6; }
.body-sm { font-size: 14px; line-height: 1.5; }
.label   { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Layout ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section-sm { padding: var(--section-py-sm) 0; }

/* ── Navbar ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(255, 248, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(215, 204, 200, 0.5);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--espresso);
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-warm);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '☕';
  font-size: 18px;
  filter: brightness(10);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--coffee);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--espresso);
  background: rgba(62,39,35,0.06);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--latte);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s var(--ease-smooth);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--coffee);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.nav-dropdown-item:hover {
  background: var(--cream);
  color: var(--espresso);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav {
  background: var(--espresso);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all 0.2s var(--ease-smooth);
}

.btn-nav:hover {
  background: var(--coffee);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(62,39,35,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

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

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease-smooth);
  cursor: pointer;
  padding: 14px 28px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--espresso);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(62,39,35,0.25);
}

.btn-primary:hover {
  background: var(--coffee);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(62,39,35,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--espresso);
}

.btn-secondary:hover {
  background: var(--espresso);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-rose {
  background: var(--rose);
  color: var(--espresso);
}

.btn-rose:hover {
  background: #f0c0c0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247,216,216,0.6);
}

.btn-white {
  background: var(--white);
  color: var(--espresso);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Cards ───────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(215,204,200,0.5);
  transition: all 0.3s var(--ease-smooth);
  overflow: hidden;
}

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

.card-glass {
  background: var(--grad-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
}

.card-cream {
  background: var(--cream);
  border: 1px solid var(--rose);
  border-radius: var(--radius-lg);
}

/* ── Section Labels ──────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coffee);
  background: var(--rose);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--espresso);
  border-radius: 50%;
}

/* ── Section Headers ─────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ── Stats ───────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215,204,200,0.5);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-smooth);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--espresso);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.feature-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(215,204,200,0.5);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--rose);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--rose);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--espresso);
}

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

/* ── Testimonials ────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(215,204,200,0.5);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-smooth);
}

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

.testimonial-quote {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-quote::before { content: '"'; }
.testimonial-quote::after  { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--espresso);
}

.testimonial-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.stars {
  color: #E8A045;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ── FAQ ─────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(215,204,200,0.6);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: var(--espresso);
  gap: 16px;
  transition: color 0.2s;
}

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

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-spring);
  color: var(--espresso);
}

.faq-item.open .faq-icon {
  background: var(--espresso);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ── Forms ───────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--latte);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--coffee);
  box-shadow: 0 0 0 3px rgba(93,64,55,0.1);
}

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

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

/* ── Steps / Timeline ────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(62,39,35,0.3);
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--espresso);
}

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

/* ── Tags ────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--rose);
  color: var(--coffee);
}

.tag-dark {
  background: rgba(62,39,35,0.1);
  color: var(--espresso);
}

/* ── Badge ───────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.badge-green  { background: #E8F5E9; color: #2E7D32; }
.badge-amber  { background: #FFF8E1; color: #F57F17; }
.badge-blue   { background: #E3F2FD; color: #1565C0; }
.badge-rose   { background: var(--rose); color: var(--coffee); }

/* ── App Store Buttons ───────────────────────── */
.app-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-smooth);
  border: 1px solid rgba(255,255,255,0.1);
}

.app-btn:hover {
  background: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.app-btn-icon { font-size: 28px; }

.app-btn-text small {
  display: block;
  font-size: 10px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.app-btn-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
}

/* ── Phone Mockup ────────────────────────────── */
.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--dark);
  border-radius: 44px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), inset 0 0 0 2px rgba(255,255,255,0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: var(--dark);
  border-radius: 14px;
  z-index: 10;
  border: 2px solid rgba(255,255,255,0.08);
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: var(--cream);
  margin: 4px;
  border-radius: 40px;
  overflow: hidden;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
  color: rgba(255,255,255,0.7);
}

.social-icon:hover {
  background: var(--coffee);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.footer-links li { margin-bottom: 12px; }

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--latte); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--latte); }

/* ── Animations ──────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

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

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

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s var(--ease-smooth);
}

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

/* ── Background Decorations ──────────────────── */
.bg-dots {
  background-image: radial-gradient(circle, rgba(215,204,200,0.5) 1px, transparent 1px);
  background-size: 32px 32px;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(215,204,200,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215,204,200,0.3) 1px, transparent 1px);
  background-size: 48px 48px;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

/* ── Dividers ────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--latte), transparent);
  margin: 0;
}

/* ── Not a Dating App Banner ─────────────────── */
.trust-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(62,39,35,0.06);
  border: 1px solid rgba(62,39,35,0.15);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--espresso);
}

.trust-banner .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse-ring 2s infinite;
  box-shadow: 0 0 0 0 rgba(76,175,80,0.4);
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(76,175,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}

/* ── Pricing Cards ───────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 2px solid rgba(215,204,200,0.5);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--latte);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-card.featured {
  background: var(--grad-warm);
  border-color: transparent;
  color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
  color: var(--white) !important;
}

.pricing-card.featured .price-sub { color: rgba(255,255,255,0.7); }

.price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--espresso);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price span { font-size: 20px; font-weight: 500; }
.price-sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.pricing-features { margin: 24px 0; }

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(215,204,200,0.4);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #2E7D32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-card.featured .check {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ── Mobile Navigation ───────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255,248,243,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  font-size: 20px;
  padding: 14px 24px;
  width: 280px;
  text-align: center;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: var(--espresso);
}

/* ── Hero Illustration ───────────────────────── */
.hero-visual {
  position: relative;
  flex-shrink: 0;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  border: 1px solid rgba(215,204,200,0.6);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) { animation-delay: -1s; }
.floating-card:nth-child(3) { animation-delay: -2s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-py: 80px;
    --section-py-sm: 60px;
  }

  .nav-links, .nav-cta .btn-nav { display: none; }
  .hamburger { display: flex; }

  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .steps-grid    { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal  { justify-content: center; flex-wrap: wrap; gap: 16px; }

  .app-buttons { justify-content: center; }
  .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .stats-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container   { padding: 0 16px; }

  .display-xl { font-size: 40px; }
  .display-lg { font-size: 32px; }

  .stat-number { font-size: 36px; }
}

/* ── Utility ──────────────────────────────────── */
.text-center    { text-align: center; }
.text-espresso  { color: var(--espresso); }
.text-coffee    { color: var(--coffee); }
.text-muted     { color: var(--text-muted); }
.text-white     { color: var(--white); }

.bg-cream       { background: var(--cream); }
.bg-dark        { background: var(--dark); }
.bg-espresso    { background: var(--espresso); }
.bg-white       { background: var(--white); }

.flex           { display: flex; }
.flex-center    { display: flex; align-items: center; justify-content: center; }
.flex-between   { display: flex; align-items: center; justify-content: space-between; }
.gap-8          { gap: 8px; }
.gap-12         { gap: 12px; }
.gap-16         { gap: 16px; }
.gap-24         { gap: 24px; }
.gap-32         { gap: 32px; }
.gap-48         { gap: 48px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.w-full  { width: 100%; }
.hidden  { display: none; }
