/* ============================================
   VIRIDIAN — B2B Paid Search Agency
   Modern Light Theme with Premium Touches
   ============================================ */

:root {
  --viridian: #40826D;
  --viridian-dark: #2d6b56;
  --coral: #E07A5F;
  --coral-dark: #C96A50;
  --bg: #F5F3EF;
  --bg-warm: #FAF9F6;
  --text: #1C1917;
  --text-secondary: #57534E;
  --text-muted: #78716C;
  --text-light: #A8A29E;
  --border: rgba(28, 25, 23, 0.06);
  --glass: rgba(255, 255, 255, 0.55);
  --shadow-sm: 0 4px 20px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 8px 40px rgba(28, 25, 23, 0.06);
  --shadow-lg: 0 24px 80px rgba(28, 25, 23, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */

.aurora {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: aurora-drift 20s ease-in-out infinite;
}

.aurora-1 {
  top: -300px; left: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(ellipse at center, rgba(64,130,109,0.22) 0%, transparent 70%);
}

.aurora-2 {
  top: 400px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(224,122,95,0.14) 0%, transparent 70%);
  animation-delay: -5s;
  animation-duration: 25s;
}

.aurora-3 {
  bottom: 200px; left: 20%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(64,130,109,0.08) 0%, transparent 60%);
  animation-delay: -10s;
  animation-duration: 18s;
}

.grid-pattern {
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: 
    linear-gradient(rgba(28,25,23,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,25,23,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.08); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  background: rgba(245, 243, 239, 0.75);
  backdrop-filter: blur(20px) saturate(1.3);
  z-index: 100;
  border-bottom: 1px solid rgba(28, 25, 23, 0.03);
}

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

.logo {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--viridian), var(--viridian-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(64,130,109,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.brand-name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--viridian), var(--coral));
  border-radius: 2px;
  transition: width 0.3s;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: white;
  text-decoration: none;
  border: none;
  padding: 11px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(224,122,95,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(224,122,95,0.4);
}

.btn-large {
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(224,122,95,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(28,25,23,0.08);
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.8);
  border-color: rgba(28,25,23,0.12);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(28,25,23,0.12);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(28,25,23,0.04);
  border-color: rgba(28,25,23,0.2);
}

.play-icon {
  width: 28px; height: 28px;
  background: rgba(64,130,109,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--viridian);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 120px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(64,130,109,0.08);
  color: var(--viridian);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 28px;
  border: 1px solid rgba(64,130,109,0.12);
  backdrop-filter: blur(4px);
}

.pulse-dot {
  width: 6px; height: 6px;
  background: var(--viridian);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--viridian) 0%, var(--viridian-dark) 50%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content > p {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.social-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6D3D1, #B8B4B0);
  border: 3px solid var(--bg);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.avatar:first-child { margin-left: 0; }

.social-proof strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 2px;
}

.social-proof span {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   HERO DASHBOARD
   ============================================ */

.hero-visual {
  flex: 1;
  position: relative;
}

.dashboard-card {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 28px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(28,25,23,0.03), inset 0 1px 0 rgba(255,255,255,0.9);
  animation: float-card 5s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(64,130,109,0.4), rgba(224,122,95,0.3), transparent);
  border-radius: 2px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-dot {
  width: 8px; height: 8px;
  background: var(--viridian);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(64,130,109,0.4);
}

.live-indicator span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.roas-badge {
  background: linear-gradient(135deg, rgba(64,130,109,0.1), rgba(64,130,109,0.04));
  color: var(--viridian);
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(64,130,109,0.12);
  backdrop-filter: blur(4px);
}

.chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 160px;
  margin-bottom: 20px;
  padding: 0 8px;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, rgba(64,130,109,0.9), rgba(64,130,109,0.15));
  border-radius: 8px 8px 0 0;
  position: relative;
}

.bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  border-radius: 8px 8px 0 0;
}

.bar-highlight {
  background: linear-gradient(to top, var(--coral), rgba(224,122,95,0.2));
  box-shadow: 0 0 24px rgba(224,122,95,0.15);
}

.bar-tooltip {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(224,122,95,0.3);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  padding: 0 4px;
}

.metrics {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(28,25,23,0.05);
  display: flex;
  justify-content: space-between;
}

.metric-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.metric-green { color: var(--viridian); }
.metric-coral { color: var(--coral); }

