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

:root { 
  --primary: #be123c; 
  --secondary: #881337; 
  --accent: #fda4af; 
  --text-main: #111827; 
  --text-muted: #4b5563; 
  --text-light: #9ca3af;
  --bg-main: #ffffff; 
  --bg-light: #f9fafb;
  --bg-dark: #111827;
  --border: #e5e7eb;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --max: 1280px; 
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
  margin: 0; 
  font-family: 'Inter', system-ui, -apple-system, sans-serif; 
  color: var(--text-main); 
  background: var(--bg-main); 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--secondary); }

.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-gray { color: #9ca3af !important; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: #ffffff; }

/* Typography */
h1, h2, h3, h4, h5 { color: var(--text-main); line-height: 1.2; font-weight: 700; margin-top: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.03em; margin-bottom: 1.25rem; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.02em; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
p { margin-top: 0; margin-bottom: 1.25rem; }
.lead { font-size: 1.25rem; color: var(--text-muted); max-width: 65ch; margin-bottom: 2.5rem; line-height: 1.7; }

/* Navigation */
.site-header { 
  position: sticky; top: 0; z-index: 100; 
  background: rgba(255,255,255,0.95); 
  backdrop-filter: blur(12px); 
  border-bottom: 1px solid var(--border); 
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; display: flex; align-items: center; gap: 0.75rem; color: var(--text-main); }
.logo-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; display: grid; place-items: center; box-shadow: 0 4px 10px color-mix(in srgb, var(--primary) 30%, transparent); }
.logo-icon svg { width: 20px; height: 20px; }
.desktop-nav { display: flex; gap: 2rem; align-items: center; }
.nav-link { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.nav-link.active, .nav-link:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--text-main); padding: 0.5rem; }
.mobile-nav { display: none; padding: 1rem; background: #fff; border-bottom: 1px solid var(--border); flex-direction: column; gap: 1rem; }
.mobile-nav.open { display: flex; }

/* Buttons */
.btn { 
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; 
  transition: all 0.2s; cursor: pointer; border: 1px solid transparent; text-align: center;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-block { width: 100%; display: flex; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 12px color-mix(in srgb, var(--primary) 30%, transparent); }
.btn-primary:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 6px 16px color-mix(in srgb, var(--primary) 40%, transparent); color: #fff; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text-main); }
.btn-outline:hover { border-color: var(--text-muted); background: var(--bg-light); color: var(--text-main); }

/* Hero Section */
.hero { position: relative; padding: 4rem 0 6rem; overflow: hidden; background: linear-gradient(to bottom, #ffffff, var(--bg-light)); }
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 32px 32px;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; pointer-events: none; }
.hero-glow-1 { width: 500px; height: 500px; background: var(--primary); top: -150px; right: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; opacity: 0.15; }
.hero-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 10; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: #fff; border: 1px solid var(--border); border-radius: 999px; font-size: 0.875rem; font-weight: 600; color: var(--text-muted); margin-bottom: 2rem; box-shadow: var(--shadow-sm); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-marks { font-size: 0.875rem; color: var(--text-light); }

.hero-visual { position: relative; }
.image-stack { position: relative; }
.main-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); aspect-ratio: 4/3; object-fit: cover; }
.floating-card { position: absolute; background: #fff; padding: 1rem 1.25rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 1rem; border: 1px solid var(--border); }
.card-1 { top: 10%; left: -10%; animation: float 6s ease-in-out infinite; }
.card-2 { bottom: 10%; right: -5%; animation: float 8s ease-in-out infinite reverse; }
.icon-box { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--bg-light); color: var(--primary); display: grid; place-items: center; }
.floating-card strong { display: block; font-size: 1.25rem; color: var(--text-main); line-height: 1.2; }
.floating-card span { font-size: 0.875rem; color: var(--text-muted); }

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

/* Client Marquee */
.client-marquee { padding: 2rem 0 2rem; background: var(--bg-light); overflow: hidden; }
.marquee-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 2rem; }
.marquee-track { display: flex; width: max-content; animation: scroll 40s linear infinite; }
.marquee-content { display: flex; gap: 4rem; align-items: center; padding-right: 4rem; }
.client-logo { font-weight: 700; font-size: 1.25rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; opacity: 0.6; transition: opacity 0.2s; }
.client-logo:hover { opacity: 1; }
.client-logo svg { width: 24px; height: 24px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Sections & Grids */
.section { padding: 6rem 0; }
.section-header { max-width: 800px; margin-bottom: 4rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.25rem; color: var(--text-muted); margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-value { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stat-label { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

/* Features */
.feature-card { background: #fff; padding: 2.5rem; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: all 0.3s; position: relative; overflow: hidden; }
.feature-card::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-md); padding: 1px; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.feature-card:hover::after { opacity: 1; }
.feature-icon { width: 56px; height: 56px; border-radius: var(--radius-sm); display: grid; place-items: center; margin-bottom: 1.5rem; }
.feature-icon svg { width: 28px; height: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 0.25rem; font-weight: 600; font-size: 0.95rem; margin-top: 1rem; }

/* Scroll Reveal Animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* New Premium Sections */
.process-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.process-step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.process-step-card .step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.compliance-badges .badge-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.impact-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.impact-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Check List */
.check-list { list-style: none; padding: 0; margin: 2rem 0; }
.check-list li { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.check-icon { width: 24px; height: 24px; border-radius: 50%; background: #10b981; color: #fff; display: grid; place-items: center; flex-shrink: 0; margin-top: 0.1rem; }
.check-icon svg { width: 14px; height: 14px; }
.check-list strong { display: block; font-size: 1.1rem; color: #fff; margin-bottom: 0.25rem; }
.check-list span { color: #9ca3af; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius-lg); padding: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 3rem; color: #fff; box-shadow: var(--shadow-xl); position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.15) 1.5px, transparent 1.5px); background-size: 24px 24px; opacity: 0.5; pointer-events: none; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.125rem; margin: 0; max-width: 50ch; }
.cta-banner .btn-primary { background: #fff; color: var(--primary); }
.cta-banner .btn-primary:hover { background: var(--bg-light); }

/* Page Header */
.page-header { background: var(--bg-dark); color: #fff; padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.page-header .hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.15; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.4) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.page-header-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(100px); opacity: 0.12; pointer-events: none; background: var(--primary); top: -250px; right: -150px; }
.page-title { color: #fff; margin-bottom: 1rem; }
.page-subtitle { color: #9ca3af; font-size: 1.25rem; max-width: 700px; margin: 0 auto; }

/* Case Studies */
.case-studies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.case-study-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.3s; display: flex; flex-direction: column; }
.case-study-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.case-study-image { position: relative; height: 280px; }
.case-study-image img { width: 100%; height: 100%; object-fit: cover; }
.case-study-tags { position: absolute; top: 1.5rem; left: 1.5rem; display: flex; gap: 0.5rem; }
.tag { background: rgba(255,255,255,0.95); color: var(--text-main); padding: 0.35rem 0.85rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; backdrop-filter: blur(4px); }
.tag-dark { background: rgba(17,24,39,0.8); color: #fff; }
.case-study-content { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; }
.client-name { color: var(--primary); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.case-study-content h3 { font-size: 1.75rem; margin-bottom: 2rem; }
.case-study-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; flex: 1; }
.detail-row strong { display: block; font-size: 0.875rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.detail-row p { margin: 0; font-size: 1.05rem; color: var(--text-main); }
.detail-row.highlight { padding-left: 1.25rem; border-left: 3px solid var(--primary); }
.case-study-footer { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.tech-stack { font-size: 0.875rem; color: var(--text-muted); }

/* Process */
.process-list { display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: flex; gap: 1.5rem; }
.step-number { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-size: 1.25rem; font-weight: 700; flex-shrink: 0; }
.step-content h3 { margin-bottom: 0.5rem; }
.step-content p { color: var(--text-muted); margin: 0; }

/* Contact Forms */
.contact-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; }
.lead-form { background: #fff; padding: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-header { margin-bottom: 2rem; }
.form-header h3 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.form-header p { color: var(--text-muted); margin: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; font-weight: 600; font-size: 0.875rem; color: var(--text-main); margin-bottom: 0.5rem; }
.input-group input, .input-group textarea, .input-group select { width: 100%; padding: 0.875rem 1rem; border: 1px solid #d1d5db; border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem; transition: all 0.2s; background: #fff; color: var(--text-main); }
.input-group input:focus, .input-group textarea:focus, .input-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 15%, transparent); }
.form-note { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); margin-top: 1.5rem; justify-content: center; }
.form-status { min-height: 1.25rem; text-align: center; font-size: 0.925rem; margin: 0.75rem 0 0; color: var(--text-muted); }
.form-status.success { color: #047857; font-weight: 600; }
.form-status.error { color: #b91c1c; font-weight: 600; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }

.contact-info-wrapper { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card { background: #fff; padding: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.info-card h3 { margin-bottom: 1.5rem; }
.info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: center; }
.info-item svg { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; }
.info-item a, .info-item span { font-size: 1.1rem; font-weight: 500; color: var(--text-main); }

/* Footer */
.site-footer { background: var(--bg-dark); color: var(--text-light); padding: 5rem 0 2rem; border-top: 1px solid #1f2937; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-desc { margin-top: 1.5rem; max-width: 40ch; }
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links h4 { color: #fff; margin-bottom: 0.5rem; font-size: 1.1rem; }
.footer-links a { color: var(--text-light); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1f2937; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; flex-wrap: wrap; gap: 1rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.footer-contact a, .footer-contact span { color: #d1d5db; font-weight: 500; }
.footer-note { color: #6b7280; margin: 0; }
.footer-hub-note { color: #9ca3af; font-size: 0.85rem; line-height: 1.5; }
.footer-grid-3 { grid-template-columns: 2fr 1fr 1fr 1fr; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.illustrative-note { font-size: 0.925rem; color: var(--text-muted); font-style: italic; margin-top: 0.75rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-range { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.pricing-duration { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.5rem; }
.pricing-includes { list-style: none; padding: 0; margin: 0 0 1.5rem; flex: 1; }
.pricing-includes li { padding: 0.35rem 0; padding-left: 1.25rem; position: relative; color: var(--text-muted); }
.pricing-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.bofu-grid .feature-card { height: 100%; }

/* Announcement Bar */
.announce-bar { background: linear-gradient(90deg, var(--primary), var(--secondary)); color: #fff; font-size: 0.875rem; font-weight: 500; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 0.65rem 0; flex-wrap: wrap; text-align: center; }
.announce-badge { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 0.15rem 0.65rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* Sticky CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; background: rgba(17,24,39,0.96); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.08); transform: translateY(110%); transition: transform 0.3s ease; box-shadow: 0 -8px 30px rgba(0,0,0,0.25); }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; color: #fff; font-weight: 600; }
.sticky-cta .btn-primary { white-space: nowrap; }

/* Trust chips */
.trust-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.trust-chip { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.45rem 0.85rem; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-size: 0.8rem; font-weight: 600; color: var(--text-muted); box-shadow: var(--shadow-sm); }

/* Featured cases */
.featured-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.featured-case { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s; display: flex; flex-direction: column; }
.featured-case:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-case-image { height: 180px; overflow: hidden; }
.featured-case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.featured-case:hover .featured-case-image img { transform: scale(1.05); }
.featured-case-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.featured-case-body h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.featured-case-body p { color: var(--text-muted); font-size: 0.95rem; flex: 1; margin-bottom: 1rem; }

/* Why cards */
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-number { font-size: 2rem; font-weight: 800; color: var(--primary); opacity: 0.2; line-height: 1; margin-bottom: 1rem; }
.why-card p { color: var(--text-muted); margin: 0; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); }
.stars { color: #f59e0b; letter-spacing: 0.1em; margin-bottom: 1rem; font-size: 1rem; }
.testimonial-card blockquote { margin: 0 0 1.5rem; font-size: 1.05rem; line-height: 1.7; color: var(--text-main); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.875rem; }

/* Tech stack */
.tech-stack-section { background: linear-gradient(to bottom, #fff, var(--bg-light)); }
.tech-stack-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; margin-top: 2rem; }
.tech-pill { display: inline-flex; align-items: center; padding: 0.65rem 1.1rem; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-weight: 600; color: var(--text-main); box-shadow: var(--shadow-sm); font-size: 0.925rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: start; }
.faq-intro .section-subtitle { margin-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 0 1.25rem; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; font-weight: 700; padding: 1.25rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--primary); font-size: 1.25rem; font-weight: 700; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 0 1.25rem; color: var(--text-muted); line-height: 1.7; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-content, .split-section, .contact-layout, .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .floating-card { display: none; }
  .grid-4, .grid-3, .stats-grid, .case-studies-grid, .featured-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .cta-banner { flex-direction: column; text-align: center; padding: 3rem 2rem; }
  .sticky-cta-inner { flex-direction: column; text-align: center; padding: 1rem 0; }
}

@media (max-width: 768px) {
  .desktop-nav, .header-actions .btn { display: none; }
  .mobile-menu-btn { display: block; }
  .grid-4, .grid-3, .grid-2, .stats-grid, .case-studies-grid, .footer-grid, .featured-cases-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0; }
  .section { padding: 4rem 0; }
  .lead-form { padding: 2rem 1.5rem; }
  body { padding-bottom: 5.5rem; }
}