/* ================================================================
   AI Home Designs — Static Website Stylesheet
   ================================================================ */

/* ── Google Fonts ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties (Design Tokens) ───────────────────── */
:root {
  --primary: #3d6647;
  --primary-dark: #2d5038;
  --primary-light: #e8f0eb;
  --accent: #c4a882;
  --bg: #ffffff;
  --bg-warm: #f7f4ef;
  --bg-dark: #1a1a1a;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --text-dim: #d1d5db;
  --border: #e8e3db;
  --border-light: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(61,102,71,0.25);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

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

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

ul {
  list-style: none;
}

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1cbc3; border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */

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

.container-sm {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-xs {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 24px;
}

.section-sm { padding: 64px 24px; }
.section-lg { padding: 100px 24px; }

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-body);
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
}

.navbar-logo {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.navbar-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-body);
  color: #4b5563;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.navbar-link:hover {
  color: var(--primary);
}

.navbar-link.active {
  color: var(--primary);
  background: var(--primary-light);
  font-weight: 600;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-signin {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s;
}

.navbar-signin:hover {
  background: var(--primary-light);
}

.navbar-cta {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.navbar-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Language switcher */
.navbar-lang {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 12px;
}
.navbar-lang-link {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  color: #9ca3af;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.navbar-lang-link:hover { color: var(--primary); background: var(--primary-light); }
.navbar-lang-link.active { color: var(--primary); background: var(--primary-light); }
.navbar-lang-sep { font-size: 12px; color: #d1d5db; }
@media (max-width: 767px) {
  .navbar-lang { display: none; }
}

/* Mobile hamburger */
.navbar-hamburger {
  display: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: #4b5563;
  cursor: pointer;
  background: none;
  border: none;
}

.navbar-hamburger svg {
  width: 22px;
  height: 22px;
}

/* Mobile menu */
.navbar-mobile-menu {
  display: none;
  padding: 0 24px 16px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
}

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

.navbar-mobile-link {
  text-align: left;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  color: #4b5563;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s;
}

.navbar-mobile-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar-mobile-cta {
  margin-top: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}

.navbar-mobile-cta:hover {
  background: var(--primary-dark);
}

@media (max-width: 767px) {
  .navbar-links { display: none; }
  .navbar-actions { display: none; }
  .navbar-hamburger { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION TAG
   ═══════════════════════════════════════════════════════════════ */

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 16px;
}

.section-tag-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  background: var(--bg-dark);
  color: #e5e7eb;
}

.footer-cta {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, #2d5038 0%, #3d6647 50%, #4a7a58 100%);
}

.footer-cta-inner {
  max-width: 768px;
  margin: 0 auto;
}

.footer-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.footer-cta-text {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.8);
}

.footer-cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

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

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-social-icon:hover {
  background: rgba(255,255,255,0.15);
}

.footer-social-dot {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background: #6b7280;
}

.footer-col-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.footer-col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-link {
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  transition: color 0.2s;
  padding: 0;
}

.footer-col-link:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

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

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-payment-icon {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  background: #374151;
}

.footer-payment-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 4px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-cta-title {
    font-size: 48px;
  }
  .footer-cta-buttons {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .footer-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTIONS
   ═══════════════════════════════════════════════════════════════ */

.hero {
  padding-top: 64px;
  padding-bottom: 48px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg) 60%);
}

.hero-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.3;
  background: radial-gradient(ellipse at 80% 20%, rgba(61,102,71,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-title em {
  color: var(--primary);
  font-style: italic;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #4b5563;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-stat-val {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-body);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trial-note {
  font-size: 12px;
  margin-top: 12px;
  color: var(--text-light);
}

.hero-slider-caption {
  text-align: center;
  font-size: 12px;
  margin-top: 12px;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 60px;
  }
}

/* ── Simple page hero (non-home) ─────────────────────────────── */

.page-hero {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg) 70%);
}

.page-hero-inner {
  max-width: 768px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  color: var(--text);
}

.page-hero-desc {
  font-size: 18px;
  color: #4b5563;
}

/* ═══════════════════════════════════════════════════════════════
   TRUSTED BY BAR
   ═══════════════════════════════════════════════════════════════ */

.trusted-bar {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.trusted-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.trusted-bar-label {
  font-size: 14px;
  color: var(--text-light);
  margin-right: 8px;
}

.trusted-bar-brand {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════════════════════════ */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-card-icon {
  font-size: 30px;
  margin-bottom: 16px;
}

.feature-card-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--font-body);
  color: var(--text);
}

.feature-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 56px;
}

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

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   STEPS / HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

.steps-connector {
  display: none;
  position: absolute;
  top: 48px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--primary) 70%, transparent);
  opacity: 0.3;
}

.step-card {
  position: relative;
}

.step-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
}

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

.step-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.step-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  font-family: var(--font-body);
  color: var(--text);
}

.step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-connector {
    display: block;
  }
}

/* ── Detail steps (HowItWorksPage) ──────────────────────────── */

.detail-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.detail-step + .detail-step {
  margin-top: 96px;
}

.detail-step-reverse .detail-step-content {
  order: 1;
}

.detail-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-body);
  margin-bottom: 20px;
}

.detail-step-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  color: var(--text);
}

.detail-step-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #4b5563;
}

.detail-step-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-step-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4b5563;
}

.detail-step-point-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-step-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.detail-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .detail-step {
    grid-template-columns: 1fr 1fr;
  }
  .detail-step-reverse .detail-step-content {
    order: 2;
  }
  .detail-step-reverse .detail-step-img {
    order: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ROOM TYPE SELECTOR
   ═══════════════════════════════════════════════════════════════ */

.room-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.room-tab {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-warm);
  color: #4b5563;
  transition: all 0.2s;
}

.room-tab:hover {
  border-color: var(--primary);
}

.room-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.room-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.room-card:hover img {
  transform: scale(1.05);
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.room-card:hover .room-card-overlay {
  opacity: 1;
}

.room-card-label {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-body);
}

.room-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}

.room-card:hover .room-card-badge {
  opacity: 1;
}

@media (min-width: 768px) {
  .room-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   STYLE CARDS
   ═══════════════════════════════════════════════════════════════ */

.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.style-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.style-card:hover img {
  transform: scale(1.08);
}

.style-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
}

.style-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
}

@media (min-width: 640px) {
  .styles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Style cards with detail (StylesPage) ───────────────────── */

.style-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.style-detail-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.style-detail-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
}

.style-detail-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-detail-card-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
}

.style-detail-card-img-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
}

.style-detail-card-body {
  padding: 16px;
}

.style-detail-card-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.style-detail-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.style-detail-tag {
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 12px;
  background: var(--primary-light);
  color: var(--primary);
}

.style-detail-card-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  background: var(--bg-warm);
  color: var(--primary);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.style-detail-card-btn:hover {
  background: var(--primary-light);
}

@media (min-width: 640px) {
  .style-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .style-detail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   BEFORE/AFTER SLIDER
   ═══════════════════════════════════════════════════════════════ */

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  user-select: none;
  width: 100%;
  cursor: col-resize;
}

.ba-slider.dragging {
  cursor: grabbing;
}

.ba-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-before-img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  pointer-events: none;
}

.ba-label-before {
  left: 16px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}

.ba-label-after {
  right: 16px;
  background: rgba(61,102,71,0.85);
  backdrop-filter: blur(4px);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: col-resize;
}

.ba-handle-knob {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   STAT CARDS (horizontal)
   ═══════════════════════════════════════════════════════════════ */

.stat-cards-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
  border: 1px solid var(--border);
}

.stat-card-icon {
  font-size: 24px;
}

.stat-card-val {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  font-family: var(--font-body);
}

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

