/* ============================================
   OPTIMITOR — The Search Visibility Studio
   Shared Stylesheet v2.0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Light premium palette */
  --bg-cream: #faf9f6;
  --bg-white: #ffffff;
  --bg-warm: #f5f3ee;
  --bg-dark: #111118;
  --bg-dark-soft: #1a1a24;
  --bg-card: #ffffff;
  --bg-card-dark: #16161f;

  /* Brand colors */
  --lime: #c2d93e;
  --lime-light: #d4e85a;
  --lime-dark: #9fb82e;
  --lime-glow: rgba(194, 217, 62, 0.15);
  --lime-glow-strong: rgba(194, 217, 62, 0.3);

  /* Text */
  --text-primary: #111118;
  --text-secondary: #4a4a5a;
  --text-muted: #8a8a9a;
  --text-on-dark: #f0efe8;
  --text-on-dark-muted: #a0a0b0;

  /* Borders */
  --border-light: rgba(17,17,24,0.08);
  --border-medium: rgba(17,17,24,0.12);
  --border-dark: rgba(255,255,255,0.08);
  --border-lime: rgba(194,217,62,0.3);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-secondary); max-width: 65ch; }
.text-lime { color: var(--lime); }
.text-muted { color: var(--text-muted); }

/* ============ LAYOUT ============ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-pad) 0; }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section-dark p { color: var(--text-on-dark-muted); }
.section-warm { background: var(--bg-warm); }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: rgba(250, 249, 246, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
.nav.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--text-primary) !important;
  color: var(--bg-cream) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--lime) !important;
  color: var(--text-primary) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile nav */
.nav-toggle { display: none; background: none; font-size: 1.5rem; color: var(--text-primary); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-display);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--lime);
  color: var(--text-primary);
}
.btn-primary:hover {
  background: var(--lime-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(194,217,62,0.3);
}
.btn-dark {
  background: var(--text-primary);
  color: var(--bg-cream);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
}
.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime-dark);
  transform: translateY(-2px);
}
.btn-on-dark {
  background: var(--lime);
  color: var(--text-primary);
}
.btn-on-dark:hover {
  background: var(--lime-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(194,217,62,0.25);
}

/* ============ LABEL / TAG ============ */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
  color: var(--lime-dark);
  padding: 0.4rem 1rem;
  background: var(--lime-glow);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-lime);
}
.label-dark {
  background: rgba(194,217,62,0.1);
  color: var(--lime);
  border-color: rgba(194,217,62,0.2);
}

/* ============ HERO ============ */
.hero {
  padding: calc(var(--section-pad) + 4rem) 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, var(--lime-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.5; transform: translate(0, 0) scale(1); }
  100% { opacity: 0.8; transform: translate(-5%, 5%) scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--lime), var(--lime-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 55ch;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
}
.hero-stat h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lime), var(--lime-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }

@media (max-width: 768px) {
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.5;
}
.trust-logos span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  font-size: 1.1rem;
  margin: 0 auto;
}

/* ============ CARDS ============ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s ease;
}
.card:hover {
  border-color: var(--border-lime);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.card-dark {
  background: var(--bg-card-dark);
  border-color: var(--border-dark);
}
.card-dark:hover {
  border-color: rgba(194,217,62,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ============ SERVICE CARDS ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  border-color: var(--border-lime);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--lime-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--lime-dark);
}
.service-card h3 { margin-bottom: 0.8rem; }
.service-card p { font-size: 0.95rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lime-dark);
}
.service-link:hover { gap: 0.7rem; }

/* ============ PRICING CARDS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--lime);
  box-shadow: 0 0 0 1px var(--lime), 0 20px 60px rgba(194,217,62,0.12);
  transform: scale(1.02);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-dark));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--lime);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin: 1.5rem 0;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pricing-feature .check {
  color: var(--lime-dark);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* Dark pricing card variant */
.pricing-card-dark {
  background: var(--bg-card-dark);
  border-color: var(--border-dark);
  color: var(--text-on-dark);
}
.pricing-card-dark .pricing-desc,
.pricing-card-dark .pricing-period { color: var(--text-on-dark-muted); }
.pricing-card-dark .pricing-feature { color: var(--text-on-dark-muted); }
.pricing-card-dark .pricing-divider { background: var(--border-dark); }

/* ============ PROCESS SECTION ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.process-step {
  position: relative;
  padding: 2rem;
}
.process-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--lime), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: 1rem;
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.process-step p { font-size: 0.9rem; }

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars { color: var(--lime); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--lime-dark);
  font-size: 0.85rem;
}
.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
}
.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============ FAQ ============ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  gap: 1rem;
}
.faq-question span { transition: transform 0.3s ease; }
.faq-item.active .faq-question span { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 1rem;
}
.faq-answer p { font-size: 0.95rem; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(194,217,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-content h2 { margin-bottom: 1rem; color: var(--text-on-dark); }
.cta-content p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  margin: 0 auto 2.5rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 300px; }
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
}
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ============ PAGE HERO (for sub-pages) ============ */
.page-hero {
  padding: calc(var(--section-pad) + 3rem) 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, var(--lime-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.5;
}
.page-hero h1 { margin-bottom: 1rem; position: relative; z-index: 2; }
.page-hero p {
  font-size: 1.15rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--bg-dark);
}
.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ TAB NAVIGATION ============ */
.tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab:hover { border-color: var(--lime); color: var(--text-primary); }
.tab.active {
  background: var(--text-primary);
  color: var(--bg-cream);
  border-color: var(--text-primary);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ GRID HELPERS ============ */
.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.5rem; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============ COMPARISON TABLE ============ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: left;
  padding: 1rem;
  border-bottom: 2px solid var(--border-medium);
}
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.comparison-table tr:hover td { background: var(--lime-glow); }

/* ============ CASE STUDY CARDS ============ */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.case-image {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}
.case-content { padding: 2rem; }
.case-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
.case-stat { text-align: center; }
.case-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lime-dark);
}
.case-stat span { font-size: 0.8rem; color: var(--text-muted); }

/* ============ CONTACT FORM ============ */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-white);
  transition: border-color 0.3s ease;
  color: var(--text-primary);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-glow);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ============ MISC ============ */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: 0;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }