/* ============================================================
   SolarFlare Oy — Kiinteistöhuolto Helsinki
   Design: Split-screen hero, forest green + amber, Fraunces + Outfit
   ============================================================ */

/* === RESET & CUSTOM PROPERTIES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors in OKLCH */
  --brand: oklch(0.45 0.14 160);
  --brand-light: color-mix(in oklab, var(--brand) 35%, white);
  --brand-dark: color-mix(in oklab, var(--brand) 80%, black);
  --accent: oklch(0.72 0.18 80);
  --accent-dark: color-mix(in oklab, var(--accent) 70%, black);

  /* Tinted neutrals */
  --surface-1: oklch(0.99 0.004 160);
  --surface-2: oklch(0.95 0.008 160);
  --surface-3: oklch(0.18 0.02 160);
  --text-primary: oklch(0.16 0.015 160);
  --text-secondary: oklch(0.45 0.025 160);
  --text-on-dark: oklch(0.97 0.005 160);

  /* Spatial rhythm (4-point) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Typography */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom selection */
::selection { background: color-mix(in oklab, var(--brand) 25%, white); }

/* === BASE === */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--surface-1);
  -webkit-font-smoothing: antialiased;
}

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

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

ul[role="list"] { list-style: none; }

address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* === SECTION LABELS === */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-md);
}
.section-eyebrow.light { color: var(--accent); }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}
.section-heading.light { color: var(--text-on-dark); }

.section-intro {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-3xl);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease-out, box-shadow 200ms ease-out, background-color 200ms ease-out;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background-color: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn-primary:hover {
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: scale(1.03);
  box-shadow: 0 6px 24px color-mix(in oklab, var(--brand) 40%, transparent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-large { padding: 18px 36px; font-size: 1.05rem; }

/* === NAVIGATION === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 300ms ease-out, backdrop-filter 300ms ease-out;
}
.site-header.scrolled {
  background: var(--surface-3);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 150ms ease-out;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 200ms ease-out;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { clip-path: inset(0 0 0 0); }

.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background-color 200ms ease-out, transform 120ms ease-out !important;
}
.nav-cta:hover {
  background: var(--brand-dark) !important;
  transform: scale(1.03);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 250ms ease-in-out, opacity 200ms ease-out;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO — Split screen === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  padding-top: 0;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, color-mix(in oklab, var(--surface-3) 80%, transparent));
}
.hero-badge {
  position: absolute;
  bottom: var(--space-3xl);
  left: var(--space-xl);
  background: var(--accent);
  color: var(--text-primary);
  padding: var(--space-md) var(--space-xl);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero-badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.hero-text-side {
  background: var(--surface-3);
  display: flex;
  align-items: center;
  padding: var(--space-4xl) var(--space-3xl);
}

.hero-content { max-width: 500px; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  clip-path: inset(0 100% 0 0);
  animation: wipe-in 0.8s var(--ease-out) 0.2s forwards;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-on-dark);
  margin-bottom: var(--space-lg);
  clip-path: inset(0 0 100% 0);
  animation: slide-up 0.9s var(--ease-out) 0.4s forwards;
}
.hero-heading em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out) 0.9s forwards;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  opacity: 0;
  animation: fade-up 0.7s var(--ease-out) 1.1s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.trust-icon {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Hero keyframes */
@keyframes wipe-in {
  to { clip-path: inset(0 0 0 0); }
}
@keyframes slide-up {
  to { clip-path: inset(0 0 0% 0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === PAIN POINTS — dark strip === */
.pain-points {
  background: var(--surface-3);
  padding: var(--space-4xl) 0;
}
.pain-points .section-heading {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.pain-points .section-eyebrow { text-align: center; display: block; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: var(--space-2xl);
  animation: reveal-card linear forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 80%;
}
.pain-card:nth-child(1) { animation-delay: 0ms; }
.pain-card:nth-child(2) { animation-delay: 100ms; }
.pain-card:nth-child(3) { animation-delay: 200ms; }

@keyframes reveal-card {
  from { opacity: 0.3; translate: 0 30px; }
  to { opacity: 1; translate: 0 0; }
}

.pain-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: var(--space-md);
}

.pain-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
}
.pain-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* === SERVICES === */
.services {
  padding: var(--space-4xl) 0;
  background: var(--surface-1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid color-mix(in oklab, var(--brand) 12%, transparent);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  animation: reveal-card linear forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 75%;
}
.service-card:nth-child(2) { animation-delay: 100ms; }
.service-card:nth-child(3) { animation-delay: 200ms; }
.service-card:nth-child(4) { animation-delay: 300ms; }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px color-mix(in oklab, var(--brand) 15%, transparent);
}

.service-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}
.service-card:hover .service-img { transform: scale(1.04); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in oklab, var(--surface-3) 60%, transparent) 0%, transparent 60%);
}

.service-body {
  padding: var(--space-xl);
}
.service-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}
.service-price {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-light);
  padding: 4px 12px;
  border-radius: 100px;
}

