/* ============================================
   WEDLI MARKETING WEBSITE
   Colors: Cream, Sage, Gold, Rose, Charcoal
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
  /* Cream */
  --cream: #faf8f5;
  --cream-dark: #f0ebe4;

  /* Charcoal */
  --charcoal: #2d2d2d;
  --charcoal-light: #4a4a4a;

  /* Sage */
  --sage-50: #f2f5f0;
  --sage-100: #e4eade;
  --sage-200: #c8d5bd;
  --sage-300: #a7bc96;
  --sage-400: #8ba776;
  --sage-500: #6b8f56;
  --sage-600: #567345;
  --sage-700: #435a36;
  --sage-800: #354729;
  --sage-900: #2a3921;

  /* Gold */
  --gold-50: #fdf9ef;
  --gold-100: #f9f0d4;
  --gold-200: #f2dfa8;
  --gold-300: #e8c96e;
  --gold-400: #deb040;
  --gold-500: #d4992b;
  --gold-600: #b87a20;
  --gold-700: #995b1d;

  /* Rose */
  --rose-50: #fdf2f4;
  --rose-100: #fce7eb;
  --rose-200: #f9d0d9;
  --rose-300: #f4a9b9;
  --rose-400: #ec7894;
  --rose-500: #e04d72;
  --rose-600: #cc2d5b;

  /* Spacing */
  --section-padding: 7rem 0;
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 600;
}

em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--sage-600);
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* ============ ANIMATIONS ============ */
.anim-fade-up,
.anim-fade-right,
.anim-fade-left {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.anim-fade-up {
  transform: translateY(40px);
}

.anim-fade-right {
  transform: translateX(-40px);
}

.anim-fade-left {
  transform: translateX(40px);
}

.anim-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.5s; }


/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.938rem;
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage-600);
  color: white;
  box-shadow: 0 2px 8px rgba(86, 115, 69, 0.25);
}

.btn-primary:hover {
  background: var(--sage-700);
  box-shadow: 0 4px 16px rgba(86, 115, 69, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--cream-dark);
}

.btn-ghost:hover {
  border-color: var(--sage-300);
  background: var(--sage-50);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-nav {
  background: var(--sage-600);
  color: white;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-nav:hover {
  background: var(--sage-700);
  transform: translateY(-1px);
}

.btn-white {
  background: white;
  color: var(--sage-700);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}


/* ============ NAVIGATION ============ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out);
}

.nav-scrolled {
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.625rem 0;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--sage-500);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--charcoal-light);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--sage-600);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
}

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

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}

.mobile-menu a {
  padding: 0.625rem 0;
  font-size: 0.938rem;
  color: var(--charcoal-light);
  border-bottom: 1px solid var(--cream-dark);
}


/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 10rem 0 4rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--sage-200);
  top: -200px;
  right: -100px;
  animation: float-slow 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--gold-200);
  bottom: -100px;
  left: -50px;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: var(--rose-200);
  top: 40%;
  left: 60%;
  animation: float-slow 22s ease-in-out infinite 5s;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-500);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--sage-600), var(--sage-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}


/* ============ HERO PREVIEW ============ */
.hero-preview {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.hero-preview-window {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06),
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.06);
}

.hero-preview-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80px;
  background: linear-gradient(135deg, var(--sage-300), var(--gold-300));
  filter: blur(60px);
  opacity: 0.3;
  border-radius: 50%;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--sage-50);
  border-bottom: 1px solid var(--sage-100);
}

.preview-dots {
  display: flex;
  gap: 6px;
}

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage-200);
}

.preview-dots span:first-child { background: var(--rose-300); }
.preview-dots span:nth-child(2) { background: var(--gold-300); }
.preview-dots span:last-child { background: var(--sage-300); }

.preview-url {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  background: white;
  padding: 0.25rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--sage-100);
}

.preview-body {
  display: flex;
  min-height: 380px;
}

.preview-sidebar {
  width: 200px;
  background: var(--sage-700);
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.preview-sidebar-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--sage-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.preview-sidebar-item {
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.preview-sidebar-item.active {
  background: rgba(255, 255, 255, 0.15);
}

.preview-sidebar-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

.preview-main {
  flex: 1;
  padding: 1.5rem;
  background: var(--cream);
}

.preview-header {
  margin-bottom: 1.25rem;
}

.preview-header-title {
  width: 180px;
  height: 20px;
  background: var(--charcoal);
  border-radius: 4px;
  opacity: 0.15;
  margin-bottom: 0.5rem;
}

.preview-header-subtitle {
  width: 120px;
  height: 12px;
  background: var(--charcoal);
  border-radius: 4px;
  opacity: 0.08;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.preview-stat-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--sage-100);
}

.preview-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sage-700);
  margin-bottom: 0.125rem;
}

.accent-gold .preview-stat-number { color: var(--gold-600); }
.accent-rose .preview-stat-number { color: var(--rose-500); }

