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

/* Z-INDEX SCALE
   10000 — .skip-link (accessibility bypass)
   9999  — .cursor (custom cursor dot)
   9998  — .cursor-ring (cursor halo)
   100   — nav (fixed header)
   99    — .mobile-nav (full-screen overlay) */

:root {
  --bg: #ffffff;
  --bg2: #f3f6fa;
  --bg3: #e7ecf4;
  --accent: #00CCDD;
  --accent2: #33D9E8;
  --accent-dark: #007E8C;
  --blue: #1F35CC;
  --blue2: #2B44E0;
  --text: #111111;
  --text2: #575B66;
  --text3: #9497A1;
  --border: rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.13);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.1), 0 2px 6px rgba(0,0,0,0.05);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(0,204,221,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--accent); }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 3rem;
  display: flex; align-items: center; gap: 2.5rem;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,0.92);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex; align-items: center;
  text-decoration: none;
  cursor: none;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: none;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); font-weight: 600; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: auto;
  background: var(--blue);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(31,53,204,0.25);
}
.nav-cta:hover { background: var(--blue2); transform: scale(1.03); box-shadow: 0 4px 14px rgba(31,53,204,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* Pages */
.page { display: none; min-height: 100vh; padding-top: 74px; }
.page.active { display: block; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.7s ease both; }
.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.45s; }
.animate-delay-4 { animation-delay: 0.6s; }

/* ——— HOME PAGE ——— */
.hero {
  min-height: calc(100vh - 74px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 85% 10%, rgba(0,204,221,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(31,53,204,0.07) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-number {
  position: absolute;
  top: 50%; right: 3rem;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 800;
  color: rgba(0,204,221,0.07);
  line-height: 1;
  user-select: none;
  letter-spacing: -0.05em;
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.hero-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--text);
}
.hero h1 em { color: var(--blue); font-style: normal; }

.hero-sub {
  max-width: 480px;
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: none;
  border: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: var(--font-body);
  box-shadow: 0 4px 14px rgba(31,53,204,0.3);
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,53,204,0.38); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-ghost {
  color: var(--text2);
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  cursor: none;
  border: 1.5px solid var(--border2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
  font-family: var(--font-body);
}
.btn-ghost:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }

.hero-scroll {
  position: absolute; bottom: 2rem; right: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text3); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1.5px; height: 40px; background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Stats bar */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.8rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; }

/* Section styles */
section { padding: 6rem 3rem; }
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 1rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.section-tag::before { content: ''; display: block; width: 16px; height: 2px; background: var(--accent); border-radius: 2px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-title em { color: var(--blue); font-style: normal; }

.section-sub { color: var(--text2); max-width: 480px; line-height: 1.75; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.service-item {
  background: var(--bg);
  padding: 2.5rem;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.service-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-item:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--text3); margin-bottom: 1.5rem;
}
.service-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.service-desc { color: var(--text2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  border: 1px solid rgba(0,204,221,0.3);
  border-radius: 2rem;
  color: var(--accent-dark);
  background: rgba(0,204,221,0.06);
}

/* Process */
.process-section { background: var(--bg2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.process-step {
  background: var(--bg);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  border-radius: 10px 10px 0 0;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: rgba(0,204,221,0.2);
  line-height: 1; margin-bottom: 1rem;
}
.step-title { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.step-desc { color: var(--text2); font-size: 0.875rem; line-height: 1.7; }

/* CTA strip */
.cta-strip {
  background: var(--blue);
  padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: -80%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,204,221,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute; bottom: -60%; left: 20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
}
.cta-strip-btn {
  background: var(--accent);
  color: #111111;
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: none;
  border: none;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,204,221,0.4);
  position: relative;
}
.cta-strip-btn:hover { background: var(--accent2); transform: scale(1.04); box-shadow: 0 6px 20px rgba(0,204,221,0.5); }
.cta-strip-btn:active { transform: scale(1); }

/* ——— ABOUT PAGE ——— */
.about-hero {
  padding: 6rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  border-bottom: 1px solid var(--border);
}
.about-hero-right {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.about-hero-right p { color: var(--text2); line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.value-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.2s;
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.value-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.value-title { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.value-desc { color: var(--text2); font-size: 0.9rem; line-height: 1.7; }

.why-strip {
  background: var(--bg2);
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.why-tag {
  padding: 6px 14px;
  background: rgba(0,204,221,0.08);
  border: 1px solid rgba(0,204,221,0.25);
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 500;
}

/* ——— SERVICES PAGE ——— */
.services-hero {
  padding: 6rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
}
.services-detail {
  padding: 4rem 3rem;
}
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-left { position: sticky; top: 100px; }
.service-detail-num {
  font-family: var(--font-display);
  font-size: 0.7rem; color: var(--text3);
  letter-spacing: 0.15em; margin-bottom: 1rem;
}
.service-detail-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text);
}
.service-detail-subtitle { color: var(--accent-dark); font-size: 0.875rem; font-weight: 500; }
.service-detail-desc { color: var(--text2); line-height: 1.8; margin-bottom: 1.5rem; }
.service-detail-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-detail-list li {
  color: var(--text2); font-size: 0.9rem; padding-left: 1.25rem; position: relative;
}
.service-detail-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 0.75rem;
}

/* ——— CONTACT PAGE ——— */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 74px);
}
.contact-left {
  background: var(--bg2);
  padding: 5rem 4rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-right {
  padding: 5rem 4rem;
  background: var(--bg);
}

.contact-info { margin-top: 3rem; }
.contact-info-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { border-top: 1px solid var(--border); }
.contact-info-label { font-size: 0.7rem; color: var(--text3); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-info-value { color: var(--text); font-size: 0.95rem; }
.contact-info-value a { color: var(--blue); text-decoration: none; font-weight: 500; }
.contact-info-value a:hover { color: var(--blue2); }

.contact-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text3);
  letter-spacing: 0.05em;
  margin-top: 2rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-sub { color: var(--text2); font-size: 0.9rem; margin-bottom: 2.5rem; line-height: 1.6; }

.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border2);
  color: var(--text);
  padding: 0.875rem 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  /* cursor intentionally not set — native text cursor must remain visible */
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,204,221,0.12);
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,204,221,0.12);
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--text3); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239497A1' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
select option { background: var(--bg); }
textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  width: 100%;
  background: var(--blue);
  color: #ffffff;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(31,53,204,0.3);
}
.submit-btn:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,53,204,0.38); }
.submit-btn:active { transform: translateY(0); box-shadow: none; }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(0,204,221,0.25);
  border-radius: 10px;
  background: rgba(0,204,221,0.05);
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-bottom: 0.5rem; }
.form-success-desc { color: var(--text2); font-size: 0.9rem; }