/* === STATS === */
.stats-section {
  background: var(--brand-dark);
  padding: var(--space-4xl) 0;
}

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

.stat-item {
  text-align: center;
  animation: reveal-card linear forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 80%;
}
.stat-item:nth-child(1) { animation-delay: 0ms; }
.stat-item:nth-child(3) { animation-delay: 100ms; }
.stat-item:nth-child(5) { animation-delay: 200ms; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-sm);
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
}

/* === ABOUT === */
.about-section {
  padding: var(--space-4xl) 0;
  background: var(--surface-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.about-text-col {
  animation: reveal-card linear forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 80%;
}
.about-text-col p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.about-text-col .section-heading {
  margin-bottom: var(--space-lg);
}
.about-text-col .btn { margin-top: var(--space-lg); }

.about-image-col {
  position: relative;
  animation: reveal-card linear forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 80%;
  animation-delay: 150ms;
}
.about-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px color-mix(in oklab, var(--surface-3) 30%, transparent);
}
.about-img-tag {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--accent);
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--surface-2);
  padding: var(--space-4xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.testimonial-card {
  background: var(--surface-1);
  border-radius: 12px;
  padding: var(--space-2xl);
  border: 1px solid color-mix(in oklab, var(--brand) 10%, transparent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  animation: reveal-card linear forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 80%;
}
.testimonial-card:nth-child(2) { animation-delay: 100ms; }
.testimonial-card:nth-child(3) { animation-delay: 200ms; }

.testimonial-stars {
  color: var(--accent-dark);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-author strong {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in oklab, var(--brand-dark) 82%, transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px var(--space-md);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--text-on-dark);
  min-height: 44px;
  transition: border-color 150ms ease-out, background-color 150ms ease-out;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  background: rgba(255,255,255,0.12);
  border-color: transparent;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.direct-contact {
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.contact-link {
  color: var(--accent);
  font-weight: 600;
  transition: color 150ms ease-out;
}
.contact-link:hover { color: #fff; }

/* === FOOTER === */
.site-footer {
  background: var(--surface-3);
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-3xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-brand .logo-mark {
  width: 44px;
  height: 44px;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}
.footer-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-dark);
}
.footer-tagline {
  font-size: 0.875rem;
  max-width: 280px;
  line-height: 1.5;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: var(--space-md);
}
.footer-links ul,
.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.9rem;
}
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color 150ms ease-out;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--text-on-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

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

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { height: 55vmax; }
  .hero-text-side { padding: var(--space-3xl) var(--space-xl); }
  .hero-content { max-width: 100%; }

  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { order: -1; }
  .stats-grid { flex-direction: column; gap: var(--space-2xl); }
  .stat-divider { width: 80px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--surface-3);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open {
    display: flex;
    @starting-style { opacity: 0; translate: 0 -8px; }
    opacity: 1; translate: 0 0;
    transition: opacity 200ms ease-out, translate 200ms ease-out;
  }
  .nav-links a { padding: var(--space-sm) 0; font-size: 1.05rem; }
  .nav-cta { text-align: center !important; }

  .hero-text-side { padding: var(--space-2xl) var(--space-lg); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .pain-grid { gap: var(--space-md); }
  .about-img-tag { right: 0; bottom: -8px; }
  .services-grid { gap: var(--space-md); }
}

@media (pointer: coarse) {
  .btn { min-height: 48px; padding: 14px 28px; }
}
