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

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  /* Brand Colors */
  --green: #a3cc36;
  --green-dark: #1a361f;
  --green-light: #c8e66b;
  --green-muted: rgba(163, 204, 54, 0.12);
  --green-glow: rgba(163, 204, 54, 0.4);

  /* Gradient */
  --gradient: linear-gradient(135deg, #a3cc36 0%, #1a361f 100%);
  --gradient-soft: linear-gradient(135deg, rgba(163,204,54,0.15), rgba(26,54,31,0.08));
  --gradient-radial: radial-gradient(circle at 30% 20%, rgba(163,204,54,0.1) 0%, transparent 50%);

  /* Neutrals */
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f4f7f1;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.12);

  /* Text */
  --text: #0d120f;
  --text-secondary: #52665a;
  --text-muted: #8a9b90;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Spacing */
  --section-y: clamp(4rem, 8vw, 12rem);

  /* Radius */
  --r-sm: 12px;
  --r-md: 24px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.08);
  --shadow-glow: 0 12px 40px rgba(163,204,54,0.15);

  /* Transition */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --duration: 0.4s;
}

/* ═══════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  -webkit-font-smoothing: antialiased; 
  overflow-x: hidden; 
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; }

::selection {
  background: var(--green);
  color: var(--green-dark);
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  padding-bottom: 0.1em; /* extra padding to prevent descender cutoff if container has overflow: hidden */
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
p { color: var(--text-secondary); line-height: 1.6; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.75;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--green-muted);
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(163,204,54,0.2);
}

.eyebrow {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.bg-alt { background: var(--bg-alt); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-header { margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .feature-split > * { min-width: 0; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--green);
  color: var(--green-dark);
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(26,54,31,0.25);
}
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(0,0,0,0.1);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: scale(1.02);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  transform: scale(1.02);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.02);
}

/* ═══════════════════════════════════════════
   BENTO CARDS (Formerly Glass Cards)
   ═══════════════════════════════════════════ */
.glass-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration) var(--ease);
  overflow: hidden;
}

.hover-lift:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--duration) var(--ease);
}
header.scrolled {
  background: rgba(247,249,244,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-xs);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display: flex; align-items: center; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--duration) var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: width var(--duration) var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-dark);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Megamenu Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  position: relative;
  transition: color var(--duration) var(--ease);
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.nav-dropdown-toggle .material-symbols-outlined {
  font-size: 1.2rem;
  transition: transform var(--duration) var(--ease);
}
.nav-dropdown:hover .nav-dropdown-toggle, .nav-dropdown-toggle.active {
  color: var(--green-dark);
}
.nav-dropdown:hover .nav-dropdown-toggle .material-symbols-outlined {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: max-content;
  min-width: 260px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  pointer-events: none;
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex !important;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  transition: background var(--duration) var(--ease);
  color: var(--text) !important;
  text-decoration: none;
}
.dropdown-item::after { display: none !important; }
.dropdown-item:hover {
  background: var(--bg-alt);
}
.dropdown-item .icon {
  color: var(--green);
  font-size: 1.5rem;
  margin-top: 2px;
}
.dropdown-item .text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dropdown-item .text strong {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-dark);
}
.dropdown-item .text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: 11rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; left: -20%;
  width: 70%; height: 80%;
  background: radial-gradient(ellipse, rgba(163,204,54,0.12) 0%, transparent 65%);
  z-index: 0;
  animation: floatBlob 15s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -15%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(26,54,31,0.08) 0%, transparent 65%);
  z-index: 0;
  animation: floatBlob 18s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-content .eyebrow { font-size: 0.8rem; }
.hero-content h1 { margin: 0.75rem 0 1.5rem; }
.hero-content > p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Image */
.hero-image { position: relative; }
.hero-image .glass-card {
  padding: 0.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.8s var(--ease);
}
.hero-image .glass-card:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.hero-image .glass-card img { border-radius: var(--r-md); }

/* Mobile mockup */
.mobile-mockup {
  max-width: 280px;
  margin: 0 auto;
  border-radius: 36px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  background: var(--white);
  transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.8s var(--ease);
}
.mobile-mockup:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}
.mobile-mockup img { width: 100%; height: auto; }

