/* ===========================
   MVO Landing Page — Playbook Lab Style (White BG)
   =========================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700&family=Poppins:wght@300;400;500;600&display=swap');

/* ===========================
   1. DESIGN TOKENS
   =========================== */
:root {
  /* Background & Surface */
  --bg-body: #FFFFFF;
  --bg-surface: #F5F5F7;
  --bg-card: #F5F5F7;
  --bg-card-hover: #EDEDF0;
  --bg-navbar: #FFFFFF;
  --bg-dot-grid: #F0F0F0;

  /* Borders */
  --border-subtle: #E5E5EA;
  --border-accent: #F97316;

  /* Text */
  --text-heading: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-body: #6B7280;
  --text-muted: #9CA3AF;

  /* Accent (Orange) */
  --accent: #F97316;
  --accent-light: #FB923C;
  --accent-dark: #EA580C;
  --accent-glow: rgba(249, 115, 22, 0.12);
  --accent-glow-strong: rgba(249, 115, 22, 0.20);

  /* Typography */
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --card-padding: 32px;
  --card-radius: 17px;
  --card-gap: 20px;
  --max-width: 1280px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   3. DOT-GRID BACKGROUND
   =========================== */
.dot-grid-bg {
  position: relative;
}

.dot-grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 0, 0, 0.07) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

/* ===========================
   4. SECTION BADGE / LABEL
   =========================== */
.section-badge-wrapper {
  display: inline-block;
  background: linear-gradient(180deg, var(--border-subtle) 0%, rgba(200, 200, 200, 0.2) 100%);
  border-radius: 33px;
  padding: 1.3px;
  margin-bottom: 20px;
}

.section-badge-inner {
  background-color: var(--bg-body);
  border-radius: 33px;
  padding: 7px 15px 7px 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-badge-inner .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.section-heading .accent {
  color: var(--accent);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.6;
}

/* ===========================
   5. NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: 59px;
  padding: 12px 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled .nav-pill {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

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

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-heading);
}

.nav-cta {
  background-color: var(--text-heading);
  border-radius: 7px;
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background-color: #333;
  transform: translateY(-1px);
}

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

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===========================
   6. HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 24px;
  padding-top: calc(var(--nav-height) + 40px);
  overflow: hidden;
}

/* Orange radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 28px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 62px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 28px;
}

.hero-heading .line-accent {
  color: var(--accent);
}

.hero-heading .line-dark {
  color: var(--text-heading);
}

.hero-heading .sparkle {
  color: var(--accent);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ===========================
   7. BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-dark-glow {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  border: 1px solid rgba(100, 100, 100, 0.3);
  color: #DEDEDE;
}

.btn-dark-glow:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-orange {
  background: radial-gradient(50% 50% at 50% 100%, #FB923C 0%, #EA580C 100%);
  border: 1px solid rgba(249, 115, 22, 0.5);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}

.btn-orange:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(249, 115, 22, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid var(--border-accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* ===========================
   8. MARQUEE / LOGO SCROLL
   =========================== */
.marquee-section {
  padding: 40px 0;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-body) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-body) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  opacity: 0.6;
  white-space: nowrap;
}

.marquee-logo {
  height: 24px;
  width: auto;
  max-width: 150px;
  margin-right: 12px;
  display: block;
  flex-shrink: 0;
  /* Some logos like N8N's might be dark, we can adapt brightness or filter if needed */
}

/* ===========================
   9. FEATURE CARDS (Why MVO)
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}

/* Row 1: 3 cards */
.feature-card:nth-child(1) { grid-column: 1 / 3; }
.feature-card:nth-child(2) { grid-column: 3 / 5; }
.feature-card:nth-child(3) { grid-column: 5 / 7; }

/* Row 2: 2 cards centered */
.feature-card:nth-child(4) { grid-column: 2 / 4; }
.feature-card:nth-child(5) { grid-column: 4 / 6; }

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card:nth-child(n) {
    grid-column: 1 / -1;
  }
}

