/* Basil PM - Property Management */

:root {
  --basil-green: #00C853;
  --deep-green: #00A844;
  --mint: #69F0AE;
  --green-tint: #E8F5E9;
  --pure-black: #000000;
  --near-black: #0A0A0A;
  --dark-card: #121212;
  --elevated: #1A1A1A;
  --off-white: #FAFAFA;
  --white: #FFFFFF;
  --warm-gold: #FFB74D;
  --coral: #FF6B6B;
  --muted-gray: #9E9E9E;
  --dark-gray: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--pure-black);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 { font-size: 64px; font-weight: 800; }
h2 { font-size: 42px; font-weight: 700; }
h3 { font-size: 28px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }

p { margin-bottom: 1rem; }

a {
  color: var(--basil-green);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover { color: var(--mint); }

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

/* ========================================
   Navigation
   ======================================== */
nav {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.95);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

nav .logo-icon-img {
  width: 36px;
  height: 36px;
  display: block;
}

nav .logo-text {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: flex;
  flex-direction: column;
}

nav .logo-text-light {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

nav .nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

nav .nav-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--basil-green);
  transition: width 0.3s ease;
}

nav .nav-links a:hover { color: var(--white); }
nav .nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--basil-green) 0%, var(--deep-green) 100%);
  color: var(--pure-black);
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 200, 83, 0.4);
  color: var(--pure-black);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 0 2rem;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

#hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
}

.hero .tagline {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.7;
}

.hero .cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Sections
   ======================================== */
section {
  padding: 5rem 0;
  position: relative;
}

section.dark {
  background: linear-gradient(180deg, var(--pure-black) 0%, var(--dark-card) 50%, var(--pure-black) 100%);
}

section.elevated {
  background: linear-gradient(180deg, var(--dark-card) 0%, var(--elevated) 50%, var(--dark-card) 100%);
}

.dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--pure-black) 0%, transparent 100%);
  z-index: 1;
}

.dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, var(--pure-black) 100%);
  z-index: 1;
}

.dark .container {
  position: relative;
  z-index: 2;
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
  padding: 3rem 0;
  background: var(--dark-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--basil-green) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-item .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========================================
   Problem / Solution
   ======================================== */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.problem-col, .solution-col {
  background: rgba(26, 26, 26, 0.4);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-col { border-top: 3px solid var(--coral); }
.solution-col { border-top: 3px solid var(--basil-green); }

.problem-col h3 { color: var(--coral); }
.solution-col h3 { color: var(--basil-green); }

.problem-col ul, .solution-col ul {
  list-style: none;
  padding: 0;
}

.problem-col li, .solution-col li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.problem-col li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
  font-size: 13px;
  top: 2px;
}

.solution-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--basil-green);
  font-weight: 700;
  font-size: 15px;
  top: 1px;
}

/* ========================================
   Cards & Grid
   ======================================== */
.card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before { opacity: 1; }

.card h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 22px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  color: var(--basil-green);
}

.card-icon.gold {
  background: rgba(255, 183, 77, 0.1);
  border-color: rgba(255, 183, 77, 0.2);
  color: var(--warm-gold);
}

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

.card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.65;
}

.card .card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 1rem;
  background: rgba(0, 200, 83, 0.1);
  color: var(--basil-green);
  border: 1px solid rgba(0, 200, 83, 0.2);
}

.card .card-tag.gold {
  background: rgba(255, 183, 77, 0.1);
  color: var(--warm-gold);
  border-color: rgba(255, 183, 77, 0.2);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ========================================
   How It Works (Steps)
   ======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.15);
  color: var(--basil-green);
  border: 1px solid rgba(0, 200, 83, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 1.25rem;
}

.step-card h4 {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Connector line between steps */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: -1rem;
  width: calc(2rem);
  height: 1px;
  background: rgba(0, 200, 83, 0.2);
}

/* ========================================
   Experience / Credibility Section
   ======================================== */
.experience-content {
  max-width: 800px;
  margin: 0 auto;
}

.experience-content blockquote {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  border-left: 3px solid var(--basil-green);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.credibility-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.credibility-points li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.credibility-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(0, 200, 83, 0.2);
  border: 2px solid var(--basil-green);
}

/* ========================================
   Nashville Market Section
   ======================================== */
.nashville-section {
  text-align: center;
}

.nashville-section .market-quote {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 750px;
  margin: 1.5rem auto;
  line-height: 1.7;
}

/* ========================================
   Final CTA
   ======================================== */
.final-cta {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.02) 0%, var(--pure-black) 50%, rgba(255, 183, 77, 0.02) 100%);
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   Services Page
   ======================================== */
.service-section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-section:last-child {
  border-bottom: none;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-header .service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  color: var(--basil-green);
  flex-shrink: 0;
}

.service-header .service-icon svg {
  width: 22px;
  height: 22px;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.service-details ul {
  list-style: none;
  padding: 0;
}

.service-details li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.service-details li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--basil-green);
}

.service-pricing {
  background: rgba(26, 26, 26, 0.6);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 200, 83, 0.15);
}

.service-pricing .price-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.service-pricing .price-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--basil-green);
}

.service-pricing .price-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.service-callout {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(0, 200, 83, 0.05);
  border: 1px solid rgba(0, 200, 83, 0.15);
  border-radius: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  line-height: 1.6;
}

/* ========================================
   About Page
   ======================================== */
.about-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.about-hero .tagline {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.about-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.ecosystem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.ecosystem-card {
  background: rgba(26, 26, 26, 0.4);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.ecosystem-card:hover {
  border-color: rgba(0, 200, 83, 0.2);
  transform: translateY(-4px);
}

.ecosystem-card .eco-icon {
  margin-bottom: 1rem;
  color: var(--basil-green);
}

.ecosystem-card h4 {
  margin-bottom: 0.5rem;
}

.ecosystem-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   Contact / Form Page
   ======================================== */
.contact-page {
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.form-group label .required {
  color: var(--coral);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 16px;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--basil-green);
  background: rgba(26, 26, 26, 0.8);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.checkbox-group label:hover {
  border-color: rgba(0, 200, 83, 0.3);
  background: rgba(0, 200, 83, 0.05);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  accent-color: var(--basil-green);
}

.contact-sidebar {
  position: sticky;
  top: 100px;
}

.contact-info-card {
  background: rgba(26, 26, 26, 0.6);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.contact-info-card h4 {
  color: var(--basil-green);
  margin-bottom: 1rem;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--basil-green);
}

/* Alerts */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid;
  backdrop-filter: blur(8px);
}

.alert-success {
  background: rgba(0, 200, 83, 0.1);
  border-color: var(--basil-green);
  color: var(--mint);
}

.alert-error {
  background: rgba(255, 107, 107, 0.1);
  border-color: var(--coral);
  color: var(--coral);
}

/* ========================================
   Pricing Table (Services Page)
   ======================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(18, 18, 18, 0.6);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}

.pricing-table thead {
  background: rgba(26, 26, 26, 0.8);
}

.pricing-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.pricing-table td {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-table tr:hover {
  background: rgba(0, 200, 83, 0.03);
}

.pricing-table .included {
  color: var(--basil-green);
  font-weight: 600;
}

/* ========================================
   Footer
   ======================================== */
footer {
  background: var(--dark-card);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

footer .footer-section h4 {
  color: var(--basil-green);
  margin-bottom: 1.5rem;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

footer .footer-section ul {
  list-style: none;
}

footer .footer-section ul li {
  margin-bottom: 0.75rem;
}

footer .footer-section a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

footer .footer-section a:hover {
  color: var(--basil-green);
}

footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

/* ========================================
   Error Page
   ======================================== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page .error-code {
  font-size: 120px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--basil-green) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-muted { color: rgba(255, 255, 255, 0.6); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--pure-black); }
::-webkit-scrollbar-thumb { background: var(--elevated); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--basil-green); }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }

  .hero { min-height: 70vh; padding: 4rem 0 2rem; }
  .hero h1 { font-size: 38px; }
  .hero .tagline { font-size: 16px; }

  .nav-toggle { display: block; }

  nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

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

  nav .nav-links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  nav .nav-links li:last-child { border-bottom: none; }
  nav .nav-links a { font-size: 16px; }
  nav .nav-links a::after { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item .stat-number { font-size: 32px; }

  .problem-solution { grid-template-columns: 1fr; gap: 2rem; }
  .problem-col, .solution-col { padding: 1.5rem; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .step-card:not(:last-child)::after { display: none; }

  section { padding: 3rem 0; }
  .card { padding: 1.5rem; }

  .service-details { grid-template-columns: 1fr; gap: 1.5rem; }

  .ecosystem-cards { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