/* Footer */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--text); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text3); text-decoration: none; font-size: 0.85rem; cursor: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-copy { color: var(--text3); font-size: 0.8rem; }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(255,255,255,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--text);
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 1.5rem; color: var(--text3);
  background: none; border: none; cursor: none;
  font-family: var(--font-body);
}

/* Responsive */
@media (max-width: 900px) {
  nav { padding: 0.75rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section, .hero { padding-left: 1.5rem; padding-right: 1.5rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .about-hero, .why-strip { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { padding: 3rem 2rem; }
  .contact-right { padding: 3rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
  .service-detail-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-detail-left { position: relative; top: auto; }
  .hero-number { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* Tablet breakpoint */
@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 0 2rem 4rem; }
  nav { padding: 0.75rem 2rem; }
  section { padding: 5rem 2rem; }
  .about-hero { padding: 5rem 2rem 3rem; }
  .services-hero { padding: 5rem 2rem 3rem; }
  .services-detail { padding: 3rem 2rem; }
}

/* Small phone breakpoint */
@media (max-width: 400px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .stat-number { font-size: 1.75rem; }
  .cta-strip { padding: 2.5rem 1.25rem; }
  .contact-left, .contact-right { padding: 2.5rem 1.25rem; }
}

/* Hide custom cursor on touch/pointer:coarse devices */
@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}

/* Focus-visible keyboard navigation styles */
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.footer-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn-primary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.cta-strip-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.submit-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.hamburger:focus-visible,
.mobile-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Utility classes for extracted inline styles */
.hero-content { position: relative; z-index: 1; }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.about-body-text { color: var(--text2); line-height: 1.8; margin-bottom: 1rem; }
.contact-intro { color: var(--text2); margin-top: 1rem; line-height: 1.75; font-size: 0.95rem; }
.form-success .btn-ghost { display: inline-flex; margin-top: 0.5rem; }

/* Skip-to-content link (accessibility) */
.skip-link {
  position: absolute;
  top: 0; left: 0;
  background: var(--blue);
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.2s;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { transform: translateY(0); }

/* Form error message */
.form-error {
  color: #cc2222;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(204,34,34,0.06);
  border: 1px solid rgba(204,34,34,0.2);
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-scroll-line { animation: none; }
  html { scroll-behavior: auto; }
}

/* Print styles */
@media print {
  .cursor, .cursor-ring, nav, .mobile-nav, .hero-scroll, .skip-link { display: none !important; }
  .page { display: block !important; padding-top: 0; }
  #page-home { break-after: page; }
  #page-about { break-after: page; }
  #page-services { break-after: page; }
  body { background: white; color: black; }
  .cta-strip { background: #eeeeee !important; }
  .cta-strip-title { color: black !important; }
  .btn-primary, .btn-ghost, .cta-strip-btn, .submit-btn { border: 1px solid #999; }
}
