/* ===== WEBBIE.BUSINESS — Premium Dark Theme ===== */
/* TradeVisionPro-inspired: dark backgrounds, green accents, glassmorphism */

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

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.5);
  --bg-card-hover: rgba(17, 24, 39, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.1);

  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --blue-400: #60a5fa;
  --blue-600: #2563eb;
  --purple-400: #c084fc;
  --purple-600: #9333ea;
  --yellow-400: #facc15;
  --orange-500: #f97316;
  --red-500: #ef4444;
  --cyan-400: #22d3ee;
  --pink-500: #ec4899;
  --amber-400: #fbbf24;
  --teal-400: #2dd4bf;

  --text-white: #ffffff;
  --text-gray-100: #f3f4f6;
  --text-gray-200: #e5e7eb;
  --text-gray-300: #d1d5db;
  --text-gray-400: #9ca3af;
  --text-gray-500: #6b7280;
  --text-gray-600: #4b5563;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-green: 0 0 30px rgba(34, 197, 94, 0.15);
  --shadow-green-strong: 0 0 40px rgba(34, 197, 94, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);

  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-gray-300);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

/* ===== ANIMATED BACKGROUND ===== */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: float 8s ease-in-out infinite;
}

.bg-orbs .orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(34, 197, 94, 0.08);
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.bg-orbs .orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.06);
  top: 40%;
  right: -5%;
  animation-delay: 2s;
}

.bg-orbs .orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(147, 51, 234, 0.06);
  bottom: 10%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
  font-size: 20px;
  color: white;
  font-weight: 800;
}

.nav-brand h2 {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  color: var(--text-gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: white;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: var(--shadow-green-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green-400);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.btn-outline:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--green-400);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-gray-300);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(37, 99, 235, 0.15));
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--green-400);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 .line-1 {
  display: block;
  background: linear-gradient(135deg, #fff, #d1d5db, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-gray-400);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-sub strong {
  color: var(--green-400);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--text-gray-500);
  font-size: 0.85rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--green-400);
}

/* ===== SECTION BASE ===== */
section {
  position: relative;
  z-index: 1;
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, #d1d5db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray-500);
  font-weight: 500;
}

/* ===== TECH STACK STRIP ===== */
.tech-strip,
.client-strip {
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.tech-strip-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-gray-600);
  font-weight: 600;
  margin-bottom: 24px;
}

.tech-logos,
.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.tech-logo-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-gray-500);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.tech-logo-item:hover {
  color: var(--text-gray-300);
}

.tech-icon {
  font-size: 1rem;
}

.client-logo-item {
  color: var(--text-gray-600);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.client-logo-item:hover {
  opacity: 0.85;
  color: var(--text-gray-400);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-card);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-gray-400);
  line-height: 1.7;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.3), transparent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-subtle);
  transition: transform 0.5s ease;
}

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

.portfolio-img-wrapper {
  overflow: hidden;
  position: relative;
}

.portfolio-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.8));
  pointer-events: none;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-info h3 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: var(--text-gray-400);
  line-height: 1.6;
}

/* ===== FEATURES / WHY WEBBIE ===== */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.feature-block {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.feature-block:hover {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-block .feat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature-block h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.feature-block p {
  font-size: 0.9rem;
  color: var(--text-gray-400);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.3), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.price-card.featured {
  border-color: var(--green-500);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

.price-card.featured::before {
  content: '⭐ MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
}

.price-card .tier-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray-500);
  margin-bottom: 8px;
  font-weight: 600;
}

.price-card h3 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.price-card .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-400);
  margin-bottom: 4px;
}

.price-card .price-sub {
  font-size: 0.8rem;
  color: var(--text-gray-500);
  margin-bottom: 24px;
}

.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-card ul li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-gray-400);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-card ul li::before {
  content: '✓';
  color: var(--green-400);
  font-weight: 700;
  margin-top: 1px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-stars {
  color: var(--yellow-400);
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-white);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-gray-500);
}

/* ===== COVENANT BANNER ===== */
.covenant {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
}

.covenant-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.covenant h3 {
  color: var(--yellow-400);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.covenant p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-gray-400);
  font-style: italic;
  line-height: 1.7;
}

.covenant .covenant-sub {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-gray-600);
  font-style: normal;
}

/* ===== FREE BLUEPRINT BANNER ===== */
.blueprint-banner {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blueprint-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(251, 191, 36, 0.06), rgba(147, 51, 234, 0.05));
  pointer-events: none;
}

.blueprint-banner-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.blueprint-badge {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--amber-400);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.2); }
  50% { box-shadow: 0 0 20px 4px rgba(251, 191, 36, 0.15); }
}

.blueprint-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text-white);
  margin-bottom: 16px;
}

.blueprint-banner p {
  font-size: 1.1rem;
  color: var(--text-gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 60px 0 100px;
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(37, 99, 235, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.cta-box h2 {
  font-size: 2.2rem;
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-gray-400);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-email-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.cta-email-row input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.cta-email-row input:focus {
  border-color: var(--green-500);
}

.cta-email-row input::placeholder {
  color: var(--text-gray-600);
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.4);
}

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

.footer-brand h3 {
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-gray-500);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray-400);
  margin-bottom: 16px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-gray-500);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--green-400);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-gray-600);
}

.footer-bottom .covenant-link {
  color: var(--text-gray-500);
  font-style: italic;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-email-row {
    flex-direction: column;
  }

  .trust-row {
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--text-gray-200);
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--green-400);
}

.mobile-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-gray-300);
  font-size: 2rem;
  cursor: pointer;
}

/* ===== FLOATING CHAT BUTTON ===== */
.floating-chat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
}

.floating-chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
  transition: all 0.3s ease;
  animation: chat-pulse 2s ease-in-out infinite;
}

.floating-chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(34, 197, 94, 0.5);
}

@keyframes chat-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(34, 197, 94, 0.55); }
}

.floating-chat-menu {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.25s ease;
}

.floating-chat-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-xs);
  color: var(--text-gray-300);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}

.chat-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-400), var(--green-600));
  z-index: 1000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}