.feature-card {
  background: #1F1200; /* Dark orange/brown theme */
  border: 1px solid rgba(249, 115, 22, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  height: 100%;
  min-height: 600px;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0e00, #261400);
  flex-shrink: 0;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Specific image positioning and scaling overrides */
.feature-card:nth-child(1) .card-image {
  object-position: center center;
}

.feature-card:nth-child(2) .card-image {
  object-position: top center;
}

.feature-card:nth-child(4) .card-image-wrapper,
.feature-card:nth-child(5) .card-image-wrapper {
  background: #f8f9fa;
}

.feature-card:nth-child(4) .card-image {
  object-fit: contain;
  padding: 16px;
}

.feature-card:nth-child(5) .card-image {
  object-fit: cover;
  object-position: top center;
  padding: 0;
  transform: scale(1.1);
  transform-origin: top center;
}

.card-image.loaded {
  opacity: 1;
}

.card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, #1F1200);
  pointer-events: none;
}

.card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-content p {
  color: #D1D5DB;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
}

/* Appointment Booking CSS Illustration */
.calendar-mockup {
  background: linear-gradient(135deg, #1a0e00, #261400);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cal-header {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #8B6A47;
  border-radius: 6px;
}

.cal-day.label {
  color: #C4956A;
  font-weight: 600;
  font-size: 10px;
}

.cal-day.booked {
  background: rgba(249, 115, 22, 0.3);
  color: #F97316;
  font-weight: 600;
}

.cal-booking {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cal-slot {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cal-slot.active {
  border-color: #F97316;
  background: rgba(249, 115, 22, 0.1);
}

.cal-time {
  color: #C4956A;
  font-size: 12px;
  font-weight: 600;
}

.cal-label {
  color: #fff;
  font-size: 12px;
}

.cal-slot.active .cal-label {
  color: #F97316;
}

/* ===========================
   10. MISSION SECTION
   =========================== */
.mission {
  padding: var(--section-padding) 0;
  text-align: center;
}

.mission-heading {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-heading);
  max-width: 800px;
  margin: 0 auto 24px;
}

.mission-heading .accent {
  color: var(--accent);
}

.mission-subtext {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.mission-arrow {
  color: var(--accent);
  font-size: 40px;
  animation: bounce-arrow 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ===========================
   11. HOW IT WORKS (Process)
   =========================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.process-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.3s ease;
}

.process-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-item-number {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  min-width: 32px;
}

.process-item-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-muted);
  flex: 1;
  transition: color 0.3s ease;
}

.process-item.active .process-item-title {
  color: var(--accent);
}

.process-item-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.process-item.active .process-item-icon {
  transform: rotate(45deg);
}

.process-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.process-item.active .process-item-body {
  max-height: 200px;
  padding-top: 16px;
}

.process-item-body p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  padding-left: 48px;
}

/* Dashboard mockup */
.dashboard-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.dashboard-badges {
  display: flex;
  gap: 8px;
}

.badge {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-glow);
  color: var(--accent);
  letter-spacing: 0.03em;
}