.preview-stat-label {
  font-size: 0.625rem;
  color: var(--charcoal-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-stat-bar {
  height: 4px;
  background: var(--sage-100);
  border-radius: 4px;
  overflow: hidden;
}

.preview-stat-bar div {
  height: 100%;
  background: var(--sage-500);
  border-radius: 4px;
  animation: bar-fill 1.5s var(--ease-out) 0.8s both;
}

.preview-stat-bar.gold div { background: var(--gold-500); }
.preview-stat-bar.rose div { background: var(--rose-400); }

@keyframes bar-fill {
  from { width: 0; }
}

.preview-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.preview-table-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--sage-100);
}

.preview-table-header {
  font-size: 0.688rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-table-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.preview-table-row:last-child { border-bottom: none; }

.preview-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sage-200);
  flex-shrink: 0;
}

.preview-row-text {
  flex: 1;
  height: 8px;
  background: var(--charcoal);
  opacity: 0.08;
  border-radius: 4px;
}

.preview-badge {
  font-size: 0.563rem;
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.preview-badge.green {
  background: var(--sage-100);
  color: var(--sage-700);
}

.preview-badge.amber {
  background: var(--gold-100);
  color: var(--gold-700);
}

.preview-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--sage-300);
  flex-shrink: 0;
}

.preview-check.done {
  background: var(--sage-500);
  border-color: var(--sage-500);
  position: relative;
}

.preview-check.done::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}


/* ============ SOCIAL PROOF ============ */
.social-proof {
  padding: 3.5rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-700);
}

.proof-label {
  font-size: 0.813rem;
  color: var(--charcoal-light);
  margin-top: 0.25rem;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}


/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-500);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.063rem;
  color: var(--charcoal-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============ FEATURES GRID ============ */
.features {
  padding: var(--section-padding);
}

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

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sage-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--sage-200);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sage-50);
  color: var(--sage-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon.icon-gold {
  background: var(--gold-50);
  color: var(--gold-600);
}

.feature-icon.icon-rose {
  background: var(--rose-50);
  color: var(--rose-500);
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.063rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}


/* ============ HOW IT WORKS ============ */
.how-it-works {
  padding: var(--section-padding);
  background: white;
}

.steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--sage-200);
  line-height: 1;
  flex-shrink: 0;
  width: 70px;
  text-align: right;
}

.step-content {
  padding-top: 0.25rem;
}

.step-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.938rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.step-connector {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--sage-200), var(--cream-dark));
  margin: 0.75rem 0 0.75rem 35px;
  align-self: flex-start;
  margin-left: calc(70px / 2 + 1rem - 0.5px);
}


/* ============ SHOWCASE SECTIONS ============ */
.showcase {
  padding: var(--section-padding);
}

.showcase-alt {
  background: white;
}

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

.showcase-grid-reverse {
  direction: rtl;
}

.showcase-grid-reverse > * {
  direction: ltr;
}

.showcase-content {
  max-width: 480px;
}

.showcase-content .section-label {
  display: block;
  text-align: left;
}

.showcase-content .section-title {
  text-align: left;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.showcase-text {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin: 1.5rem 0;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.938rem;
  color: var(--charcoal-light);
  line-height: 1.5;
}

.showcase-list svg {
  width: 20px;
  height: 20px;
  color: var(--sage-500);
  flex-shrink: 0;
  margin-top: 1px;
}


/* ============ SHOWCASE CARD STACK ============ */
.showcase-visual {
  display: flex;
  justify-content: center;
}

.showcase-card-stack {
  position: relative;
  width: 340px;
  height: 320px;
}

.showcase-card {
  position: absolute;
  width: 300px;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--cream-dark);
  transition: transform 0.6s var(--ease-out);
}

.card-front {
  top: 30px;
  left: 20px;
  z-index: 3;
}

.card-back-1 {
  top: 10px;
  left: 40px;
  z-index: 2;
  transform: rotate(3deg);
  opacity: 0.85;
}

.card-back-2 {
  top: -5px;
  left: 55px;
  z-index: 1;
  transform: rotate(-2deg);
  opacity: 0.6;
}

.sc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sage-50);
  color: var(--sage-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-icon svg {
  width: 18px;
  height: 18px;
}

.sc-icon.icon-gold-bg {
  background: var(--gold-50);
  color: var(--gold-600);
}

.sc-icon.icon-rose-bg {
  background: var(--rose-50);
  color: var(--rose-500);
}

.sc-title-bar {
  width: 100px;
  height: 10px;
  background: var(--charcoal);
  opacity: 0.12;
  border-radius: 4px;
  margin-bottom: 0.375rem;
}

.sc-subtitle-bar {
  width: 64px;
  height: 7px;
  background: var(--charcoal);
  opacity: 0.06;
  border-radius: 4px;
}

.sc-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sc-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.sc-row:last-child { border-bottom: none; }

.sc-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage-100);
  flex-shrink: 0;
}

.sc-row-text {
  flex: 1;
  height: 8px;
  background: var(--charcoal);
  opacity: 0.08;
  border-radius: 4px;
}

.sc-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sc-status.green { background: var(--sage-500); }
.sc-status.amber { background: var(--gold-500); }

.sc-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
  padding-top: 0.5rem;
}

.sc-chart-bar {
  flex: 1;
  background: var(--sage-200);
  border-radius: 4px 4px 0 0;
  transition: height 0.6s var(--ease-out);
}

