﻿/* =====================================================
   aldven
   ===================================================== */

@import url('css2');

:root {
  --black:   #080A0E;
  --deep:    #0C0F16;
  --panel:   #111520;
  --border:  rgba(255,255,255,0.06);
  --accent:  #00E5C8;
  --accent2: #0066FF;
  --warn:    #FF4D1C;
  --white:   #F0F2F8;
  --muted:   rgba(240,242,248,0.45);
  --mono:    'DM Mono', monospace;
  --head:    'Syne', sans-serif;
  --serif:   'Fraunces', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--head);
  overflow-x: hidden;
  cursor: none;
}

/* ---- NOISE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform 0.15s ease;
  top: 0; left: 0;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(0,229,200,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.25s ease, border-color 0.25s ease;
  top: 0; left: 0;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8,10,14,0.75);
  gap: 2rem;
}

.logo {
  font-family: var(--head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--accent); }

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: none;
  font-weight: 500;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 16px 32px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: none;
  border-radius: 3px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.3s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,229,200,0.25); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 16px 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  border-radius: 3px;
  transition: border-color 0.25s, color 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }

/* ---- SECTION LABELS ---- */
.section-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
}

.section-head {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
  max-width: 640px;
}
.section-head em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
.section-head em.accent { color: var(--accent); }

/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  padding: 140px clamp(24px, 6vw, 80px) 80px;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,200,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.page-header .section-tag { margin-bottom: 24px; }
.page-header h1 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.page-header h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.page-header p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.9;
}

/* ---- CONTENT SECTIONS ---- */
.section {
  padding: 120px clamp(24px, 6vw, 80px);
  position: relative;
}

/* ---- SERVICE CARDS GRID (2fr 1fr 1fr bento) ---- */
.services-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.service-card {
  background: var(--deep);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: var(--panel); }
.service-card.featured {
  grid-row: span 2;
  background: var(--panel);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  font-size: 18px;
}
.service-title {
  font-family: var(--head);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.featured .service-title { font-size: 28px; }
.service-desc {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.service-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 2px;
  color: var(--muted);
}
.big-number {
  font-family: var(--head);
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  color: rgba(0,229,200,0.07);
  position: absolute;
  bottom: 20px; right: 20px;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* ---- PROCESS STEPS ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
  opacity: 0.3;
  z-index: 0;
}
.process-step {
  padding: 0 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.step-num {
  width: 64px; height: 64px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 28px;
  background: var(--black);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--head);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.9;
  color: var(--muted);
}

/* ---- DETAIL LIST (for subpages) ---- */
.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.detail-list li::before {
  content: '↳';
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- TWO-COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col.align-center { align-items: center; }

/* ---- CARD GRID (3-up) ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 64px;
}
.card {
  background: var(--deep);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.card:hover { background: var(--panel); }
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover::after { transform: scaleX(1); }
.card-badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,229,200,0.25);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.card-title {
  font-family: var(--head);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.card-desc {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}

/* ---- CARD GRID 2-up ---- */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 64px;
}

/* ---- STATS BAR ---- */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(24px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--deep);
}
.stat-item {
  padding: 32px 0 32px 40px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--head);
  font-weight: 800;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--accent); }
.stat-desc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- TERMINAL ---- */
.terminal {
  background: #0A0C12;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.terminal-bar {
  background: var(--panel);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-red    { background: #FF5F57; }
.t-yellow { background: #FFBD2E; }
.t-green  { background: #27C840; }
.terminal-title {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
  flex: 1; text-align: center;
}
.terminal-body {
  padding: 24px 20px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 2;
}
.t-line { display: flex; gap: 12px; align-items: flex-start; }
.t-prompt { color: var(--accent); flex-shrink: 0; }
.t-cmd    { color: var(--white); }
.t-output { color: var(--muted); }
.t-success{ color: #27C840; }
.t-warn   { color: var(--warn); }
.t-cursor {
  display: inline-block;
  width: 7px; height: 12px;
  background: var(--accent);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

/* ---- SCORE CARD ---- */
.score-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  min-width: 180px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
  margin-top: 16px;
  display: inline-block;
}
.score-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.score-num {
  font-family: var(--head);
  font-weight: 800;
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
}
.score-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  width: 92%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 2px;
  animation: expand 2s ease-out;
}

/* ---- CTA BAND ---- */
.cta-band {
  padding: 100px clamp(24px, 6vw, 80px);
  background: var(--deep);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,229,200,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 20px;
}
.cta-band p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.8;
}
.cta-actions {
  display: flex; gap: 16px;
  align-items: center; justify-content: center;
  flex-wrap: wrap;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.testimonial-card {
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(0,229,200,0.15);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240,242,248,0.75);
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.author-name { font-family: var(--head); font-weight: 600; font-size: 13px; }
.author-role { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.05em; }

/* ---- FEATURE ROW (icon + text) ---- */
.feature-rows { display: flex; flex-direction: column; gap: 0; }
.feature-row {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
  background: var(--deep);
  transition: background 0.25s, border-color 0.25s;
}
.feature-row:hover { background: var(--panel); border-color: rgba(0,229,200,0.15); }
.feature-row-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.feature-row h4 {
  font-family: var(--head);
  font-size: 14px; font-weight: 600;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.feature-row p {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 40px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--deep);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  padding: 14px 16px;
  outline: none;
  border-radius: 4px;
  transition: border-color 0.25s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(0,229,200,0.4); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(240,242,248,0.45)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: none;
}
.form-group select option { background: var(--deep); }
.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; text-align: center; }
.form-note {
  font-family: var(--mono);
  font-size: 10px; color: var(--muted);
  margin-top: 14px; line-height: 1.6;
  text-align: center;
}
.form-success { display: none; text-align: center; padding: 48px 0; }
.form-success.show { display: block; }
.form-success .s-icon { font-size: 40px; margin-bottom: 20px; color: var(--accent); }
.form-success h4 {
  font-family: var(--head); font-weight: 700; font-size: 24px;
  margin-bottom: 12px; letter-spacing: -0.02em; color: var(--accent);
}
.form-success p { font-family: var(--mono); font-size: 12px; color: var(--muted); line-height: 1.8; }

/* ---- FOOTER ---- */
footer {
  padding: 48px clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 10px; color: var(--muted); letter-spacing: 0.08em;
}
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--mono);
  font-size: 10px; color: var(--muted);
  text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s; cursor: none;
}
.footer-links a:hover { color: var(--white); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes expand { from { width: 0; } }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,10,14,0.98);
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    z-index: 499;
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open a { display: block; padding: 14px 0; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-row: auto; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 32px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding-left: 0; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 20px; }
  .stat-item:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .section { padding: 80px 24px; }
  .page-header { padding: 120px 24px 60px; }
  .section-head { font-size: 28px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item:nth-child(odd) { border-right: none; }
  .process-grid { grid-template-columns: 1fr; }
}