.badge.live {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.dashboard-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 12px;
  color: var(--text-muted);
  width: 64px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.bar-fill.orange { background: var(--accent); }
.bar-fill.green { background: #16a34a; }
.bar-fill.blue { background: #3b82f6; }

.dashboard-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.green { background: #16a34a; }
.dot.orange { background: var(--accent); }
.dot.blue { background: #3b82f6; }
.dot.muted { background: var(--text-muted); }

.dashboard-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.text-line {
  height: 6px;
  background: var(--border-subtle);
  border-radius: 3px;
}

.text-line.w75 { width: 75%; }
.text-line.w60 { width: 60%; }
.text-line.w40 { width: 40%; }

.dashboard-stats {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.dashboard-stat {
  flex: 1;
  text-align: center;
}

.dashboard-stat-value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
}

.dashboard-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===========================
   12. STATS BAR
   =========================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  margin-top: 8px;
}

/* ===========================
   13. SERVICES SECTION
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-top: 48px;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.service-card-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

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

/* Service tags */
.tags-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.service-tag {
  background: linear-gradient(180deg, var(--bg-card) 0%, #ECECEE 100%);
  border-radius: var(--card-radius);
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.service-tag:hover {
  background: linear-gradient(180deg, #ECECEE 0%, #E0E0E3 100%);
  transform: translateY(-1px);
}

.service-tag-icon {
  color: var(--accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.service-tag-icon svg {
  width: 20px;
  height: 20px;
}

.service-tag-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-heading);
}

/* ===========================
   14. PRICING
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
}

.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
  box-shadow: 0 8px 40px rgba(249, 115, 22, 0.10);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 100px;
}

.pricing-plan {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===========================
   15. CTA FINAL
   =========================== */
.cta-final-card {
  background: var(--bg-card);
  border-radius: var(--card-radius);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dot-grid inside CTA card */
.cta-final-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  pointer-events: none;
}

.cta-final-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-final-logo .logo-accent {
  color: var(--accent);
}

.cta-final-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-final-sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-final-link {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.cta-final-link:hover {
  opacity: 0.8;
}

/* ===========================
   16. FOOTER
   =========================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 32px;
  background: var(--bg-body);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
}

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

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-body);
}

.footer-location {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text-heading);
}

.footer-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 24px;
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

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

.footer-socials a svg {
  width: 16px;
  height: 16px;
}

/* ===========================
   17. FADE-IN ANIMATION
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   18. RESPONSIVE
   =========================== */

/* Tablet */
@media (max-width: 1199px) {
  .section-heading {
    font-size: 38px;
  }

  .hero-heading {
    font-size: 48px;
  }

  .mission-heading {
    font-size: 40px;
  }

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

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

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

  .process-grid {
    gap: 32px;
  }

  .container {
    padding: 0 24px;
  }

  .navbar {
    max-width: 800px;
  }

  .nav-pill {
    padding: 10px 24px;
  }
}

/* Mobile */
@media (max-width: 809px) {
  :root {
    --section-padding: 64px;
    --card-padding: 24px;
  }

  .hero-heading {
    font-size: 36px;
    line-height: 1.2;
  }

  .section-heading {
    font-size: 30px;
  }

  .mission-heading {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px 20px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

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

  .navbar {
    top: 8px;
    max-width: calc(100% - 16px);
    padding: 0 8px;
  }

  .nav-pill {
    padding: 10px 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-body);
    padding: 20px;
    gap: 16px;
    border-radius: 17px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    font-size: 13px;
    padding: 8px 16px;
  }

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

  .container {
    padding: 0 20px;
  }

  .cta-final-card {
    padding: 48px 24px;
  }

  .cta-final-heading {
    font-size: 30px;
  }

  .process-item-title {
    font-size: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .marquee-track {
    animation-duration: 22s;
  }

  .pricing-price {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  .hero-heading {
    font-size: 30px;
  }

  .section-heading {
    font-size: 26px;
  }

  .mission-heading {
    font-size: 28px;
  }

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

  .pricing-price {
    font-size: 32px;
  }
}

/* ===========================
   19. NEW PRICING SECTION
   =========================== */
.pricing-section {
  background-color: #0c0c0c;
  padding: 100px 0;
  color: #ffffff;
}

.pricing-section .white-text {
  color: #ffffff;
}

.pricing-section .section-subtitle {
  color: #C4956A;
  margin-bottom: 48px;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 40px;
  flex: 1;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.starter-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.growth-card {
  border: 2px solid #F97316;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.1);
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(249, 115, 22, 0.1); }
  50% { box-shadow: 0 0 50px rgba(249, 115, 22, 0.2); }
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #F97316;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.starter-card .plan-name {
  color: #8B6A47;
}

.growth-card .plan-name.accent {
  color: #FB923C;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-display .currency {
  font-size: 32px;
  color: #8B6A47;
  font-weight: 600;
}

.price-display .amount {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
}

.price-display .period {
  font-size: 16px;
  color: #8B6A47;
}

.tagline {
  font-size: 15px;
  color: #6B7280;
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #4B5563;
  line-height: 1.5;
}

.feature-list .checkmark {
  color: #F97316;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-pricing-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  background: transparent;
  border: 1px solid #F97316;
  color: #F97316;
  width: 100%;
  font-weight: 600;
}

.btn-pricing-outline:hover {
  background: #F97316;
  color: #ffffff;
}

.btn-pricing-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  background: #F97316;
  color: #ffffff;
  width: 100%;
  font-weight: 600;
}

.btn-pricing-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  background: #1a1a1a;
  color: #ffffff;
  width: 100%;
  font-weight: 600;
  margin-top: 12px;
}

.btn-pricing-secondary:hover {
  background: #333333;
  transform: translateY(-1px);
}

.no-card {
  display: none;
}

.comparison-note {
  font-size: 16px;
  color: #C4956A;
  margin-top: 48px;
}

.contact-link {
  color: #FB923C;
  font-weight: 500;
  margin-left: 4px;
  transition: filter 0.2s ease;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  filter: brightness(1.1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .price-display .amount {
    font-size: 48px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
}

/* ===========================
   20. FAQ SECTION
   =========================== */
.faq-section {
  background-color: #0c0c0c;
  padding: 100px 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.faq-icon {
  color: var(--accent);
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  color: #A3A3A3;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===========================
   21. BLOG SYSTEM
   =========================== */
.blog-hero {
  padding: 120px 0 60px;
  background-color: #0c0c0c;
  text-align: center;
}

.blog-hero .hero-heading {
  margin-bottom: 16px;
}

/* Category Filters */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #C4956A;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab.active {
  background-color: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.filter-tab:hover:not(.active) {
  border-color: var(--accent);
  color: #ffffff;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.post-card {
  background: #1a0e00;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 10px 40px -10px rgba(251, 146, 60, 0.2);
}

.post-thumbnail {
  aspect-ratio: 16/9;
  background: linear-gradient(45deg, #0c0c0c, #1a0e00);
  position: relative;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.post-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #ffffff;
}

.post-excerpt {
  font-size: 14px;
  color: #C4956A;
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
}

.author-info {
  font-size: 13px;
  color: #C4956A;
}

/* Post Detail Styles */
.post-header {
  padding: 100px 0 60px;
  background-color: #0c0c0c;
  text-align: center;
}

.post-detail-title {
  max-width: 900px;
  margin: 24px auto;
  font-size: 48px;
  line-height: 1.2;
}

.post-detail-meta {
  color: #C4956A;
  font-size: 16px;
}

.featured-image-wrapper {
  max-width: 1000px;
  margin: 0 auto 60px;
  border-radius: 24px;
  overflow: hidden;
}

.content-area {
  max-width: 720px;
  margin: 0 auto 80px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: #C4956A;
}

.content-area h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #ffffff;
  margin-top: 48px;
  margin-bottom: 24px;
}

.content-area h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #ffffff;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-area strong {
  color: #ffffff;
}

.content-area ul, .content-area ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.content-area li {
  margin-bottom: 12px;
}

.content-area li::marker {
  color: var(--accent);
}

.content-area blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  background: rgba(251, 146, 60, 0.05);
  font-style: italic;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}

.content-area pre {
  background: #0c0c0c;
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 32px 0;
}

/* Blog CTA */
.blog-cta {
  background: #1a0e00;
  border: 1px solid var(--accent);
  padding: 48px;
  border-radius: 24px;
  text-align: center;
  margin-top: 80px;
}

.blog-cta h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 8px;
}

.blog-cta p {
  color: #C4956A;
  margin-bottom: 24px;
}

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

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-detail-title {
    font-size: 32px;
  }
}
