@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --scope-blue: #1E40AF;
  --scope-blue-light: #3B82F6;
  --lens-emerald: #059669;
  --lens-emerald-light: #10B981;
  --bg-slate: #F1F5F9;
  --surface-dark: #0F172A;
  --surface-mid: #1E293B;
  --accent-yellow: #FACC15;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --border: #CBD5E1;
  --border-light: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --focus-ring: 0 0 0 3px rgba(30, 64, 175, 0.45);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-slate);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--scope-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--lens-emerald);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--scope-blue);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background: var(--surface-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--scope-blue);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent-yellow);
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  color: #CBD5E1;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(30, 64, 175, 0.35);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid #475569;
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--surface-dark) 0%, #1E3A5F 50%, var(--scope-blue) 100%);
  color: var(--white);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(5, 150, 105, 0.2);
  border: 1px solid var(--lens-emerald);
  color: #6EE7B7;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-tagline {
  font-size: 1.125rem;
  color: #94A3B8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lens-emerald);
  color: var(--white);
  border-color: var(--lens-emerald);
}

.btn-primary:hover {
  background: var(--lens-emerald-light);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn-accent {
  background: var(--accent-yellow);
  color: var(--surface-dark);
  border-color: var(--accent-yellow);
}

.btn-accent:hover {
  background: #FDE047;
  color: var(--surface-dark);
}

.hero-panel {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.panel-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--lens-emerald-light);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--lens-emerald-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Dashboard grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.metric-card.dark {
  background: var(--surface-mid);
  border-color: #334155;
  color: var(--white);
}

.metric-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.metric-card.dark .metric-label {
  color: #94A3B8;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--scope-blue);
  line-height: 1.2;
}

.metric-card.dark .metric-value {
  color: var(--accent-yellow);
}

.metric-change {
  font-size: 0.8125rem;
  margin-top: 0.375rem;
  color: var(--lens-emerald);
  font-weight: 500;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lens-emerald);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.bg-white {
  background: var(--white);
}

.bg-dark {
  background: var(--surface-dark);
  color: var(--white);
}

.bg-dark .section-header h2 {
  color: var(--white);
}

.bg-dark .section-header p {
  color: #94A3B8;
}

/* Feature cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--scope-blue), var(--lens-emerald));
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--scope-blue);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Pipeline strip */
.pipeline-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  background: var(--surface-dark);
  border-radius: var(--radius-lg);
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-mid);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  color: #CBD5E1;
  font-size: 0.875rem;
  font-weight: 500;
}

.pipeline-step.active {
  background: var(--scope-blue);
  color: var(--white);
}

.pipeline-arrow {
  color: var(--accent-yellow);
  font-weight: 700;
}

/* Why reasons */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.reason-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-slate);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--scope-blue);
}

.reason-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--scope-blue);
  line-height: 1;
  flex-shrink: 0;
}

.reason-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.reason-item p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--scope-blue);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Services list */
.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  transition: box-shadow var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}

.service-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--scope-blue);
}

.service-card p {
  color: var(--text-secondary);
}

/* Case study */
.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.case-metric {
  background: var(--surface-mid);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.case-metric .value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-yellow);
}

.case-metric .label {
  font-size: 0.8125rem;
  color: #94A3B8;
  margin-top: 0.25rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover {
  background: var(--bg-slate);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform var(--transition);
  color: var(--scope-blue);
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--scope-blue);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--scope-blue) 0%, #1E3A8A 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: #BFDBFE;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* Solutions grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.solution-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -1.5rem -1.5rem 1rem;
  width: calc(100% + 3rem);
}

.solution-id {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lens-emerald);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.solution-category {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(30, 64, 175, 0.1);
  color: var(--scope-blue);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.solution-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.solution-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.solution-price {
  font-weight: 700;
  color: var(--scope-blue);
  font-size: 1.0625rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--scope-blue);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #DC2626;
}

.form-error {
  color: #DC2626;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--surface-dark);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--accent-yellow);
}

.info-card p, .info-card a {
  color: #CBD5E1;
  font-size: 0.9375rem;
}

.info-card a:hover {
  color: var(--white);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--scope-blue);
}

.legal-content .updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin: 2rem 0 1rem;
  color: var(--text-primary);
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-hero {
  background: var(--surface-dark);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 6rem 0;
}

.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--scope-blue);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.error-page p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: var(--surface-dark);
  color: #94A3B8;
  margin-top: auto;
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--scope-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #94A3B8;
  font-size: 0.9375rem;
}

.footer-col a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-disclaimer {
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  color: #CBD5E1;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-dark);
  color: var(--white);
  padding: 1.25rem;
  z-index: 9998;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.875rem;
  color: #CBD5E1;
}

.cookie-text a {
  color: var(--accent-yellow);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.cookie-actions .btn {
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
}

.btn-cookie-accept {
  background: var(--lens-emerald);
  color: var(--white);
  border: none;
}

.btn-cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid #475569;
}

.btn-cookie-settings {
  background: transparent;
  color: var(--accent-yellow);
  border: 2px solid var(--accent-yellow);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Chart SVG */
.chart-svg {
  width: 100%;
  height: 120px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .case-study,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-dark);
    border-top: 1px solid #334155;
    display: none;
    padding: 1rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .header-inner {
    position: relative;
  }

  .legal-content {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3rem 0;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
