/* ============================================
   pvadrive — Premium Digital Marketplace
   Pure CSS3 — No Frameworks
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* --- Font Awesome --- */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* --- CSS Variables --- */
:root {
  --white: #FFFFFF;
  --pearl: #FBFBF7;
  --sand: #F5F5F0;
  --stone: #ECEDE7;
  --ink: #151817;
  --forest: #28302D;
  --slate: #5F6763;
  --emerald: #13805F;
  --emerald-light: #18A178;
  --emerald-dark: #0E654A;
  --champagne: #C5A15A;
  --champagne-light: #D4B978;

  --section-py: 80px;
  --section-px: 24px;
  --container-max: 1200px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 32px;
  --gap-xl: 48px;
  --gap-2xl: 64px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.05);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.floating-chat-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2500;
}

.floating-chat-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 52px;
  height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(21, 24, 23, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-chat-link i {
  font-size: 22px;
}

.floating-chat-link span {
  white-space: nowrap;
}

.floating-chat-link:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(21, 24, 23, 0.22);
}

.floating-chat-link.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-chat-link.telegram {
  background: linear-gradient(135deg, #2AABEE, #0088cc);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: 52px; font-weight: 700; line-height: 1.15; }
h2 { font-size: 40px; font-weight: 600; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 500; }

a {
  color: var(--emerald);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--emerald-light); }

img { max-width: 100%; height: auto; display: block; }

button { cursor: pointer; border: none; font-family: 'Manrope', sans-serif; }

ul, ol { list-style: none; }

/* --- Utility Classes --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section { padding: var(--section-py) 0; }

.bg-white { background: var(--white); }
.bg-pearl { background: var(--pearl); }
.bg-sand { background: var(--sand); }

.text-center { text-align: center; }
.text-left { text-align: left; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Top Information Bar --- */
.top-bar {
  background: var(--pearl);
  border-bottom: 1px solid var(--stone);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}

.top-bar a {
  color: var(--slate);
  transition: color 0.3s;
}

.top-bar a:hover { color: var(--emerald); }

.top-bar i { margin-right: 4px; font-size: 12px; }

.top-bar-center { display: flex; align-items: center; gap: var(--gap-sm); }

.top-bar-badge {
  background: var(--emerald);
  color: var(--white);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
}

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--gap-xl);
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--forest);
  padding: 8px 0;
  display: block;
  transition: color 0.3s;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--emerald);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-toggle::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 6px;
  font-size: 11px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 720px;
  padding: var(--gap-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
}

.dropdown-column h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate);
  margin-bottom: var(--gap-md);
  padding-bottom: var(--gap-sm);
  border-bottom: 1px solid var(--stone);
}

.dropdown-column ul li { margin-bottom: 6px; }

.dropdown-column ul li a {
  font-size: 13px;
  color: var(--forest);
  display: block;
  padding: 3px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.dropdown-column ul li a:hover {
  color: var(--emerald);
  padding-left: 4px;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.btn-primary:hover {
  background: var(--emerald-light);
  border-color: var(--emerald-light);
  color: var(--white);
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}

.btn-outline:hover {
  background: var(--emerald);
  color: var(--white);
  transform: scale(1.02);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: var(--white);
  transform: scale(1.02);
}

.btn-telegram {
  background: #0088cc;
  color: var(--white);
  border-color: #0088cc;
}

.btn-telegram:hover {
  background: #006699;
  border-color: #006699;
  color: var(--white);
  transform: scale(1.02);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(92vw, 380px);
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 88px 20px 24px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  transition: right 0.35s ease;
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.mobile-overlay.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu ul li { margin-bottom: 6px; }

.mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  color: var(--forest);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid var(--stone);
}

.mobile-dropdown > a i {
  float: right;
  transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
  display: none;
  padding: 8px 0 0 12px;
}

.mobile-dropdown-menu.open { display: block; }

.mobile-dropdown-group {
  margin: 0;
}

.mobile-dropdown-menu-group-label {
  display: block;
  padding: 14px 0 6px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-service-link a {
  padding: 10px 0 10px 10px;
  font-size: 14px;
}

.mobile-dropdown-menu li a {
  font-size: 14px;
  padding: 8px 0;
}

/* --- Order Modal --- */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(21, 24, 23, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
}

.order-modal-overlay.open {
  display: flex;
}

.order-modal-card {
  width: min(100%, 460px);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  padding: 28px;
  position: relative;
  border: 1px solid rgba(21,24,23,0.08);
}

.order-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pearl);
  color: var(--forest);
}

.order-modal-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(19,128,95,0.1);
  color: var(--emerald-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.order-modal-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.order-modal-subtitle {
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.7;
}

.order-modal-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.order-modal-summary > div {
  background: var(--pearl);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  padding: 14px;
}

.order-modal-summary .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 6px;
}

.order-modal-summary strong {
  color: var(--forest);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
}

.order-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-modal-action {
  width: 100%;
  min-height: 48px;
}

/* --- Hero Section --- */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: var(--gap-2xl);
  align-items: center;
}

