/* ==========================================================================
   ADD ON - YOUR MARKETING PARTNER
   Digital Marketing & Advertising Agency
   Design System & Style Sheet (Green & Charcoal Palette)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700;800&display=swap');

:root {
  /* Brand Color Palette matching the ADD ON Logo */
  --brand-green: #22c55e;
  --brand-green-hover: #16a34a;
  --brand-green-dark: #15803d;
  --brand-green-light: #4ade80;
  --brand-green-subtle: rgba(34, 197, 94, 0.12);
  --brand-green-glow: rgba(34, 197, 94, 0.35);

  --bg-studio: #f2f2f2;
  --bg-white: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-dark: #090b0e;
  --bg-dark-card: #12161d;
  --bg-dark-card-hover: #19202a;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-dim: #94a3b8;
  
  --primary: var(--brand-green);
  --primary-hover: var(--brand-green-hover);
  --accent: #10b981;
  --gradient-brand: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --gradient-green-glow: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
  --gradient-card: linear-gradient(180deg, rgba(34, 197, 94, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  
  --border-light: rgba(226, 232, 240, 0.85);
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-green: rgba(34, 197, 94, 0.3);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 35px var(--brand-green-glow);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

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

.site-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav-links a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover {
  color: var(--brand-green-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: var(--transition);
  border-radius: 2px;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--text-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: var(--brand-green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--brand-green-glow);
}

.btn-brand {
  background: var(--brand-green);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--brand-green-glow);
}

.btn-brand:hover {
  background: var(--brand-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: var(--brand-green);
  color: var(--brand-green-dark);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
}

.mobile-nav-drawer {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.mobile-nav-drawer.open {
  display: flex;
}

/* --------------------------------------------------------------------------
   Hero / Banner Scroll Animation Section
   -------------------------------------------------------------------------- */
.hero-scroll-container {
  position: relative;
  height: 400vh;
  background: radial-gradient(circle at 50% 30%, #ffffff 0%, #f2f2f2 70%, #eaeaea 100%);
}

.hero-sticky-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scroll-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}

.hero-ambient-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, rgba(16, 185, 129, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.frame-preloader {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.frame-preloader.loaded {
  opacity: 0;
  transform: translate(-50%, -20px);
  pointer-events: none;
}

.preloader-track {
  width: 90px;
  height: 5px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.preloader-fill {
  width: 0%;
  height: 100%;
  background: var(--brand-green);
  border-radius: 4px;
  transition: width 0.15s ease-out;
}

.hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cue {
  position: absolute;
  text-align: center;
  max-width: 880px;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-cue.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.15);
}

.hero-pill .status-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brand-green);
}

.hero-title {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.12;
  margin-bottom: 14px;
}

.hero-title .highlight {
  color: var(--brand-green-dark);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto 24px;
}

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

.hero-cue[data-stage="1"] { top: 13%; }
.hero-cue[data-stage="2"] { top: 12%; }
.hero-cue[data-stage="3"] { top: 11%; }
.hero-cue[data-stage="4"] { bottom: 8%; top: auto; }

.hero-bottom-bar {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 15;
  pointer-events: auto;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.scroll-mouse {
  width: 16px;
  height: 24px;
  border: 2px solid var(--brand-green-dark);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5px;
  background: var(--brand-green);
  border-radius: 2px;
  animation: wheelBlink 1.5s infinite;
}

@keyframes wheelBlink {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 8px); opacity: 0; }
}

.banner-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.frame-pill {
  font-size: 0.78rem;
  font-family: 'Space Grotesk', monospace;
  font-weight: 600;
  color: var(--text-muted);
}

.control-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.control-btn:hover {
  background: var(--brand-green);
  color: #ffffff;
}

.control-btn svg {
  width: 14px;
  height: 14px;
}

.scrub-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 4px;
  border-radius: 2px;
  background: #cbd5e1;
  outline: none;
  cursor: pointer;
}

.scrub-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 6px var(--brand-green);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Partner Marquee Section
   -------------------------------------------------------------------------- */
.partners-section {
  padding: 34px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 28s linear infinite;
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.marquee-item:hover {
  color: var(--brand-green-dark);
}

.marquee-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

/* --------------------------------------------------------------------------
   Performance Metrics Section
   -------------------------------------------------------------------------- */
.metrics-section {
  padding: 85px 0;
  background: #fafafa;
}

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

.metric-card {
  background: var(--bg-white);
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-green);
  opacity: 0;
  transition: var(--transition);
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-green);
}

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

.metric-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
}