.metric-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.metric-divider {
  width: 1px;
  background: rgba(28,25,23,0.06);
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: 60px;
  left: -30px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(28,25,23,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float-badge 7s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, rgba(64,130,109,0.15), rgba(64,130,109,0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.floating-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.floating-sub {
  font-size: 10px;
  color: var(--text-light);
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee-section {
  padding: 32px 0;
  border-top: 1px solid rgba(28,25,23,0.04);
  border-bottom: 1px solid rgba(28,25,23,0.04);
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-content {
  display: flex;
  gap: 80px;
  padding: 0 40px;
  align-items: center;
}

.marquee-content span {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: -0.5px;
  opacity: 0.35;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

section {
  position: relative;
  z-index: 2;
}

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

.section-header-left {
  text-align: left;
  margin-bottom: 48px;
}

.section-label {
  font-size: 12px;
  color: var(--viridian);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header h2,
.section-header-left h2 {
  font-size: 44px;
  font-weight: 800;
  margin: 16px 0 16px;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.section-header p,
.section-header-left p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header-left p {
  margin: 0;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.9);
}

.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.card-glow-green {
  background: radial-gradient(circle, rgba(64,130,109,0.08), transparent 70%);
}

.card-glow-coral {
  background: radial-gradient(circle, rgba(224,122,95,0.08), transparent 70%);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 2px;
  opacity: 0.6;
}

.service-card:nth-child(odd)::before {
  background: linear-gradient(90deg, transparent, rgba(64,130,109,0.5), transparent);
}

.service-card:nth-child(even)::before {
  background: linear-gradient(90deg, transparent, rgba(224,122,95,0.5), transparent);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  border: 1px solid;
  box-shadow: 0 4px 12px;
}

.icon-green {
  background: linear-gradient(135deg, rgba(64,130,109,0.12), rgba(64,130,109,0.03));
  border-color: rgba(64,130,109,0.1);
  box-shadow: 0 4px 12px rgba(64,130,109,0.08);
}

.icon-coral {
  background: linear-gradient(135deg, rgba(224,122,95,0.12), rgba(224,122,95,0.03));
  border-color: rgba(224,122,95,0.1);
  box-shadow: 0 4px 12px rgba(224,122,95,0.08);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-green { color: var(--viridian); }
.link-coral { color: var(--coral); }

/* ============================================
   PROCESS
   ============================================ */

.process {
  padding: 100px 48px;
  background: linear-gradient(180deg, rgba(64,130,109,0.03), rgba(224,122,95,0.02));
  border-top: 1px solid rgba(28,25,23,0.03);
  border-bottom: 1px solid rgba(28,25,23,0.03);
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.step {
  flex: 1;
  text-align: center;
}

.step-number {
  width: 64px; height: 64px;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  margin: 0 auto 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}

.step-green {
  background: linear-gradient(135deg, var(--viridian), var(--viridian-dark));
  box-shadow: 0 12px 32px rgba(64,130,109,0.25);
}

.step-coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  box-shadow: 0 12px 32px rgba(224,122,95,0.25);
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(224,122,95,0.4), transparent);
  opacity: 0.6;
}

.stars {
  color: var(--coral);
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  color: #44403C;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D6D3D1, #B8B4B0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.author-role {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   CTA
   ============================================ */

.cta-section {
  padding: 120px 48px;
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(64,130,109,0.06), rgba(224,122,95,0.04));
  border: 1px solid rgba(64,130,109,0.1);
  border-radius: 32px;
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.cta-glow-coral {
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(224,122,95,0.1), transparent 70%);
}

.cta-glow-green {
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(64,130,109,0.08), transparent 70%);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 30%; right: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

.cta-card h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  position: relative;
}

.cta-card p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  position: relative;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 20px;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 56px 48px;
  border-top: 1px solid rgba(28,25,23,0.04);
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-brand span {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 36px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   CASE STUDIES PAGE
   ============================================ */

.page-hero {
  padding: 100px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(28,25,23,0.08);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--viridian), var(--viridian-dark));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(64,130,109,0.25);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 120px;
}

.case-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.9);
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--viridian), var(--coral));
  opacity: 0.7;
  z-index: 2;
}

.case-image {
  height: 180px;
  background: linear-gradient(135deg, rgba(64,130,109,0.1), rgba(224,122,95,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.case-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(255,255,255,0.4));
}

.case-content {
  padding: 28px;
}

.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.tag-green {
  background: rgba(64,130,109,0.1);
  color: var(--viridian);
}

.tag-coral {
  background: rgba(224,122,95,0.1);
  color: var(--coral);
}

.case-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.case-content > p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-metrics {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(28,25,23,0.05);
}

.case-metric {
  flex: 1;
}

.case-metric-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.case-metric-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 120px;
}

.blog-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.9);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, rgba(64,130,109,0.12), rgba(224,122,95,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}

.blog-image .category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--viridian);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.blog-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-light);
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.blog-content > p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--viridian);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Featured Post */
.featured-post {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 48px;
}

.featured-card {
  display: flex;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.9);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}

.featured-card:hover {
  transform: translateY(-4px);
}

.featured-image {
  width: 45%;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(64,130,109,0.15), rgba(224,122,95,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}

.featured-content {
  padding: 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: white;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.featured-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.featured-content > p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
  padding: 80px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.contact-form-wrapper {
  flex: 1.2;
}

.contact-form {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(64,130,109,0.4), rgba(224,122,95,0.3), transparent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(28,25,23,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--viridian);
  box-shadow: 0 0 0 3px rgba(64,130,109,0.1);
  background: white;
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2357534E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-info {
  flex: 0.8;
}

.info-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(64,130,109,0.1), rgba(64,130,109,0.03));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(64,130,109,0.08);
}

.info-item div strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
}

.info-item div span {
  font-size: 13px;
  color: var(--text-muted);
}

.availability-card {
  background: linear-gradient(135deg, rgba(64,130,109,0.08), rgba(224,122,95,0.04));
  border: 1px solid rgba(64,130,109,0.1);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.availability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(64,130,109,0.3), transparent);
}

.availability-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.availability-dot {
  width: 8px;
  height: 8px;
  background: var(--viridian);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.availability-card h4 {
  font-size: 15px;
  font-weight: 700;
}

.availability-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .social-proof {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .floating-badge {
    display: none;
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 45%;
  }

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

  .featured-card {
    flex-direction: column;
  }

  .featured-image {
    width: 100%;
    min-height: 220px;
  }

  .contact-section {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .services,
  .testimonials,
  .page-hero {
    padding: 80px 24px 60px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .services-grid,
  .testimonials-grid,
  .case-studies-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 40px;
  }

  .metrics {
    flex-direction: column;
    gap: 16px;
  }

  .metric-divider {
    display: none;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .marquee-content span {
    font-size: 16px;
  }

  .case-studies-grid,
  .blog-grid,
  .featured-post {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-section {
    padding: 60px 24px 80px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .featured-content {
    padding: 32px 24px;
  }

  .featured-content h2 {
    font-size: 24px;
  }
}
