/* ============================================
   YNET Consulting — Redesign 2026
   Aesthetic: Refined Industrial
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors — warm dark palette */
  --color-bg: #0c0c0e;
  --color-bg-alt: #121214;
  --color-bg-card: #17171a;
  --color-bg-card-hover: #1e1e22;
  --color-surface: #ffffff;
  --color-accent: #013A81;
  --color-accent-light: #2d72c7;
  --color-accent-glow: rgba(45, 114, 199, 0.12);
  --color-warm: #c8a46e;
  --color-warm-muted: rgba(200, 164, 110, 0.15);
  --color-text: #e8e6e3;
  --color-text-secondary: #9a9590;
  --color-text-muted: #5a5652;
  --color-border: #232326;
  --color-border-light: #2e2e32;
  --color-white: #ffffff;
  --color-success: #4ade80;

  /* Typography — serif display + geometric sans */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.75rem;
  --text-6xl: 5rem;

  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --leading-tight: 1.05;
  --leading-snug: 1.25;
  --leading-normal: 1.65;

  --tracking-tight: -0.03em;
  --tracking-normal: 0;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.12em;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 7rem;
  --space-5xl: 10rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 780px;
  --container-wide: 1400px;

  /* Effects */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(45, 114, 199, 0.15);
  --transition-fast: 150ms ease;
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: var(--weight-normal);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* Noise grain overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section--sm {
  padding: var(--space-3xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.text-accent {
  color: var(--color-accent-light);
}

.text-warm {
  color: var(--color-warm);
}

.text-muted {
  color: var(--color-text-secondary);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: var(--space-lg);
}

.label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--color-warm);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--weight-normal);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

.section__header {
  margin-bottom: var(--space-3xl);
}

.section__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-normal);
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: var(--leading-normal);
}

.body-text {
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-lg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.9rem 2.25rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
}

.btn--primary:hover {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--color-warm);
  color: var(--color-warm);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.75rem 1.75rem;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 1.1rem 2.75rem;
  font-size: var(--text-sm);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.header--scrolled {
  background-color: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header__logo img {
  height: 36px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  color: var(--color-white);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-warm);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: var(--space-lg);
}

/* CTA button in nav — override nav__link padding and remove underline */
.nav__cta.nav__link {
  padding: 0.75rem 1.75rem;
}

.nav__cta.nav__link::after {
  display: none;
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

/* Blueprint grid background */
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(45, 114, 199, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 114, 199, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 20%, transparent 70%);
}

/* Grid intersection dots */
.hero__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle 1.5px at center, rgba(45, 114, 199, 0.15) 0%, transparent 100%);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 50%, black 20%, transparent 70%);
}

/* Ambient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(45, 114, 199, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 45%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(200, 164, 110, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating geometric accents */
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero__deco--ring {
  top: 15%;
  right: 8%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(45, 114, 199, 0.12);
  border-radius: 50%;
  animation: hero-ring-pulse 6s ease-in-out infinite;
}

.hero__deco--ring::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid rgba(200, 164, 110, 0.08);
  border-radius: 50%;
}

.hero__deco--diamond {
  top: 35%;
  right: 22%;
  width: 12px;
  height: 12px;
  background: rgba(200, 164, 110, 0.2);
  transform: rotate(45deg);
  animation: hero-float 4s ease-in-out infinite;
}

.hero__deco--dot-cluster {
  bottom: 25%;
  right: 12%;
  width: 80px;
  height: 80px;
  background-image:
    radial-gradient(circle 2px, rgba(45, 114, 199, 0.25) 0%, transparent 100%),
    radial-gradient(circle 2px, rgba(45, 114, 199, 0.15) 0%, transparent 100%),
    radial-gradient(circle 2px, rgba(45, 114, 199, 0.2) 0%, transparent 100%),
    radial-gradient(circle 1.5px, rgba(200, 164, 110, 0.2) 0%, transparent 100%),
    radial-gradient(circle 2px, rgba(45, 114, 199, 0.12) 0%, transparent 100%);
  background-size: 4px 4px;
  background-position: 0 0, 20px 15px, 50px 5px, 35px 40px, 10px 60px;
  background-repeat: no-repeat;
  animation: hero-float 5s ease-in-out infinite reverse;
}

.hero__deco--line-h {
  top: 60%;
  right: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 114, 199, 0.2), transparent);
}

.hero__deco--line-v {
  top: 10%;
  right: 30%;
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(200, 164, 110, 0.1), transparent);
}