.metric-number span {
  color: var(--brand-green-dark);
}

.metric-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   Section Headers & Common
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--brand-green-subtle);
  color: var(--brand-green-dark);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   PORTFOLIO SECTION (Digital Marketing & Advertising Agency)
   -------------------------------------------------------------------------- */
.portfolio-section {
  padding: 100px 0;
  background: #ffffff;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
}

.filter-btn {
  background: #f1f5f9;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: #e2e8f0;
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--brand-green-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--brand-green-glow);
}

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

.portfolio-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-green);
}

.portfolio-media {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #ffffff;
}

.portfolio-media.bg-1 { background: linear-gradient(135deg, #0f172a 0%, #15803d 100%); }
.portfolio-media.bg-2 { background: linear-gradient(135deg, #1e1b4b 0%, #047857 100%); }
.portfolio-media.bg-3 { background: linear-gradient(135deg, #090b0e 0%, #16a34a 100%); }
.portfolio-media.bg-4 { background: linear-gradient(135deg, #18181b 0%, #059669 100%); }
.portfolio-media.bg-5 { background: linear-gradient(135deg, #111827 0%, #15803d 100%); }
.portfolio-media.bg-6 { background: linear-gradient(135deg, #0f172a 0%, #22c55e 100%); }

.portfolio-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-category-tag {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-metric-badge {
  background: var(--brand-green);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.portfolio-card-title-wrap h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.portfolio-card-title-wrap p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.portfolio-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  background: #f1f5f9;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
}

.portfolio-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.p-stat-item strong {
  display: block;
  font-size: 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: var(--brand-green-dark);
}

.p-stat-item span {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Services Bento Grid
   -------------------------------------------------------------------------- */
.services-section {
  padding: 95px 0;
  background: #fafafa;
}

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

.bento-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.bento-card.large {
  grid-column: span 2;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-green);
  box-shadow: var(--shadow-lg);
}

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-green-subtle);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green-dark);
  margin-bottom: 20px;
  transition: var(--transition);
}

.bento-card:hover .bento-icon {
  background: var(--brand-green);
  color: #ffffff;
  border-color: transparent;
}

.bento-icon svg {
  width: 24px;
  height: 24px;
}

.bento-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bento-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  background: #f1f5f9;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   Process Section
   -------------------------------------------------------------------------- */
.process-section {
  padding: 95px 0;
  background: var(--bg-dark);
  color: #ffffff;
}

.process-section .section-title {
  color: #ffffff;
}

.process-section .section-subtitle {
  color: var(--text-dim);
}

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

.process-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.process-card:hover {
  background: var(--bg-dark-card-hover);
  border-color: var(--border-green);
  transform: translateY(-5px);
}

.step-num {
  font-size: 2.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: var(--brand-green);
  margin-bottom: 14px;
}

.process-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 95px 0;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--brand-green);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.pricing-card.featured .popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-green-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.tier-name {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.tier-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.tier-price {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.tier-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.tier-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.tier-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tier-features li svg {
  width: 18px;
  height: 18px;
  color: var(--brand-green);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 95px 0;
  background: var(--bg-dark);
  color: #ffffff;
}

.cta-box {
  background: radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.2) 0%, rgba(18, 22, 29, 0.95) 60%);
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  padding: 56px 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.cta-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-text p {
  font-size: 1.02rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.cta-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: #e2e8f0;
}

.cta-checklist svg {
  color: var(--brand-green);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-form {
  background: var(--bg-dark-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
}

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

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: #090c10;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand-green);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #06080b;
  color: var(--text-dim);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .site-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 18px;
}

.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-dim);
  transition: color 0.2s ease;
}

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

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 10px 14px;
  background: #111620;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Responsive Rules
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.large {
    grid-column: span 2;
  }
  .process-grid, .pricing-grid, .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-box {
    grid-template-columns: 1fr;
    padding: 38px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  
  .portfolio-grid, .services-bento, .process-grid, .pricing-grid, .metrics-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.large {
    grid-column: span 1;
  }
  .hero-bottom-bar {
    padding: 0 16px;
    flex-direction: column;
    gap: 12px;
    bottom: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