/* ═══════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════ */
.service-card {
  padding: 2.5rem;
  text-align: center;
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-card p { margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════ */
.feature-card {
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-hover);
}

.feature-icon {
  width: 56px; height: 56px;
  background: var(--gradient-soft);
  border: 1px solid rgba(163,204,54,0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
  transition: all var(--duration) var(--ease);
}
.feature-card:hover .feature-icon {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.08);
}
.feature-icon .material-symbols-outlined { font-size: 1.6rem; }
.feature-card h4 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   APP CARDS
   ═══════════════════════════════════════════ */
.app-card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}
.app-card h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.app-card > p { margin-bottom: 2rem; }

.check-list { display: flex; flex-direction: column; gap: 0.85rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.check-list li .material-symbols-outlined {
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-list strong { color: var(--text); }

.app-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   SOLUTION CARDS
   ═══════════════════════════════════════════ */
.solution-card {
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.solution-card h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.solution-card > p { margin-bottom: 2rem; }

/* ═══════════════════════════════════════════
   STORE BUTTONS
   ═══════════════════════════════════════════ */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.65rem 1.2rem;
  border-radius: var(--r-sm);
  transition: all var(--duration) var(--ease);
  border: 1px solid rgba(255,255,255,0.1);
}
.store-btn:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,54,31,0.25);
}
.store-btn .icon { font-size: 1.4rem; }
.store-btn .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.store-btn .text small { font-size: 0.6rem; opacity: 0.75; margin-bottom: 2px; }
.store-btn .text strong { font-size: 0.85rem; font-weight: 600; }

/* ═══════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════ */
.steps-container { margin-top: 3rem; }
.step-card { text-align: center; padding: 2.5rem 2rem; }
.step-number {
  width: 48px; height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: var(--font-display);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glow);
  transition: transform var(--duration) var(--ease-spring);
}
.step-card:hover .step-number { transform: scale(1.15); }
.step-card h4 { margin-bottom: 0.75rem; }
.step-card p { font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   INDUSTRIES & TESTIMONIALS
   ═══════════════════════════════════════════ */
.industry-card {
  padding: 2.5rem;
}
.testimonial-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonial-carousel::-webkit-scrollbar {
  display: none;
}
.testimonial-carousel .testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .testimonial-carousel .testimonial-card {
    flex: 0 0 85vw;
  }
}

.testimonial-card {
  padding: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ═══════════════════════════════════════════
   STAT CARDS
   ═══════════════════════════════════════════ */
.stat-card {
  padding: 2.5rem 2rem;
  text-align: center;
}
.stat-card h3 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stat-card p { font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-container { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 3rem; }
.faq-item {
  padding: 1.75rem 2rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.faq-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateX(4px);
}
.faq-item h4 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq-item h4 .material-symbols-outlined {
  color: var(--green);
  font-size: 1.2rem;
}
.faq-item p { font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */
.pricing-card {
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient);
}
.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.3rem;
  margin: 1.5rem 0 0.5rem;
}
.price .currency { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.price .amount {
  font-size: 4.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}
.price .period { color: var(--text-secondary); font-size: 1rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.85rem; text-align: left; margin-top: 2rem; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-container { padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all var(--duration) var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-muted);
}

/* ═══════════════════════════════════════════
   FEATURE SPLIT LAYOUT (Features page)
   ═══════════════════════════════════════════ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-split-reverse { direction: rtl; }
.feature-split-reverse > * { direction: ltr; }
.feature-split-content h2 { margin: 0.75rem 0 1.25rem; }
.feature-split-content > p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.benefit-list { display: flex; flex-direction: column; gap: 1.25rem; }
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--gradient-soft);
  border: 1px solid rgba(163,204,54,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  transition: all var(--duration) var(--ease);
}
.benefit-item:hover .benefit-icon {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}
.benefit-icon .material-symbols-outlined { font-size: 1.3rem; }
.benefit-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.benefit-item p { font-size: 0.88rem; line-height: 1.5; }

.feature-split-visual { display: flex; align-items: center; justify-content: center; }
.feature-visual-card {
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.feature-visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient);
}
.feature-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}
.feature-visual-icon {
  font-size: 3.5rem !important;
  color: var(--green);
  margin-bottom: 1.5rem;
  display: block;
}
.feature-visual-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.feature-visual-card > p { margin-bottom: 2rem; font-size: 0.92rem; }
.feature-visual-stats { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.stat-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: var(--green-muted);
  border: 1px solid rgba(163,204,54,0.12);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
}
.stat-pill .material-symbols-outlined {
  font-size: 0.95rem;
  color: var(--green-dark);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  background: linear-gradient(to bottom, transparent, rgba(163,204,54,0.04));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 { font-size: 1rem; margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--duration) var(--ease);
}
.footer-col ul a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-children > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(9) { transition-delay: 0.61s; opacity: 1; transform: translateY(0); }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-spring);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Legacy class support */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 3rem; }
.text-sm { font-size: 0.875rem; }
.text-secondary { color: var(--text-secondary); }

/* ═══════════════════════════════════════════
   INCLUDED CARD (Feature Page)
   ═══════════════════════════════════════════ */
.included-card {
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}
.included-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.included-card:hover::before { transform: scaleX(1); }
.included-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.included-card-header .feature-icon { flex-shrink: 0; margin-bottom: 0; }
.included-card-header h4 { margin: 0; }
.included-card > p { font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   HOW-STEPS TIMELINE (Feature Page)
   ═══════════════════════════════════════════ */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  max-width: 720px;
  margin: 3rem auto 0;
}
.how-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-dark));
  opacity: 0.2;
  border-radius: 1px;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 2rem 2.25rem;
  position: relative;
  z-index: 1;
}
.how-step-number {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  box-shadow: var(--shadow-glow);
  transition: transform var(--duration) var(--ease-spring);
}
.how-step:hover .how-step-number { transform: scale(1.15); }
.how-step-body h4 { margin-bottom: 0.5rem; }
.how-step-body p { font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   TESTIMONIAL (Feature Page)
   ═══════════════════════════════════════════ */
.testimonial-block {
  max-width: 720px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
}
.testimonial-quote {
  font-size: 3rem !important;
  color: var(--green);
  opacity: 0.5;
  display: block;
  margin-bottom: 1.5rem;
}
.testimonial-block blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-author strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}
.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   PROBLEM / SOLUTION (Experiences Page)
   ═══════════════════════════════════════════ */
