/* Brec Invest - Design Systems & IT Services */
/* All colors are solid hex only - no rgba/translucent */

:root {
  --deep-navy: #0B1623;
  --midnight: #172433;
  --steel-blue: #233649;
  --cyan-accent: #00B8D9;
  --cyan-glow: #00D4F5;
  --warm-orange: #F0652F;
  --warm-orange-light: #FF7F50;
  --soft-green: #26A69A;
  --soft-purple: #5C6BC0;
  --text-primary: #111827;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --bg-white: #FFFFFF;
  --bg-light: #F4F6FA;
  --bg-lighter: #FAFBFC;
  --bg-light-alt: #EEF1F6;
  --border-color: #DDE2EB;
  --border-light: #E6EAF0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--deep-navy);
}

h1 { font-size: 3.2rem; letter-spacing: -0.02em; }
h2 { font-size: 2.4rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--cyan-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--cyan-glow); }

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

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

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav-header.scrolled {
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--deep-navy);
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--cyan-accent) 0%, var(--soft-green) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.2rem;
  font-weight: 900;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--deep-navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--cyan-accent);
  color: var(--bg-white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--cyan-glow);
  color: var(--bg-white);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--deep-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =============================================
   HERO - Homepage
   ============================================= */
.hero-section {
  padding: 160px 0 100px;
  background: var(--bg-lighter);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: var(--cyan-accent);
  border-radius: 50%;
  opacity: 0.04;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--warm-orange);
  border-radius: 50%;
  opacity: 0.04;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan-accent);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-accent);
  border-radius: 50%;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--deep-navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--cyan-accent);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-accent);
  color: var(--bg-white);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--cyan-glow);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,184,217,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--deep-navy);
  border: 2px solid var(--border-color);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--cyan-accent);
  color: var(--cyan-accent);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-stat-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan-accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

.hero-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 0 4px;
}

.hero-chart-bar {
  flex: 1;
  background: var(--cyan-accent);
  border-radius: 4px 4px 0 0;
  transition: height 1s ease;
}

.hero-chart-bar:nth-child(1) { height: 60%; opacity: 0.3; }
.hero-chart-bar:nth-child(2) { height: 75%; opacity: 0.4; }
.hero-chart-bar:nth-child(3) { height: 50%; opacity: 0.25; }
.hero-chart-bar:nth-child(4) { height: 85%; opacity: 0.45; }
.hero-chart-bar:nth-child(5) { height: 70%; opacity: 0.35; }
.hero-chart-bar:nth-child(6) { height: 90%; opacity: 0.5; }
.hero-chart-bar:nth-child(7) { height: 65%; opacity: 0.3; }

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--deep-navy);
  padding: 42px 0;
  overflow: hidden;
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  color: #8899AA;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-item::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--cyan-accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* =============================================
   SERVICES GRID - Homepage
   ============================================= */
.services-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.section-label {
  display: inline-block;
  color: var(--cyan-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 48px;
}

.services-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 48px;
}

.service-tab {
  padding: 14px 28px;
  border: none;
  background: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
}

.service-tab:hover { color: var(--text-primary); }
.service-tab.active {
  color: var(--cyan-accent);
  border-bottom-color: var(--cyan-accent);
}

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

.service-card {
  background: var(--bg-lighter);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-accent);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
}