.sc-chart-bar.gold {
  background: var(--gold-300);
}


/* ============ GUEST PHONE MOCKUP ============ */
.guest-phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  background: white;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: white;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  margin-top: -12px;
}

.phone-content {
  padding: 2.5rem 1.25rem 1.5rem;
}

.phone-header-text {
  text-align: center;
  margin-bottom: 1rem;
}

.phone-couple-names {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
}

.phone-date {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  margin-top: 0.25rem;
}

.phone-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 1rem 0;
}

.phone-welcome {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  text-align: center;
  color: var(--sage-600);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.phone-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.phone-field {}

.phone-label {
  width: 70px;
  height: 6px;
  background: var(--charcoal);
  opacity: 0.12;
  border-radius: 3px;
  margin-bottom: 0.375rem;
}

.phone-input {
  width: 100%;
  height: 32px;
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
}

.phone-input.tall {
  height: 52px;
}

.phone-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phone-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--charcoal-light);
  padding: 0.5rem 0.75rem;
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
}

.phone-radio.selected {
  border-color: var(--sage-400);
  background: var(--sage-50);
  color: var(--sage-700);
}

.radio-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-300);
  flex-shrink: 0;
}

.radio-dot.filled {
  border-color: var(--sage-500);
  background: var(--sage-500);
  box-shadow: inset 0 0 0 3px white;
}

.phone-btn {
  background: var(--sage-600);
  color: white;
  text-align: center;
  padding: 0.625rem;
  border-radius: 8px;
  font-size: 0.813rem;
  font-weight: 500;
  margin-top: 0.25rem;
}


/* ============ TESTIMONIAL ============ */
.testimonial-section {
  padding: var(--section-padding);
  background: var(--sage-50);
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote-mark {
  width: 48px;
  height: 48px;
  color: var(--sage-500);
  margin: 0 auto 1.5rem;
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-200);
  color: var(--sage-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.813rem;
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.938rem;
}

.testimonial-detail {
  font-size: 0.813rem;
  color: var(--charcoal-light);
}


/* ============ CTA SECTION ============ */
.cta-section {
  padding: 5rem 0 7rem;
}

.cta-card {
  background: linear-gradient(135deg, var(--sage-700), var(--sage-600));
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: white;
  margin-bottom: 1rem;
  position: relative;
}

.cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.063rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
}

.cta-actions {
  position: relative;
}

.cta-fine-print {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  position: relative;
}


/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-brand .nav-logo {
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand .nav-logo-icon {
  color: var(--sage-400);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.375rem 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.3);
}


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

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

  .preview-sidebar {
    width: 160px;
  }

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

  .footer-links:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

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

  .hero {
    padding: 8rem 0 3rem;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-preview-window {
    border-radius: 12px;
  }

  .preview-sidebar {
    display: none;
  }

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

  .preview-tables {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .showcase-grid-reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showcase-grid-reverse {
    direction: ltr;
  }

  .showcase-content {
    max-width: 100%;
    text-align: center;
  }

  .showcase-content .section-label,
  .showcase-content .section-title {
    text-align: center;
  }

  .showcase-list {
    text-align: left;
  }

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

  .social-proof-inner {
    gap: 1.5rem;
  }

  .proof-divider {
    display: none;
  }

  .proof-stat {
    min-width: 140px;
  }

  .step {
    gap: 1.25rem;
  }

  .step-number {
    font-size: 2.25rem;
    width: 50px;
  }

  .step-connector {
    margin-left: calc(50px / 2 + 0.625rem - 0.5px);
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .preview-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .preview-stat-card {
    padding: 0.75rem;
  }

  .preview-stat-number {
    font-size: 1rem;
  }

  .showcase-card-stack {
    width: 280px;
    height: 280px;
  }

  .showcase-card {
    width: 250px;
    padding: 1.25rem;
  }

  .phone-frame {
    width: 250px;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }
}

/* ============ BLOG ============ */
.blog-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}

.blog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.blog-nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
}

.blog-hero {
  padding: 5rem 0 3rem;
}

.blog-hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.blog-hero p {
  color: var(--charcoal-light);
  font-size: 1.1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding-bottom: 5rem;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(45, 45, 45, 0.08);
}

.blog-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

.blog-post {
  padding: 4rem 0 5rem;
}

.blog-meta {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.blog-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.blog-content h2 {
  margin-top: 1.5rem;
}

.blog-content h3 {
  margin-top: 1rem;
}

.blog-content ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}

.blog-content li {
  margin-bottom: 0.4rem;
}

.blog-related {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: var(--gold-50);
  border: 1px solid var(--gold-100);
}

.blog-related h3 {
  margin-bottom: 0.5rem;
}

.blog-related a {
  color: var(--charcoal);
  font-weight: 600;
}

.blog-cta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--sage-50);
  border: 1px solid var(--sage-100);
}

.blog-cta a {
  color: var(--charcoal);
  font-weight: 600;
}

@media (max-width: 720px) {
  .blog-hero {
    padding: 4rem 0 2.5rem;
  }

  .blog-post {
    padding: 3rem 0 4rem;
  }
}