.problem-solution-block {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.ps-content {
  flex: 1;
}
.ps-visual {
  flex: 1;
}
.ps-compare {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
}
.ps-before h4, .ps-after h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ps-before ul, .ps-after ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ps-before li, .ps-after li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}
.ps-before li::before, .ps-after li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.ps-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* ═══════════════════════════════════════════
   EXPERIENCE CARDS (Experiences Page)
   ═══════════════════════════════════════════ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.exp-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.exp-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(163, 204, 54, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s var(--ease);
}
.exp-card-icon .material-symbols-outlined {
  font-size: 1.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s var(--ease);
}
.exp-card:hover .exp-card-icon {
  background: var(--gradient);
}
.exp-card:hover .exp-card-icon .material-symbols-outlined {
  background: none;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}
.exp-card h4 {
  margin-bottom: 0.75rem;
}
.exp-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}
.exp-card-wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}
.exp-card-wide .exp-card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.exp-card-wide p {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   OBJECTION LIST (Experiences Page)
   ═══════════════════════════════════════════ */
.objection-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}
.objection-card {
  padding: 2rem 2.5rem;
}
.objection-card h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.objection-card p {
  margin: 0;
  font-size: 0.95rem;
  padding-left: 2rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-container { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-divider { display: none !important; }
  .hero-container,
  .grid-2,
  .grid-3,
  .footer-grid,
  .contact-grid,
  .feature-split { grid-template-columns: 1fr; }
  .feature-split-reverse { direction: ltr; }
  .hero { padding: 9rem 0 4rem; }
  .hero-image { display: none; }
  .section { padding: clamp(3.5rem, 6vw, 6rem) 0; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .feature-visual-card { max-width: 100%; }
  .how-steps::before { left: 0; display: none; }
  .how-step { flex-direction: column; gap: 1rem; }
  .testimonial-block { padding: 2rem; }
  .testimonial-block blockquote { font-size: 1rem; }
  .problem-solution-block { flex-direction: column; gap: 2.5rem; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card-wide { grid-column: auto; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .exp-card-wide .exp-card-icon { margin-bottom: 0; }
  .nav-dropdown-menu { flex-direction: column; width: 100%; min-width: auto; position: static; transform: none; padding: 0.5rem; opacity: 1; visibility: visible; }
  .nav-dropdown:hover .nav-dropdown-menu { transform: none; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .container { padding: 0 1.25rem; }
}