@media (min-width: 640px) {
  .stat-cards-row {
    flex-direction: row;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.pricing-card-default {
  background: #fff;
  border: 2px solid var(--border);
}

.pricing-card-featured {
  background: var(--primary);
  border: 2px solid var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
}

.pricing-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pricing-name-default { color: var(--text-light); }
.pricing-name-featured { color: rgba(255,255,255,0.65); }

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

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-body);
}

.pricing-price-default { color: var(--text); }
.pricing-price-featured { color: #fff; }

.pricing-period {
  font-size: 14px;
}

.pricing-period-default { color: var(--text-light); }
.pricing-period-featured { color: rgba(255,255,255,0.6); }

.pricing-save {
  font-size: 12px;
  margin-bottom: 20px;
}

.pricing-save-default { color: var(--text-light); }
.pricing-save-featured { color: rgba(255,255,255,0.5); }

.pricing-features {
  margin-top: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pricing-feature-on-default { color: #4b5563; }
.pricing-feature-on-featured { color: rgba(255,255,255,0.9); }
.pricing-feature-off-default { color: var(--text-dim); }
.pricing-feature-off-featured { color: rgba(255,255,255,0.35); }

.pricing-feature-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-feature-icon-on-default { background: var(--primary-light); }
.pricing-feature-icon-on-featured { background: rgba(255,255,255,0.2); }

.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.pricing-btn-default {
  background: var(--primary);
  color: #fff;
}

.pricing-btn-default:hover {
  background: var(--primary-dark);
}

.pricing-btn-featured {
  background: #fff;
  color: var(--primary);
}

.pricing-btn-featured:hover {
  background: #f3f4f6;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Billing Toggle ─────────────────────────────────────────── */

.billing-toggle {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 4px;
  gap: 4px;
  background: #f0ece4;
  border: 1px solid var(--border);
  margin-top: 32px;
}

.billing-toggle-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  text-transform: capitalize;
  transition: all 0.2s;
}

.billing-toggle-btn.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.billing-toggle-save {
  margin-left: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  background: var(--primary);
  color: #fff;
}

/* ── Enterprise CTA ─────────────────────────────────────────── */

.enterprise-cta {
  max-width: 1152px;
  margin: 32px auto 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.enterprise-cta-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
  font-family: var(--font-body);
  color: var(--text);
}

.enterprise-cta-desc {
  font-size: 14px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .enterprise-cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
}

.testimonial-text {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
}

.testimonial-room-tag {
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  background: var(--primary-light);
  color: var(--primary);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.rating-summary-score {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.rating-summary-count {
  font-size: 14px;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  border: none;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  transition: background 0.2s;
}

.faq-item.open .faq-question {
  background: var(--primary-light);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-warm);
  transition: transform 0.2s, background 0.2s;
}

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

.faq-icon svg line, .faq-icon svg path {
  stroke: var(--text-muted);
}

.faq-item.open .faq-icon svg line,
.faq-item.open .faq-icon svg path {
  stroke: #fff;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
}

.faq-cta-text {
  font-size: 14px;
  margin-bottom: 12px;
  color: #4b5563;
}

/* ── Simple FAQ (PricingPage, no accordion) ─────────────────── */

.faq-simple-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-simple-item {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}

.faq-simple-q {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-body);
}

.faq-simple-a {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   INSPIRATION CTA
   ═══════════════════════════════════════════════════════════════ */

.inspo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.inspo-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.inspo-img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inspo-floating-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inspo-tag-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
}

.inspo-tag-sub {
  font-size: 12px;
  color: var(--text-light);
}

.inspo-content-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  color: var(--text);
}

.inspo-content-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #4b5563;
}

.inspo-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.inspo-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #4b5563;
}

.inspo-point-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .inspo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .inspo-content-title {
    font-size: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

.modal-content {
  width: 100%;
  max-width: 768px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text);
}

.modal-subtitle {
  font-size: 14px;
  margin-top: 4px;
  color: var(--text-muted);
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--border);
}

.modal-body {
  padding: 24px;
}

.modal-body-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */

.about-hero {
  padding: 96px 24px;
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg) 70%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1152px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  color: var(--text);
}

.about-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #4b5563;
}

.about-hero-desc-secondary {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-stat-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
}

.about-stat-val {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-body);
  color: var(--primary);
}

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

@media (min-width: 768px) {
  .about-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Story section ──────────────────────────────────────────── */

.story-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

/* ── Values grid ────────────────────────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.value-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
}

.value-card-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.value-card-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--font-body);
  color: var(--text);
}

.value-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Team ───────────────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-body);
  margin: 0 auto 16px;
}

.team-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--font-body);
}

.team-role {
  font-size: 12px;
  color: var(--text-light);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Contact ────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
}

.contact-card-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--text-light);
}

.contact-card-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-body);
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   AI vs TRADITIONAL DESIGNER COMPARISON
   ═══════════════════════════════════════════════════════════════ */

.compare-section {
  padding: 100px 24px;
  background: #fff;
}

.compare-header {
  text-align: center;
  margin-bottom: 60px;
}

.compare-title {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.compare-subtitle {
  font-size: 17px;
  color: #4b5563;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 48px;
  position: relative;
}

/* VS Badge */
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  position: relative;
  z-index: 2;
}

.compare-vs-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

/* Comparison Cards */
.compare-card {
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.compare-card-traditional {
  background: #faf8f5;
  border: 1px solid #e8e3db;
}

.compare-card-ai {
  background: linear-gradient(160deg, #2d5038 0%, #3d6647 60%);
  border: 1px solid #3d6647;
  color: #fff;
}

.compare-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  margin-bottom: 28px;
}

.compare-card-label-traditional {
  background: #f0ece4;
  color: #6b7280;
}

.compare-card-label-ai {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}

.compare-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.compare-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.compare-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.compare-row-icon-traditional {
  background: #f0ece4;
}

.compare-row-icon-ai {
  background: rgba(255,255,255,0.12);
}

.compare-row-icon svg {
  width: 20px;
  height: 20px;
}

.compare-row-text {
  flex: 1;
  min-width: 0;
}

.compare-row-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.compare-row-title-traditional {
  color: #4b5563;
}

.compare-row-title-ai {
  color: #fff;
}

.compare-row-desc {
  font-size: 13px;
  line-height: 1.65;
}

.compare-row-desc-traditional {
  color: #9ca3af;
}

.compare-row-desc-ai {
  color: rgba(255,255,255,0.7);
}

.compare-highlight {
  display: inline-block;
  font-weight: 700;
}

.compare-highlight-pain {
  color: #b45309;
  background: #fef3c7;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 12px;
}

.compare-highlight-win {
  color: #fff;
  background: rgba(196,168,130,0.35);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 12px;
}

/* Comparison CTA row */
.compare-cta-row {
  text-align: center;
  margin-top: 48px;
}

.compare-cta-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

/* Bottom stat strip */
.compare-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 60px auto 0;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.compare-stat-item {
  background: #fff;
  text-align: center;
  padding: 24px 16px;
}

.compare-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.compare-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* Mobile: stacked cards with VS in between */
@media (max-width: 767px) {
  .compare-card {
    padding: 28px 20px;
  }
  .compare-stats-strip {
    grid-template-columns: 1fr;
  }
  .compare-title {
    font-size: 28px;
  }
}

/* Desktop: side-by-side */
@media (min-width: 768px) {
  .compare-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
  }
  .compare-vs {
    padding: 0 12px;
    align-items: center;
  }
  .compare-title {
    font-size: 42px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */

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

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }

.bg-white { background: #fff; }
.bg-warm { background: var(--bg-warm); }

.hidden { display: none; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.w-full { width: 100%; }
.max-w-3xl { max-width: 768px; }
.max-w-5xl { max-width: 1152px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.relative { position: relative; }

@media (max-width: 767px) {
  .hide-mobile { display: none; }
}

@media (min-width: 768px) {
  .show-mobile { display: none; }
}