.hero-content h1 {
  margin-bottom: var(--gap-lg);
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 520px;
  margin-bottom: var(--gap-xl);
}

.hero-cta {
  display: flex;
  gap: var(--gap-md);
  margin-bottom: var(--gap-xl);
  flex-wrap: wrap;
}

.hero-credibility {
  display: flex;
  gap: var(--gap-xl);
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
}

.cred-item i {
  color: var(--emerald);
  font-size: 14px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 480px;
}

.hero-card {
  position: absolute;
  background: var(--sand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--gap-lg);
  transition: transform 0.4s ease;
}

.hero-card:hover { transform: translateY(-4px); }

.hero-card-1 {
  top: 0;
  right: 20px;
  width: 240px;
  z-index: 3;
}

.hero-card-2 {
  top: 120px;
  right: 80px;
  width: 200px;
  background: var(--white);
  border: 1px solid var(--stone);
  z-index: 2;
}

.hero-card-3 {
  top: 60px;
  right: 0;
  width: 180px;
  background: var(--pearl);
  z-index: 1;
}

.hero-card h4 {
  font-size: 14px;
  margin-bottom: var(--gap-sm);
}

.hero-card .price {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--emerald);
}

.hero-card .price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate);
}

.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--gap-md);
}

.chip {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--forest);
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: var(--gap-2xl);
}

.section-header h2 {
  margin-bottom: var(--gap-md);
}

.section-header p {
  font-size: 18px;
  color: var(--slate);
  max-width: 600px;
}

/* --- Brand Positioning --- */
.brand-pos {
  text-align: center;
}

.brand-pos .section-header {
  margin: 0 auto var(--gap-xl);
  max-width: 800px;
}

.feature-pills {
  display: flex;
  justify-content: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
  margin-top: var(--gap-xl);
}

.pill {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  transition: all 0.3s;
}

.pill:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

/* --- Category Ribbon --- */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.category-card {
  background: linear-gradient(180deg, var(--sand) 0%, #f8f8f3 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(220px, 0.9fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(21,24,23,0.05);
}

.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.category-main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.category-card .icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-md);
  font-size: 20px;
  color: var(--emerald);
  flex-shrink: 0;
}

.category-copy {
  min-width: 0;
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.category-card p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: var(--gap-md);
  line-height: 1.6;
}

.category-price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.category-price-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(21,24,23,0.08);
  color: var(--forest);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.category-price-chip-primary {
  background: rgba(19,128,95,0.1);
  border-color: rgba(19,128,95,0.14);
  color: var(--emerald-dark);
  font-weight: 700;
}

.category-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.category-card .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.category-card .chips a {
  font-size: 12px;
  color: var(--slate);
  background: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.category-card .chips a:hover {
  background: var(--emerald);
  color: var(--white);
}

.category-card .browse-link {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ecosystem-actions {
  margin-top: var(--gap-xl);
}

.service-catalog-panel {
  margin-top: var(--gap-xl);
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.service-catalog-panel.is-visible {
  animation: catalogReveal 0.35s ease;
}

.service-catalog-header {
  margin-bottom: var(--gap-lg);
  text-align: left;
}

.service-catalog-header h3 {
  margin-bottom: 8px;
}

.service-catalog-header p {
  color: var(--slate);
}

.service-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap-lg);
}

.service-catalog-group {
  background: var(--pearl);
  border: 1px solid rgba(21,24,23,0.06);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-catalog-group:hover,
.service-catalog-group.catalog-focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(19,128,95,0.24);
}

.service-catalog-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: var(--gap-md);
}

