/* ===========================
   CULTUREMETER — GLOBAL STYLES
   =========================== */

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

:root {
  --bg: #0a0f1e;
  --bg2: #0f1628;
  --surface: #141c30;
  --surface2: #1a2340;
  --accent: #00d4aa;
  --accent2: #0099ff;
  --text: #e8edf5;
  --text-muted: #7a8aad;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0 2rem;
}

.nav.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--surface);
}

.btn-cta {
  background: var(--accent);
  color: #000;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.35);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 2rem 80px;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(0, 212, 170, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(0, 153, 255, 0.06) 0%, transparent 60%),
    var(--bg);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  display: block;
  width: fit-content;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #00b894);
  color: #000;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 212, 170, 0.4);
}

.btn-ghost {
  color: var(--text-muted);
  padding: 0.85rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Dashboard Mock */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: floatUp 0.8s ease both;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dash-header {
  background: var(--surface2);
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot.r {
  background: #ff5f57;
}

.dot.y {
  background: #febc2e;
}

.dot.g {
  background: #28c840;
}

.dash-score {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.score-circle {
  position: relative;
  width: 120px;
  height: 120px;
}

.score-circle svg {
  width: 100%;
  height: 100%;
}

.score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--font-head);
}

.score-text span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.score-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.metric {
  margin-bottom: 0.75rem;
}

.metric span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.bar {
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  animation: fillBar 1.5s ease both;
}

@keyframes fillBar {
  from {
    width: 0 !important;
  }
}

.dash-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- LOGOS ---- */
.logos-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.logos-section p {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.logo-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-head);
}

/* ---- SECTION COMMONS ---- */
.why-section,
.services-preview,
.process-section,
.testimonials {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.why-section h2,
.services-preview h2,
.process-section h2,
.testimonials h2 {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

em {
  font-style: italic;
  color: var(--accent);
}

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: rgba(0, 212, 170, 0.4);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Services Preview */
.services-preview {
  background: var(--bg2);
  max-width: 100%;
  padding: 6rem 0;
}

.services-preview>* {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s;
}

.service-card.featured {
  border-color: rgba(0, 212, 170, 0.5);
  background: linear-gradient(135deg, var(--surface), rgba(0, 212, 170, 0.05));
}

.sc-tag {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.sc-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Process */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 212, 170, 0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  padding-top: 0.5rem;
  flex-shrink: 0;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.testi-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testi-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testi-author strong {
  color: var(--white);
  font-size: 0.95rem;
}

.testi-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* CTA */
.cta-section {
  padding: 4rem 2rem;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(0, 153, 255, 0.08));
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
}

.cta-box h2 {
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 250px;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--accent);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 140px 2rem 6rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .section-label {
  margin-bottom: 1rem;
}

.page-hero h1 {
  margin-bottom: 1.25rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ---- ABOUT PAGE ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-text .section-label {
  margin-bottom: 1rem;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.about-stat-card .big-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.about-stat-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.team-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ---- SERVICES PAGE ---- */
.services-full {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-block:nth-child(even) .svc-visual {
  order: -1;
}

.svc-label {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.svc-features {
  list-style: none;
  margin-top: 1.25rem;
}

.svc-features li {
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.svc-features li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.svc-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.svc-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.svc-visual h4 {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ---- HOW IT WORKS PAGE ---- */
.hiw-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.hiw-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 212, 170, 0.2);
  line-height: 1;
}

.hiw-step h3 {
  margin-bottom: 0.75rem;
}

.hiw-step p {
  color: var(--text-muted);
}

/* ---- CASE STUDIES ---- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 170, 0.4);
}

.case-tag {
  display: inline-block;
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.case-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.case-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.case-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.result-box {
  background: var(--surface2);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
}

.result-box .r-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.result-box .r-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ---- CONTACT ---- */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cd-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cd-icon {
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.cd-text strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.cd-text span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), #00b894);
  color: #000;
  border: none;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
}

/* ---- PRIVACY / TERMS ---- */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 2rem 6rem;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--accent);
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.legal-page ul li {
  margin-bottom: 0.5rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .hero-visual {
    display: none;
  }

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

  .service-block,
  .about-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-block:nth-child(even) .svc-visual {
    order: 0;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}