@keyframes hero-ring-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes hero-float {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(-10px); opacity: 1; }
}

/* Geometric accent line */
.hero .container {
  position: relative;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.hero__label .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-warm);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--weight-normal);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-2xl);
}

.hero__title span {
  display: block;
}

.hero__title .highlight {
  color: var(--color-warm);
  font-style: italic;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.hero__line {
  position: absolute;
  top: 50%;
  right: -60px;
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--color-border-light), transparent);
  transform: translateY(-50%);
}

/* ============================================
   LOGO STRIP
   ============================================ */
.logos {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.logos__label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.logos__item {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.4;
  transition: opacity var(--transition-base);
  white-space: nowrap;
}

.logos__item:hover {
  opacity: 0.7;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  background-color: var(--color-bg-card-hover);
  border-color: var(--color-border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: var(--color-warm-muted);
  color: var(--color-warm);
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
  margin-bottom: var(--space-md);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-warm);
  transition: gap var(--transition-base);
}

.card__link:hover {
  gap: var(--space-md);
}

/* ============================================
   STATS / NUMBERS
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 1px;
  background-color: var(--color-border);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-normal);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.stat__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-warm), transparent);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-normal);
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.cta-banner__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0 auto var(--space-2xl);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  border-left: 2px solid var(--color-warm);
  padding-left: var(--space-2xl);
  max-width: 680px;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-normal);
  font-style: italic;
  line-height: var(--leading-snug);
  color: var(--color-text);
  margin-bottom: var(--space-xl);
}

.testimonial__author {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
}

.testimonial__author strong {
  color: var(--color-text-secondary);
  font-weight: var(--weight-semibold);
}

/* ============================================
   CASE STUDIES
   ============================================ */
.case-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.case-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.case-card__image {
  width: 100%;
  height: 200px;
  background-color: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.case-card__body {
  padding: var(--space-2xl);
}

.case-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: var(--space-md);
}

.case-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
  margin-bottom: var(--space-md);
}

.case-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-lg);
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: block;
}

.blog-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: var(--color-bg-alt);
}

.blog-card__body {
  padding: var(--space-xl);
}

.blog-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-normal);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-snug);
}

.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-loading,
.blog-error {
  text-align: center;
  grid-column: 1 / -1;
  padding: var(--space-4xl);
  color: var(--color-text-muted);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.9rem var(--space-md);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-text-muted);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-accent-light);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
  background-color: var(--color-bg-card-hover);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-3xl);
}

.form__success.visible {
  display: block;
}

.form__success h3 {
  font-family: var(--font-display);
  color: var(--color-success);
  margin-bottom: var(--space-md);
}

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  align-items: flex-start;
}

.contact-info__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: var(--color-warm-muted);
  color: var(--color-warm);
  flex-shrink: 0;
  font-size: var(--text-sm);
}

.contact-info__label {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: var(--text-sm);
  color: var(--color-text);
}

.contact-info__value a:hover {
  color: var(--color-warm);
}

.contact-next {
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.contact-next h4 {
  margin-bottom: var(--space-sm);
}

.contact-next ul {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 2;
  padding-left: var(--space-lg);
  list-style: disc;
}

.contact-intro {
  margin-bottom: var(--space-3xl);
}

.contact-intro h3 {
  margin-bottom: var(--space-md);
}

.contact-intro p {
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(100px + var(--space-4xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(45, 114, 199, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background-image:
    linear-gradient(rgba(45, 114, 199, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 114, 199, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-normal);
  margin-bottom: var(--space-lg);
}

.page-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: var(--leading-normal);
}

.page-hero__subtitle a {
  color: var(--color-warm);
  border-bottom: 1px solid rgba(200, 164, 110, 0.3);
}

.page-hero__subtitle a:hover {
  border-color: var(--color-warm);
}

/* ============================================
   FEATURE SPLIT (text + visual side by side)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__content {
  max-width: 480px;
}

.split__content .section__title {
  margin-bottom: var(--space-lg);
}

.split__visual {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  position: relative;
  overflow: hidden;
}

/* ---- Generative visual panels ---- */

/* Base grid underlay for all visuals */
.split__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 114, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 114, 199, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.8;
}

/* Glow center */
.split__visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(45, 114, 199, 0.08), transparent 70%);
  pointer-events: none;
}

.split__visual .visual-icon {
  display: none;
}

/* --- Code editor visual --- */
.visual--code {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
}

.visual--code .code-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.visual--code .code-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
  opacity: 0.4;
}