.service-catalog-group-header h4 {
  font-size: 17px;
}

.service-catalog-group-header span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(19,128,95,0.08);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
}

.service-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--white);
  color: var(--forest);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(21,24,23,0.06);
  transition: all 0.2s ease;
}

.service-link-list a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
  transform: translateY(-1px);
}

@keyframes catalogReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Curated Picks --- */
.curated-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-md);
  font-size: 24px;
  transition: transform 0.3s;
}

.service-card:hover .icon {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: var(--gap-lg);
  line-height: 1.6;
}

.service-card .btn-sm {
  width: 100%;
}

.view-all-card {
  background: var(--emerald);
  border-color: var(--emerald);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.view-all-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: var(--gap-sm);
}

.view-all-card p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--gap-lg);
}

.view-all-card .btn {
  background: var(--white);
  color: var(--emerald);
}

.view-all-card .btn:hover {
  background: var(--pearl);
}

/* --- Service Depth --- */
.depth-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}

.depth-content h2 {
  margin-bottom: var(--gap-lg);
}

.depth-content p {
  font-size: 18px;
  margin-bottom: var(--gap-xl);
  line-height: 1.65;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--forest);
}

.checklist li i {
  color: var(--emerald);
  font-size: 18px;
}

.depth-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.depth-thumb {
  background: var(--sand);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--slate);
  transition: all 0.3s;
}

.depth-thumb:hover {
  background: var(--emerald);
  color: var(--white);
  transform: scale(1.05);
}

/* --- Pricing Studio --- */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-2xl);
  background: var(--white);
  padding: 6px;
  border-radius: var(--radius-pill);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
}

.pricing-tab {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--slate);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  text-align: center;
}

.pricing-tab.active {
  background: var(--emerald);
  color: var(--white);
}

.pricing-tab:hover:not(.active) {
  color: var(--emerald);
}

.pricing-tab-group {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xl);
}

.pricing-tab-group-aged {
  gap: var(--gap-lg);
}

.pricing-tabs-aged {
  max-width: 760px;
}

.pricing-panel { display: none; }
.pricing-panel.active {
  display: block;
  animation: fadeInUp 0.35s ease;
}

/* Fresh Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap-lg);
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(21,24,23,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card-header {
  padding: var(--gap-lg);
  border-bottom: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card-header h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.pricing-card-header .price-per {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--emerald);
}

.pricing-card-header .price-per span {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate);
}

.pricing-card-body {
  padding: var(--gap-lg);
  display: flex;
  flex: 1;
  flex-direction: column;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.package-grid-vertical {
  grid-template-columns: 1fr;
}

.package-item {
  background: var(--pearl);
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--stone);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  height: 100%;
}

.package-item .size {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  display: block;
  margin-bottom: 2px;
}

.package-item .total {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--emerald);
}

.pricing-card-footer {
  padding: 0 var(--gap-lg) var(--gap-lg);
  margin-top: auto;
}

.pricing-card-footer .btn {
  width: 100%;
  min-height: 44px;
}

.pricing-card-package {
  border-color: rgba(19,128,95,0.14);
  background: linear-gradient(180deg, rgba(19,128,95,0.04), rgba(255,255,255,1) 42%);
}

.pricing-card-package .pricing-card-header {
  min-height: 150px;
}

.pricing-card-aged {
  border-top: 4px solid var(--emerald);
}

.pricing-card-fresh {
  border-top: 4px solid var(--champagne);
}

.pricing-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: var(--pearl);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
}

.pricing-meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.pricing-meta strong {
  font-size: 18px;
  color: var(--forest);
  font-family: 'Manrope', sans-serif;
}

.pricing-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--forest);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-feature-list li i {
  color: var(--emerald);
  font-size: 14px;
  margin-top: 4px;
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(19,128,95,0.08);
  color: var(--emerald-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card-aged .price-per {
  font-size: 24px;
}

/* Aged Pricing */
.aged-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}

.aged-table {
  width: 100%;
  border-collapse: collapse;
}

.aged-table th {
  background: var(--pearl);
  padding: 16px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 2px solid var(--stone);
}

.aged-table th:first-child {
  text-align: left;
  border-radius: var(--radius-lg) 0 0 0;
}

.aged-table th:last-child { border-radius: 0 var(--radius-lg) 0 0; }

.aged-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--stone);
  font-size: 15px;
}

.aged-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--forest);
}

.aged-table .price {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--emerald);
}

.aged-table tr:last-child td { border-bottom: none; }

/* AI Pricing */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
}

.ai-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--gap-xl);
  text-align: center;
  transition: all 0.35s ease;
  border-top: 4px solid var(--emerald);
}

.ai-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.ai-card .icon {
  width: 64px;
  height: 64px;
  background: var(--pearl);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-md);
  font-size: 28px;
}

.ai-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.ai-card .ai-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--emerald);
  margin: var(--gap-md) 0;
}

.ai-card .ai-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate);
}

.ai-card p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: var(--gap-lg);
}

/* --- Order Journey --- */
.journey-steps {
  display: flex;
  gap: var(--gap-lg);
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  border-top: 2px dashed var(--stone);
  z-index: 0;
}

.journey-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto var(--gap-lg);
  box-shadow: 0 4px 16px rgba(19,128,95,0.3);
}

.journey-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.journey-step p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* --- Trust Section --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
}

.trust-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.trust-card .icon {
  width: 48px;
  height: 48px;
  background: var(--pearl);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gap-md);
  font-size: 20px;
  color: var(--emerald);
}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

/* --- Insights --- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
}

.insight-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.insight-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--stone), var(--pearl));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--slate);
}

.insight-content {
  padding: var(--gap-lg);
}

.insight-content h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.insight-content p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: var(--gap-md);
}

.insight-content a {
  font-size: 13px;
  font-weight: 600;
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--stone);
  margin-bottom: var(--gap-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--gap-lg) 0;
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--emerald);
  font-size: 14px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: var(--gap-lg);
}

.faq-answer p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* --- Final CTA --- */
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  max-width: 700px;
  margin: 0 auto;
}

.cta-card {
  background: var(--white);
  border: 2px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: var(--gap-2xl);
  text-align: center;
  transition: all 0.35s ease;
}

.cta-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cta-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-lg);
  font-size: 32px;
  color: var(--white);
}

.cta-card.whatsapp .icon { background: #25D366; }
.cta-card.telegram .icon { background: #0088cc; }

.cta-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.cta-card .handle {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: var(--gap-lg);
}

.cta-support {
  text-align: center;
  margin-top: var(--gap-xl);
  font-size: 15px;
  color: var(--slate);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--stone);
  padding: var(--gap-2xl) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: var(--gap-2xl);
  margin-bottom: var(--gap-2xl);
}

.footer-brand .logo {
  margin-bottom: var(--gap-md);
  display: inline-block;
}

.footer-brand p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate);
  margin-bottom: var(--gap-lg);
}

.footer-column ul li { margin-bottom: 8px; }

.footer-column ul li a {
  font-size: 14px;
  color: var(--forest);
  transition: color 0.2s;
}

.footer-column ul li a:hover { color: var(--emerald); }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--forest);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--emerald); }

.footer-contact i { font-size: 16px; }

.footer-bottom {
  border-top: 1px solid var(--stone);
  padding-top: var(--gap-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--slate);
}

/* ============================================
   SERVICE PAGE TEMPLATE
   ============================================ */

/* --- Service Hero --- */
.srv-hero {
  padding: 60px 0;
  text-align: center;
}

.srv-hero .icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-lg);
  font-size: 36px;
}

.srv-hero h1 {
  margin-bottom: var(--gap-md);
}