.service-card-icon.systems { background: #E0F7FA; color: #00838F; }
.service-card-icon.network { background: #E8F5E9; color: #2E7D32; }
.service-card-icon.cloud   { background: #E3F2FD; color: #1565C0; }
.service-card-icon.security { background: #FFF3E0; color: #E65100; }
.service-card-icon.software { background: #F3E5F5; color: #6A1B9A; }
.service-card-icon.data     { background: #FCE4EC; color: #C62828; }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* =============================================
   PROCESS TIMELINE
   ============================================= */
.process-section {
  padding: 100px 0;
  background: var(--bg-lighter);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--border-color);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--deep-navy);
  transition: all 0.3s ease;
}

.process-step:hover .process-step-num {
  border-color: var(--cyan-accent);
  color: var(--cyan-accent);
  box-shadow: 0 0 0 12px rgba(0,184,217,0.08);
}

.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* =============================================
   TECHNOLOGY SHOWCASE
   ============================================= */
.tech-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.tech-item {
  background: var(--bg-lighter);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: var(--cyan-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tech-item-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.tech-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-navy);
}

/* =============================================
   CASE STUDIES / FEATURED
   ============================================= */
.featured-section {
  padding: 100px 0;
  background: var(--deep-navy);
}

.featured-section .section-label { color: var(--warm-orange-light); }
.featured-section .section-title { color: var(--bg-white); }
.featured-section .section-desc { color: #8899AA; }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.featured-card {
  background: var(--midnight);
  border: 1px solid var(--steel-blue);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
}

.featured-card:hover {
  border-color: var(--cyan-accent);
  transform: translateY(-3px);
}

.featured-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.featured-card-tag {
  background: var(--cyan-accent);
  color: var(--bg-white);
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}

.featured-card h3 {
  color: var(--bg-white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.featured-card p {
  color: #8899AA;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.featured-card-metrics {
  display: flex;
  gap: 32px;
}

.featured-metric-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan-accent);
  line-height: 1;
}

.featured-metric-label {
  font-size: 0.78rem;
  color: #6B7F90;
  margin-top: 4px;
}

/* =============================================
   APPROACH / VALUES
   ============================================= */
.values-section {
  padding: 100px 0;
  background: var(--bg-lighter);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}

.values-grid > * {
  padding: 40px 36px;
  transition: all 0.3s ease;
}

.values-grid > *:nth-child(odd) {
  background: var(--bg-white);
}

.values-grid > *:nth-child(even) {
  background: var(--bg-lighter);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.value-card-icon.cyan  { background: #E0F7FA; color: #00838F; }
.value-card-icon.green { background: #E8F5E9; color: #2E7D32; }
.value-card-icon.blue  { background: #E3F2FD; color: #1565C0; }
.value-card-icon.orange{ background: #FFF3E0; color: #E65100; }
.value-card-icon.purple{ background: #F3E5F5; color: #6A1B9A; }
.value-card-icon.red   { background: #FFEBEE; color: #C62828; }

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--midnight) 100%);
  border-radius: 24px;
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cta-card h2 {
  color: var(--bg-white);
  margin-bottom: 12px;
}

.cta-card p {
  color: #8899AA;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.cta-card .btn-primary {
  background: var(--warm-orange);
  font-size: 1.05rem;
  padding: 16px 36px;
}

.cta-card .btn-primary:hover {
  background: var(--warm-orange-light);
  box-shadow: 0 8px 25px rgba(240,101,47,0.3);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--deep-navy);
  padding: 64px 0 32px;
}

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

.footer-brand-desc {
  color: #8899AA;
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.footer-col ul li a {
  color: #8899AA;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--steel-blue);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #6B7F90;
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

.footer-legal-links a {
  color: #6B7F90;
  font-size: 0.85rem;
}

.footer-legal-links a:hover {
  color: var(--cyan-accent);
}

/* =============================================
   PAGE HERO - Subpages
   ============================================= */
.page-hero {
  padding: 140px 0 80px;
  background: var(--deep-navy);
  text-align: center;
}

.page-hero h1 {
  color: var(--bg-white);
  margin-bottom: 12px;
}

.page-hero p {
  color: #8899AA;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   LEGAL CONTENT - Privacy & Terms
   ============================================= */
.legal-content {
  padding: 80px 0;
  background: var(--bg-lighter);
}

.legal-block {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 48px 52px;
  margin-bottom: 28px;
  transition: all 0.2s ease;
}

.legal-block:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-color);
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
}

.legal-sidebar h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-sidebar ul {
  list-style: none;
}

.legal-sidebar ul li {
  margin-bottom: 8px;
}

.legal-sidebar ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 6px 0;
  display: block;
  border-bottom: 1px solid var(--border-light);
}

.legal-sidebar ul li a:hover {
  color: var(--cyan-accent);
}

.legal-content-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.legal-block h3 {
  color: var(--deep-navy);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--bg-light-alt);
  font-size: 1.3rem;
}

.legal-block p,
.legal-block li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-block ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-block ul li {
  margin-bottom: 8px;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
  padding: 14px 20px;
  background: var(--bg-light-alt);
  border-radius: 8px;
  font-weight: 500;
}

/* =============================================
   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);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 16px 0;
  color: var(--deep-navy);
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-flow::before { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

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

  .cta-card { grid-template-columns: 1fr; text-align: center; padding: 48px 36px; }

  .legal-content-layout { grid-template-columns: 1fr; }
  .legal-block { padding: 36px 32px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.3rem; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero-section { padding: 120px 0 60px; }
  .hero-title { font-size: 2.2rem; }
  .hero-visual-card { padding: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .services-tabs { overflow-x: auto; }

  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .legal-block { padding: 28px 20px; }
}