.visual--code .code-chrome span:first-child { background: #ff5f57; opacity: 0.6; }
.visual--code .code-chrome span:nth-child(2) { background: #febc2e; opacity: 0.6; }
.visual--code .code-chrome span:nth-child(3) { background: #28c840; opacity: 0.6; }

.visual--code .code-chrome .code-tab {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  opacity: 1;
  margin-left: 16px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.visual--code .code-body {
  flex: 1;
  padding: 20px 20px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.visual--code .code-body .kw { color: #c792ea; }
.visual--code .code-body .fn { color: #82aaff; }
.visual--code .code-body .str { color: #c3e88d; }
.visual--code .code-body .cm { color: #546e7a; font-style: italic; }
.visual--code .code-body .num { color: #f78c6c; }
.visual--code .code-body .op { color: #89ddff; }
.visual--code .code-body .ln {
  display: inline-block;
  width: 28px;
  text-align: right;
  margin-right: 16px;
  color: var(--color-border-light);
  user-select: none;
}

/* --- Network topology visual --- */
.visual--network {
  justify-content: center;
  align-items: center;
}

.visual--network .network-nodes {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 70%;
}

.visual--network .node {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  font-size: 0.75rem;
  color: var(--color-accent-light);
  transition: all 0.4s ease;
  z-index: 2;
}

.visual--network .node--primary {
  width: 52px;
  height: 52px;
  border-color: var(--color-accent-light);
  box-shadow: 0 0 20px var(--color-accent-glow);
  font-size: 1rem;
}

.visual--network .node--warm {
  border-color: rgba(200, 164, 110, 0.3);
  color: var(--color-warm);
}

.visual--network .node:nth-child(1) { top: 10%; left: 40%; }
.visual--network .node:nth-child(2) { top: 35%; left: 10%; }
.visual--network .node:nth-child(3) { top: 35%; left: 70%; }
.visual--network .node:nth-child(4) { top: 65%; left: 25%; }
.visual--network .node:nth-child(5) { top: 65%; left: 55%; }
.visual--network .node:nth-child(6) { top: 85%; left: 42%; }

.visual--network .network-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.visual--network .network-lines line {
  stroke: var(--color-border-light);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.visual--network .network-lines line.active {
  stroke: rgba(45, 114, 199, 0.25);
  stroke-dasharray: none;
  stroke-width: 1.5;
}

/* --- Architecture layers visual --- */
.visual--arch {
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  gap: 8px;
}

.visual--arch .arch-layer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.2);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.visual--arch .arch-layer:hover {
  border-color: var(--color-border-light);
  background: rgba(0,0,0,0.35);
}

.visual--arch .arch-layer .arch-icon {
  color: var(--color-accent-light);
  font-size: 0.8rem;
  width: 20px;
  text-align: center;
}

.visual--arch .arch-layer .arch-label {
  color: var(--color-text-secondary);
  flex: 1;
}

.visual--arch .arch-layer .arch-tag {
  color: var(--color-warm);
  opacity: 0.5;
  font-size: 0.6rem;
}

.visual--arch .arch-connector {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 12px;
  background: var(--color-border);
  margin-left: 28px;
}

/* --- Dashboard visual --- */
.visual--dashboard {
  flex-direction: column;
  padding: 0;
  align-items: stretch;
}

.visual--dashboard .dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.visual--dashboard .dash-header span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.visual--dashboard .dash-header .dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-success);
}

.visual--dashboard .dash-header .dash-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  animation: dash-blink 2s ease-in-out infinite;
}

@keyframes dash-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.visual--dashboard .dash-body {
  flex: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.visual--dashboard .dash-stat {
  padding: 10px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.visual--dashboard .dash-stat .dash-stat-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
}

.visual--dashboard .dash-stat .dash-stat-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.visual--dashboard .dash-chart {
  grid-column: 1 / -1;
  background: rgba(0,0,0,0.15);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.visual--dashboard .dash-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(45, 114, 199, 0.3), rgba(45, 114, 199, 0.08));
  border-radius: 2px 2px 0 0;
  min-height: 8px;
  transition: height 0.6s ease;
}

/* --- Mobile / PWA visual --- */
.visual--mobile {
  justify-content: center;
  align-items: center;
}

.visual--mobile .phone-frame {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 260px;
  border: 2px solid var(--color-border-light);
  border-radius: 20px;
  background: var(--color-bg);
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.visual--mobile .phone-frame::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin: 4px auto 8px;
}

.visual--mobile .phone-screen {
  flex: 1;
  border-radius: 8px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.visual--mobile .phone-screen .scan-bar {
  padding: 8px 10px;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--color-accent-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.visual--mobile .phone-screen .scan-bar i {
  font-size: 0.7rem;
}

.visual--mobile .phone-screen .scan-result {
  padding: 8px 10px;
  flex: 1;
}

.visual--mobile .phone-screen .scan-result .scan-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.5rem;
  color: var(--color-text-muted);
}

.visual--mobile .phone-screen .scan-result .scan-item .check {
  color: var(--color-success);
}

/* --- API / integration visual --- */
.visual--api {
  justify-content: center;
  align-items: center;
  padding: 28px;
}

.visual--api .api-flow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 85%;
}

.visual--api .api-endpoint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.2);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.visual--api .api-method {
  font-weight: var(--weight-bold);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 0.55rem;
  letter-spacing: 0.03em;
}

.visual--api .api-method--get { color: #4ade80; background: rgba(74, 222, 128, 0.1); }
.visual--api .api-method--post { color: #60a5fa; background: rgba(96, 165, 250, 0.1); }
.visual--api .api-method--put { color: #fbbf24; background: rgba(251, 191, 36, 0.1); }

.visual--api .api-path {
  color: var(--color-text-secondary);
  flex: 1;
}

.visual--api .api-status {
  color: var(--color-text-muted);
}

.visual--api .api-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 20px;
  color: var(--color-border-light);
  font-size: 0.6rem;
}

.visual--api .api-arrow::before {
  content: '';
  width: 1px;
  height: 12px;
  background: var(--color-border);
}

/* Case study bullet lists */
.case-list {
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  list-style: disc;
}

.case-heading {
  margin-bottom: var(--space-md);
}

/* ============================================
   TECH STACK PILLS
   ============================================ */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.tech-pill {
  font-size: 0.7rem;
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  padding: 0.3rem 0.75rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.tech-pill:hover {
  border-color: var(--color-border-light);
  color: var(--color-text);
}

/* ============================================
   VALUES / PROCESS
   ============================================ */
.process-step {
  display: flex;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--color-warm);
  opacity: 0.25;
  flex-shrink: 0;
  width: 72px;
  line-height: 1;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
  margin-bottom: var(--space-sm);
}

.process-step__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise-col h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  color: var(--color-warm);
}

.expertise-col .tech-stack {
  margin-top: 0;
}

/* ============================================
   TEAM
   ============================================ */
.team-card {
  text-align: center;
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-3xl);
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-normal);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-top: var(--space-md);
  max-width: 280px;
}

.footer__heading {
  font-size: 0.65rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-warm);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
}

.footer__socials {
  display: flex;
  gap: var(--space-lg);
}

.footer__socials a {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.footer__socials a:hover {
  color: var(--color-warm);
  transform: translateY(-2px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 120ms; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 360ms; }

/* Hero-specific entrance */
.hero__content .reveal {
  transform: translateY(40px);
  transition-duration: 1s;
}

.hero__content .reveal:nth-child(1) { transition-delay: 200ms; }
.hero__content .reveal:nth-child(2) { transition-delay: 400ms; }
.hero__content .reveal:nth-child(3) { transition-delay: 600ms; }
.hero__content .reveal:nth-child(4) { transition-delay: 800ms; }

/* Slide-in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Legacy class support */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --text-6xl: 3.5rem;
    --text-5xl: 3rem;
    --text-4xl: 2.25rem;
  }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .split--reverse { direction: ltr; }
  .split__content { max-width: 100%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__line { display: none; }
}

@media (max-width: 768px) {
  :root {
    --text-6xl: 2.75rem;
    --text-5xl: 2.25rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
  }

  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-3xl) 0; }

  /* Mobile Nav */
  .nav__toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(12, 12, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right var(--transition-slow);
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
  }

  .nav__link {
    font-size: var(--text-base);
    letter-spacing: var(--tracking-wider);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-md);
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat::after { display: none; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__title { font-size: var(--text-5xl); }

  .footer__grid { grid-template-columns: 1fr; }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .cta-banner { padding: var(--space-2xl) var(--space-lg); }

  .process-step { gap: var(--space-lg); }
  .process-step__number { width: 48px; font-size: var(--text-2xl); }
}