.srv-hero p {
  font-size: 18px;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* --- Value Bar --- */
.value-bar {
  background: var(--pearl);
  padding: var(--gap-xl) 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.value-bar .container {
  display: flex;
  justify-content: center;
  gap: var(--gap-2xl);
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-item i {
  font-size: 20px;
  color: var(--emerald);
}

.value-item span {
  font-weight: 600;
  font-size: 14px;
  color: var(--forest);
}

/* --- Order CTA Area --- */
.order-area {
  background: var(--pearl);
  padding: var(--gap-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: var(--gap-2xl) 0;
}

.order-area h3 {
  margin-bottom: var(--gap-sm);
}

.order-area p {
  color: var(--slate);
  margin-bottom: var(--gap-xl);
}

.order-buttons {
  display: flex;
  justify-content: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
}

/* --- Explainer --- */
.explainer h2 {
  margin-bottom: var(--gap-lg);
}

.explainer p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: var(--gap-lg);
}

.explainer ul {
  margin: var(--gap-lg) 0;
  padding-left: var(--gap-lg);
}

.explainer ul li {
  list-style: disc;
  margin-bottom: var(--gap-sm);
  color: var(--slate);
  line-height: 1.7;
}

/* --- Related Services --- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
}

.related-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: var(--gap-lg);
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.related-card .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.related-card h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.related-card span {
  font-size: 13px;
  color: var(--emerald);
}

/* --- Service FAQ --- */
.srv-faq { margin-top: var(--gap-2xl); }

/* ============================================
   UTILITY PAGES
   ============================================ */

.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--gap-md);
}

.page-hero p {
  font-size: 18px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
}

.content-section h2 {
  margin-bottom: var(--gap-lg);
}

.content-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: var(--gap-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: var(--gap-xl);
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card .icon {
  width: 56px;
  height: 56px;
  background: var(--pearl);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--gap-md);
  font-size: 24px;
  color: var(--emerald);
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 14px;
  color: var(--slate);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--pearl), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--slate);
}

.blog-content {
  padding: var(--gap-lg);
}

.blog-content .category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--emerald);
  margin-bottom: var(--gap-sm);
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.blog-content p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.privacy-content h2 {
  margin: var(--gap-xl) 0 var(--gap-md);
  font-size: 24px;
}

.privacy-content p {
  margin-bottom: var(--gap-md);
  line-height: 1.75;
  color: var(--slate);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199px) {
  .category-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .curated-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .depth-section .container { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-card-package .pricing-card-header {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .floating-chat-widget {
    left: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-chat-link {
    width: 52px;
    min-width: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-chat-link span {
    display: none;
  }


  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
  .top-bar-left, .top-bar-right { display: none; }

  .nav-links { display: none; }
  .navbar .container {
    height: auto;
    min-height: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px;
  }
  .logo {
    font-size: 20px;
    max-width: calc(100% - 60px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-toggle { display: inline-flex; }
  .mobile-menu { display: block; }
  .navbar .btn { display: none; }

  .hero { padding: 48px 0 60px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .hero-credibility { gap: var(--gap-md); }

  .category-grid { grid-template-columns: 1fr; }
  .category-card {
    padding: 20px;
    gap: 16px;
  }
  .category-main {
    flex-direction: column;
    gap: 12px;
  }
  .curated-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .cta-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--gap-xl); }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .journey-steps {
    flex-direction: column;
    gap: var(--gap-xl);
  }
  .journey-steps::before { display: none; }

  .pricing-tabs { flex-direction: column; border-radius: var(--radius-lg); }
  .pricing-tabs-aged { max-width: 100%; }
  .pricing-tab {
    width: 100%;
    min-height: 48px;
  }
  .order-modal-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .order-modal-card h3 {
    font-size: 24px;
  }
  .order-modal-summary {
    grid-template-columns: 1fr;
  }
  .package-grid { grid-template-columns: 1fr; }
  .feature-pills { flex-direction: column; align-items: center; }
  .feature-pills .pill { width: 100%; max-width: 280px; text-align: center; }
  .category-price-chip {
    width: auto;
    max-width: 100%;
  }

  :root { --section-py: 48px; }
  .section { padding: 48px 0; }

  .value-bar .container { flex-direction: column; gap: var(--gap-md); align-items: center; }
  .depth-visual { grid-template-columns: repeat(2, 1fr); }

  .dropdown-menu { display: none !important; }
}

@media (min-width: 768px) {
  .mobile-menu.open { right: -100% !important; }
  .mobile-overlay.open { display: none !important; }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Smooth scroll offset for sticky nav */
html { scroll-padding-top: 80px; }

/* Selection */
::selection {
  background: rgba(19,128,95,0.2);
  color: var(--ink);
}

/* Focus states */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pearl); }
::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--slate); }
