:root {
  --bg: #fdfcfb;
  --bg-alt: #f7f4f0;
  --ink: #000000;
  --muted: #332f2b;
  --line: rgba(0, 0, 0, 0.1);
  --panel: #ffffff;
  --brand: #1a1612;
  --brand-dark: #000000;
  --accent: #c4944d;
  --accent-strong: #e1b777;
  --soft: #f4f0e9;
  --dark-bg: #000000;
  --dark-text: #ffffff;
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 50px 120px rgba(0, 0, 0, 0.18);
  --ease: cubic-bezier(0.2, 1, 0.3, 1);
}

/* Performance Layer */
.section, .dark-section, .cta-section, .personal-section, .problem {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}
.hero, .page-hero { content-visibility: visible; }
.hero-photo, .portrait-fit, .hero-pillars a, .feature-grid article, .reveal {
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 148, 77, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}

@keyframes drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -50px) rotate(2deg); }
  66% { transform: translate(-20px, 20px) rotate(-1deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.15;
  animation: drift 20s infinite ease-in-out;
}

.bg-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -10%;
  left: -10%;
}

.bg-shape-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-strong);
  bottom: 10%;
  right: -5%;
  animation-delay: -5s;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: all 0.3s var(--ease); }

:focus-visible {
  outline: 3px solid rgba(183, 138, 69, .48);
  outline-offset: 4px;
}

/* Conversion Optimizations */
.btn.primary {
  animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 15px 45px rgba(196, 148, 77, 0.4); transform: translateY(-2px) scale(1.01); }
  100% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
}

.site-header {
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 32px clamp(60px, 10vw, 160px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.path-section {
  position: relative;
  overflow: hidden;
}

.path-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
}

/* Redundant cta-section rules removed */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--accent);
  z-index: 10000;
  transition: width 0.1s linear;
}

.logo-brand {
  transition: transform 0.4s var(--ease);
}

.logo-brand:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* Enhanced Image Presentation */
.image-band img, .hero-photo {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Premium Button Polish */
.btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.primary {
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand:hover { transform: translateY(-1px); }

.logo-brand {
  min-width: 280px;
  max-width: 380px;
}

.logo-brand img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #000);
  border-radius: 10px;
  font-size: 14px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(-3deg) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: all 0.4s var(--ease);
}

.main-nav a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transform: translateZ(0);
  transition: all 0.3s var(--ease);
}

.header-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.3) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}

/* Advanced Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(10px);
  transition: 
    opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.2, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Text Reveal Fix */
.split-word { display: inline !important; }
.split-char { 
  display: inline !important; 
  transform: none !important; 
  transition: none !important; 
}

h1, h2, h3 {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}

/* Kacheln Digits - REMOVED for cleaner look */
.hero-pillars span, .pain-flow span, .path-grid span, .local-care article > span {
  display: none !important;
}

/* Magnetic Button Base */
.btn {
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-5px) scale(1.02);
}

.header-cta:hover::before,
.btn:hover::before {
  transform: translateX(120%);
}

.header-cta:active,
.btn:active {
  transform: translateY(-1px);
}

.header-cta,
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #000);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn.secondary {
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
}

.btn.secondary:hover {
  border-color: var(--accent);
  background: var(--bg-alt);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(60px, 10vw, 140px);
  min-height: 100vh;
  padding: clamp(100px, 15vw, 220px) clamp(60px, 10vw, 160px);
}

.hero-copy {
  padding-right: 0;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 86px);
  background: linear-gradient(135deg, #f7f5f0, #eee8dd);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 74px);
}

.page-hero .hero-lead { margin-bottom: 28px; }

.side-proof {
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #15110d, #33291f);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}

.side-proof:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.side-proof strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 42px;
  line-height: 1;
}

.side-proof p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.55;
}

.side-proof ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-proof li,
.check-list li {
  padding-left: 22px;
  position: relative;
}

.side-proof li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  background: none;
}

/* Premium 'Wow' Effects */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes shimmer {
  0% { transform: translateX(-150%) skewX(-20deg); }
  100% { transform: translateX(150%) skewX(-20deg); }
}

.hero-photo, .portrait-fit {
  animation: float 6s ease-in-out infinite;
}

.btn.primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

/* Redundant glassmorphism and feature-grid rules removed */

/* Massive Luxury Spacing */
.section, .dark-section, .cta-section, .personal-section, .problem {
  padding: clamp(160px, 20vw, 320px) clamp(60px, 10vw, 160px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-head {
  max-width: 1200px;
  margin-bottom: clamp(100px, 15vw, 200px);
}

h1 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  font-size: clamp(48px, 9vw, 92px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--ink);
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  text-align: center;
}

h1 span { display: block; }

.h1-subline {
  display: block;
  margin-top: 0.25em;
  color: var(--muted);
  font-size: 0.58em;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h2 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: inherit;
  word-break: normal;
  overflow-wrap: break-word;
  text-align: center;
}

/* Cinematic Hero Glow */
.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(196, 148, 77, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-brand p {
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.site-footer .logo-brand {
  width: fit-content;
  margin: 0 auto;
}

.hero-lead, .section-copy {
  font-size: clamp(22px, 2.5vw, 32px);
  max-width: 1000px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 1;
}

/* Force immediate visibility for Hero content */
.hero h1.reveal, .hero h2.reveal, .hero .hero-lead.reveal, .hero .eyebrow.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Redesign Hero for Max Impact */
.hero {
  min-height: 110vh;
  gap: 120px;
}

.hero-photo {
  border-radius: 80px;
  max-width: 1300px;
}

/* Floating Interactive Cards */
.hero-pillars a:hover {
  transform: translateY(-24px) scale(1.05) rotate(1deg);
  border-color: var(--accent);
  box-shadow: 0 60px 120px rgba(196, 148, 77, 0.2);
}

/* Playful Background Blobs */
.section, .hero, .personal-section {
  position: relative;
  overflow: hidden;
}

.section::before, .hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 148, 77, 0.05) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: -1;
  pointer-events: none;
}

.dark-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  bottom: -300px;
  left: -300px;
  z-index: 0;
  pointer-events: none;
}

h3 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.7;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 64px 0;
}

.trust-bar {
  margin: 64px 0;
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-label {
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-logos span {
  position: relative;
  transition: all 0.4s var(--ease);
  opacity: 0.85;
  cursor: default;
}

.trust-logos span:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.1);
  color: var(--accent);
}

.trust-logos span::after {
  content: "•";
  position: absolute;
  right: calc(clamp(24px, 4vw, 48px) / -2);
  color: var(--accent);
  opacity: 0.3;
}

.trust-logos span:last-child::after { content: none; }

/* Redundant dark-section rule removed */

/* Definitive Contrast & Visibility Fix */
.dark-section, .problem, .cta-section, .site-footer, .side-proof, .demo-visual, .service-card.featured {
  background-color: #000000 !important;
  background: linear-gradient(135deg, #000000 0%, #1a1612 100%) !important;
  color: #ffffff !important;
}

.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4,
.problem h1, .problem h2, .problem h3, .problem h4,
.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4,
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4,
.side-proof h3, .service-card.featured h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

.dark-section p, .problem p, .cta-section p, .site-footer p, .side-proof p, .service-card.featured p,
.dark-section li, .problem li, .cta-section li, .site-footer li,
.dark-section strong, .problem strong, .cta-section strong, .site-footer strong,
.dark-section span, .problem span, .cta-section span, .site-footer span,
.dark-section a, .site-footer a {
  color: rgba(255, 255, 255, 0.95) !important;
}

.dark-section .eyebrow, .problem .eyebrow, .cta-section .eyebrow {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Specific Fix for Light Tiles in Dark Sections (Eyecatcher Fix) */
.feature-grid article, .case-grid article, .content-card, .hero-pillars a {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  color: #000000 !important;
}

.feature-grid article h3, .case-grid article h3, .content-card h3 {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  font-size: clamp(26px, 2.8vw, 36px) !important;
  font-weight: 900 !important;
  margin-bottom: 20px !important;
  opacity: 1 !important;
}

.feature-grid article p, .case-grid article p, .content-card p {
  color: #332f2b !important;
  opacity: 0.9 !important;
  font-weight: 500 !important;
}

/* Hide Digits globally in these specific light tiles */
.feature-grid .icon, .feature-grid span, .case-grid span {
  display: none !important;
}

/* Contact Form Positioning & Polish */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(60px, 10vw, 120px);
  padding: clamp(160px, 20vw, 320px) clamp(60px, 10vw, 160px) !important;
  min-height: 100vh;
}

.cta-section > div:first-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

.contact-form {
  padding: clamp(60px, 8vw, 100px);
  background: #ffffff !important;
  border-radius: 60px;
  box-shadow: 0 80px 160px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 32px;
  width: 100%;
  max-width: 900px;
  margin-top: 0 !important;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form label, .contact-form input, .contact-form .form-note, .contact-form h1, .contact-form h2, .contact-form h3 {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

.contact-form .btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.form-note {
  font-size: 14px;
  opacity: 0.8;
  text-align: center;
}

/* Hide Digits globally in Kacheln */
.hero-pillars span, .pain-flow span, .path-grid span, .local-care article > span {
  display: none !important;
}

/* Floating Hero Pillars */
.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1400px;
  width: 100%;
  margin: 80px auto 0;
  perspective: 1000px;
}

.hero-pillars a {
  position: relative;
  display: grid;
  align-content: start;
  gap: 20px;
  width: 280px;
  min-height: 220px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  transition: all 0.8s var(--ease);
  animation: float-pillar 8s ease-in-out infinite;
}

@keyframes float-pillar {
  0% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(10px) rotate(-0.5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.hero-pillars a:nth-child(2) { animation-delay: -2s; animation-duration: 9s; }
.hero-pillars a:nth-child(3) { animation-delay: -4s; animation-duration: 7s; }
.hero-pillars a:nth-child(4) { animation-delay: -1s; animation-duration: 10s; }

.hero-pillars a:hover {
  transform: translateY(-30px) scale(1.08) rotate(2deg) !important;
  border-color: var(--accent);
  box-shadow: 0 40px 100px rgba(196, 148, 77, 0.25);
  background: #fff;
  z-index: 10;
}

/* Portrait Refinement */
.personal-section {
  background: var(--bg-alt);
  padding: clamp(200px, 25vw, 400px) clamp(60px, 10vw, 160px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 120vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.image-band img.portrait-fit {
  object-fit: contain;
  object-position: center top;
  padding: 60px 0 0;
  background: transparent;
  margin-top: 40px;
  margin-bottom: 60px;
  z-index: 10;
  max-width: 580px; /* Slightly smaller for better sharpness */
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  /* Premium Image Polish */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: 
    drop-shadow(0 40px 80px rgba(0,0,0,0.15))
    contrast(1.04) 
    brightness(1.02)
    saturate(1.05);
  /* Edge smoothing trick */
  mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 95%, transparent 100%);
}

@media (max-width: 1024px) {
  .hero, .image-band, .page-hero, .intelligence-demo, .cta-section, .problem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
    padding: clamp(60px, 10vw, 100px) clamp(24px, 6vw, 40px) !important;
    min-height: auto;
  }
  
  .hero-photo, .portrait-fit {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .image-band img.portrait-fit {
    margin-top: 0;
    margin-bottom: 0;
  }

  .contact-form {
    margin-top: 0;
    margin-bottom: 0;
    padding: 32px 24px;
  }
  
  .section-head {
    justify-items: center;
  }

  .hero-pillars, .proof-row {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 1024px) {
  .section, .dark-section, .cta-section, .personal-section, .problem, .hero {
    padding: clamp(80px, 12vw, 120px) clamp(24px, 6vw, 40px);
    gap: 64px;
  }
  
  h1 { font-size: clamp(42px, 8vw, 64px); margin-bottom: 32px; }
  h2 { font-size: clamp(32px, 6vw, 48px); margin-bottom: 32px; }
  .hero-lead, .section-copy { font-size: 20px; }
  
  .hero-pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Mobile Sticky CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 20px 24px;
  background: rgba(253, 252, 251, 0.9);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
}

.mobile-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-cta-content p {
  margin: 0;
  font-weight: 800;
  font-size: 14px;
  color: var(--brand-dark);
}

.mobile-cta-content .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 13px;
}

.hero-pillars strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.12;
}

.hero-pillars small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.hero-panel {
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(210, 173, 107, .18), rgba(255, 255, 255, 0)),
    var(--brand-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}

.hero-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.media-stack {
  display: grid;
  gap: 16px;
}

.hero .media-stack {
  align-self: stretch;
  align-content: center;
}

.hero-photo, .portrait-fit, .service-card, .feature-grid article, .contact-form {
  will-change: transform, opacity;
}

.hero-photo {
  width: 100%;
  height: clamp(400px, 45vw, 680px);
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.2);
  transition: transform .8s var(--ease), filter .8s var(--ease), box-shadow .8s var(--ease);
}

.media-stack:hover .hero-photo {
  transform: translateY(-20px) scale(1.03);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 80px 180px rgba(0, 0, 0, 0.25);
}

.panel-top,
.call-card,
.journey {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.panel-top {
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .72);
}

.panel-top strong { color: #fff; }

.call-card {
  flex-direction: column;
  padding: 18px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  transition: border-color .24s var(--ease), background-color .24s var(--ease);
}

.hero-panel:hover .call-card {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(210, 173, 107, .42);
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  background: #57d68d;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(87, 214, 141, .46);
  animation: pulse 2.2s infinite;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid div {
  padding: 18px;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  transition: transform .24s var(--ease);
}

.metric-grid div:hover {
  transform: translateY(-3px);
}

.metric-grid span,
.case-grid span,
.service-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.1;
}

.journey {
  flex-wrap: wrap;
  margin-top: 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.journey span {
  flex: 1 1 120px;
  padding: 10px;
  text-align: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 6px;
  transition: background-color .24s var(--ease), color .24s var(--ease);
}

.journey span:hover {
  color: #fff;
  background: rgba(210, 173, 107, .24);
}

/* Empty block removed */

/* Redundant problem rule removed */

/* Cleaned up .problem p */

.pain-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  width: 100%;
  max-width: 1400px;
  margin-top: 64px;
}

.pain-flow article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.6s var(--ease);
}

.pain-flow article:hover {
  transform: translateY(-20px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.pain-flow strong {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.2;
}

.pain-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 18px;
}

/* Vertical line removed */
.pain-flow::before { display: none; }

.section-head {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-bottom: clamp(80px, 12vw, 160px);
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.section-head .eyebrow {
  margin-bottom: 0;
}

.section-head h2 {
  max-width: 960px;
  margin-bottom: 0;
  text-align: center;
  word-break: normal;
  overflow-wrap: break-word;
}

.section-cta {
  min-height: 56px;
  padding: 0 26px;
  font-size: 16px;
  white-space: nowrap;
}

.intelligence-head .section-cta {
  box-shadow: 0 16px 38px rgba(21, 17, 13, .28);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-copy {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(20px, 1.3vw, 26px);
  line-height: 1.8;
  text-align: center;
}

/* Redundant section rules removed */

/* Redundant personal-section removed */

.image-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(60px, 8vw, 100px);
  padding: 0;
  background: transparent;
}

.image-band > div {
  max-width: 900px;
}

.image-band img {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.15);
  transition: transform .6s var(--ease), filter .6s var(--ease), box-shadow .6s var(--ease);
}

/* Redundant portrait rule removed */

.image-band img.image-contain {
  object-fit: contain;
  object-position: center;
  padding: 14px;
  background: linear-gradient(135deg, #f7f5f0, #eee8dd);
}

.website-flow-section {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, #fff, #f7f5f0);
  overflow: visible;
}

.website-flow-section .section-head {
  margin-bottom: 0;
}

.website-flow-section .section-copy {
  margin: 0 auto;
  text-align: center;
}

.personal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.website-flow-section .personal-actions {
  justify-content: center;
}

.website-flow-image {
  display: block;
  width: 100%;
  max-width: 1160px;
  height: auto;
  max-height: none;
  object-fit: contain;
  justify-self: center;
  margin: 0 auto;
  transform: none;
  border-radius: 8px;
  box-shadow: none;
  transition: transform .45s var(--ease), filter .45s var(--ease), box-shadow .45s var(--ease);
}

.website-flow-image:hover {
  transform: translateY(-4px) scale(1.005);
  filter: saturate(1.03) contrast(1.01);
  box-shadow: var(--shadow-hover);
}

.intelligence-demo {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: #fff;
}

.text-link {
  position: relative;
  color: var(--brand);
  font-weight: 800;
  white-space: nowrap;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.text-link:hover::after { transform: scaleX(1); }

.feature-grid,
.case-grid,
.two-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.two-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature-grid article,
.case-grid article,
.content-card,
/* Redundant contact-form rule removed */

.feature-grid article:hover,
.case-grid article:hover,
.content-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.65;
}

.process {
  display: grid;
  gap: 12px;
  counter-reset: steps;
}

.process article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.process article:hover {
  transform: translateX(6px);
  border-color: rgba(183, 138, 69, .45);
  box-shadow: 0 16px 44px rgba(21, 17, 13, .08);
}

.process article::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  color: var(--accent);
  font-weight: 800;
}

/* Redundant feature-grid p removed */

.icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--accent);
  font-weight: 800;
  transition: transform .24s var(--ease), color .24s var(--ease);
}

.feature-grid article:hover .icon,
.content-card:hover .icon {
  transform: translateY(-2px);
  color: var(--accent-strong);
}

.muted { background: var(--soft); }

.path-section {
  background: #fff;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 1400px;
}

.path-grid article {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  gap: 20px;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 30px;
  transition: all 0.6s var(--ease);
  overflow: visible;
}

.path-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0.2);
  width: 60px;
  height: 4px;
  background: var(--accent);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
  border-radius: 0 0 4px 4px;
}

.path-grid article:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.path-grid article:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.path-grid span {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.path-grid h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: inherit;
}

.path-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 800;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}

.service-list a:hover {
  transform: translateX(6px);
  background: #fffdf9;
  border-color: rgba(183, 138, 69, .55);
  box-shadow: 0 16px 44px rgba(21, 17, 13, .08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 32px;
  overflow: hidden;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(.18);
  transform-origin: top;
  transition: transform .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card.featured {
  color: #fff;
  background: linear-gradient(135deg, var(--dark-bg), #000);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card.featured p,
.service-card.featured .service-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.service-card.featured strong {
  color: var(--accent-strong);
}

.service-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.service-card strong {
  align-self: end;
  margin-top: auto;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.service-card strong::after {
  content: " \2192";
}

.proof-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.proof-case-grid article {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.4s var(--ease);
}

.proof-case-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.proof-tag {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  margin-top: 64px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 60px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 32px;
  transition: all 0.6s var(--ease);
}

.testimonial-grid figure:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* Mini CTA Polish */
.mini-cta {
  margin: clamp(40px, 8vw, 100px) auto;
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
  background: var(--dark-bg);
  color: #fff;
  border-radius: 40px;
  max-width: 1200px;
  width: calc(100% - clamp(80px, 12vw, 240px));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.mini-cta h2 {
  color: #fff !important;
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
}

.mini-cta p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: clamp(18px, 1.5vw, 24px);
  max-width: 800px;
}

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

.faq-list {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: all 0.6s var(--ease);
}

.faq-list details:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.faq-list details[open] {
  border-color: var(--accent);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.faq-list summary {
  cursor: pointer;
  padding: 32px 40px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.3;
}

.faq-list summary::marker {
  color: var(--accent);
}

.faq-list p {
  max-width: 900px;
  margin: -10px 40px 32px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.testimonial-grid figcaption {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Redundant cta-section rule removed */

/* Redundant contact-form rule removed */

label {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 60px;
  padding: 0 24px;
  color: var(--ink);
  background: #f9f7f4;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  transition: all 0.3s var(--ease);
}

input:hover {
  border-color: rgba(183, 138, 69, .46);
}

input:focus {
  outline: 0;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(183, 138, 69, .14);
}

.contact-form .btn { border: 0; cursor: pointer; }

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--brand);
  font-weight: 800;
}

.booking-section {
  padding-top: 0;
  background: #fff;
}

.cal-embed {
  width: 100%;
  min-height: 720px;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-cta { display: none; }

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(48px, 6vw, 80px);
  padding: clamp(100px, 12vw, 160px) clamp(60px, 10vw, 160px);
  color: rgba(255, 255, 255, 0.95);
  background: #000000;
  border-top: 1px solid rgba(210, 173, 107, 0.18);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-col h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.footer-col p {
  text-align: center;
  margin: 0 auto;
}

.footer-col a {
  text-align: center;
  margin: 0 auto;
}

.site-footer .brand {
  color: #fff;
  margin-bottom: 18px;
}

.site-footer .logo-brand {
  width: fit-content;
  min-width: 360px;
  max-width: 470px;
  padding: 10px 14px;
  background: #f7f5f0;
  border-radius: 8px;
}

.site-footer .logo-brand img {
  height: 88px;
  filter: none;
}

.footer-brand p {
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.footer-col h2 {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.footer-col p {
  margin: 0;
  line-height: 1.65;
}

.footer-col a {
  width: fit-content;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  transition: color .22s var(--ease), transform .22s var(--ease);
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.legal-hero {
  padding: clamp(54px, 8vw, 100px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 52px);
  background: linear-gradient(135deg, #f7f5f0, #eee8dd);
}

.legal-hero h1 {
  max-width: 960px;
  margin-bottom: 0;
}

.legal-content {
  display: grid;
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 100px);
}

.legal-content article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 32px);
}

.legal-content p {
  max-width: 980px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--brand);
  font-weight: 800;
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #f7f5f0 0%, #eee8dd 52%, #ded3c3 100%);
}

.demo-hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 6vw, 76px);
}

.demo-promise {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.demo-promise div {
  padding: 16px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .24s var(--ease), background-color .24s var(--ease), border-color .24s var(--ease);
}

.demo-promise div:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(183, 138, 69, .48);
}

.demo-promise strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 24px;
}

.demo-promise span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.demo-visual {
  position: relative;
  padding: 18px;
  background: #15110d;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}

.demo-visual:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.demo-visual img {
  width: 100%;
  display: block;
  border-radius: 7px;
  background: #fff;
  transition: transform .4s var(--ease);
}

.demo-visual:hover img {
  transform: scale(1.01);
}

.demo-card {
  position: absolute;
  right: 30px;
  bottom: 30px;
  max-width: 260px;
  padding: 16px;
  color: #fff;
  background: rgba(21, 17, 13, .88);
  border: 1px solid rgba(210, 173, 107, .42);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.demo-visual:hover .demo-card {
  transform: translateY(-4px);
  border-color: rgba(210, 173, 107, .72);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(87, 214, 141, .46); }
  70% { box-shadow: 0 0 0 9px rgba(87, 214, 141, 0); }
  100% { box-shadow: 0 0 0 0 rgba(87, 214, 141, 0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.demo-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.local-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f7f5f0 0%, #eef2ee 48%, #ded3c3 100%);
}

.local-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31, 26, 21, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 26, 21, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(120deg, transparent 0%, #000 30%, #000 82%, transparent 100%);
}

.local-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 28%;
  height: 48%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(47, 158, 115, .18), transparent 58%);
  filter: blur(8px);
  animation: heroLift 8s var(--ease) infinite;
}

.local-signal-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.local-signal-field span {
  position: absolute;
  height: 2px;
  width: 34vw;
  min-width: 260px;
  background: linear-gradient(90deg, transparent, rgba(47, 158, 115, .48), rgba(210, 173, 107, .7), transparent);
  border-radius: 99px;
  opacity: .34;
  transform: rotate(-18deg);
  animation: signalSweep 7s linear infinite;
}

.local-signal-field span:nth-child(1) {
  left: -18%;
  top: 22%;
}

.local-signal-field span:nth-child(2) {
  left: 12%;
  top: 64%;
  animation-delay: 1.8s;
  animation-duration: 8.5s;
}

.local-signal-field span:nth-child(3) {
  left: 48%;
  top: 38%;
  animation-delay: 3.2s;
  animation-duration: 9.5s;
}

.local-hero-copy,
.local-visual {
  position: relative;
  z-index: 1;
}

.local-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.local-trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(183, 138, 69, .26);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.local-trust-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  background: #2f9e73;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(47, 158, 115, .12);
}

.local-visual {
  min-height: 520px;
  padding: 20px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(47, 158, 115, .18), transparent 46%),
    linear-gradient(135deg, #15110d, #34291f);
  border: 1px solid rgba(210, 173, 107, .22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.local-visual:hover {
  transform: translateY(-7px) rotateX(1.5deg) rotateY(-1.5deg);
  box-shadow: var(--shadow-hover);
}

.local-visual::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 90deg, transparent, rgba(210, 173, 107, .18), transparent, rgba(47, 158, 115, .16), transparent);
  animation: rotateGlow 15s linear infinite;
}

.local-visual > :not(.local-map) {
  position: relative;
  z-index: 1;
}

.local-orbit {
  position: absolute;
  inset: 72px;
  z-index: 2;
  pointer-events: none;
  border: 1px dashed rgba(255, 255, 255, .18);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
}

.local-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 68px;
  height: 34px;
  padding: 0 10px;
  color: #fff;
  background: rgba(21, 17, 13, .68);
  border: 1px solid rgba(210, 173, 107, .38);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.local-orbit span:nth-child(1) {
  left: 50%;
  top: -17px;
  transform: translateX(-50%);
}

.local-orbit span:nth-child(2) {
  right: -34px;
  top: 52%;
  transform: translateY(-50%);
}

.local-orbit span:nth-child(3) {
  left: -34px;
  bottom: 16%;
}

.local-map {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.local-map::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(210, 173, 107, .24);
  border-radius: 8px;
  animation: localScan 6s var(--ease) infinite;
}

.local-map::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 58%;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(47, 158, 115, .2), transparent);
  transform: rotate(-18deg);
  animation: mapBeam 4.8s var(--ease) infinite;
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #d2ad6b;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(210, 173, 107, .42);
  animation: pinPulse 2.8s infinite;
}

.main-pin {
  left: 48%;
  top: 38%;
  width: 24px;
  height: 24px;
  background: #2f9e73;
  animation-delay: .2s;
}

.pin-one {
  left: 22%;
  top: 62%;
  animation-delay: .8s;
}

.pin-two {
  right: 20%;
  top: 22%;
  animation-delay: 1.4s;
}

.route-line {
  position: absolute;
  left: 25%;
  top: 48%;
  width: 52%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d2ad6b, #2f9e73);
  border-radius: 99px;
  transform: rotate(-24deg);
  transform-origin: left center;
  animation: routeGlow 3.4s var(--ease) infinite;
}

.search-card,
.local-action-card {
  position: absolute;
  z-index: 2;
  max-width: 340px;
  padding: 18px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  border: 1px solid rgba(210, 173, 107, .38);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.search-card {
  left: 34px;
  top: 38px;
  animation: floatCard 5.2s var(--ease) infinite;
}

.local-action-card {
  right: 34px;
  bottom: 34px;
  animation: floatCard 5.2s var(--ease) infinite reverse;
}

.search-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: #2f8060;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-card strong,
.local-action-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.search-card p,
.local-action-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.result-stack {
  position: absolute;
  left: 50px;
  bottom: 122px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 230px;
}

.result-stack span {
  height: 13px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .22), rgba(210, 173, 107, .66), rgba(47, 158, 115, .5));
  transform-origin: left;
  animation: resultLoad 2.8s var(--ease) infinite;
}

.result-stack span:nth-child(2) {
  width: 78%;
  animation-delay: .22s;
}

.result-stack span:nth-child(3) {
  width: 56%;
  animation-delay: .44s;
}

.local-thread-section {
  background: #fff;
}

.local-thread {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.local-thread::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 37px;
  height: 3px;
  background: linear-gradient(90deg, rgba(47, 158, 115, .12), rgba(210, 173, 107, .9), rgba(47, 158, 115, .72));
  border-radius: 99px;
}

.local-thread article,
.local-impact-grid article,
.local-care article {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}

.local-thread article {
  min-height: 290px;
  padding: 22px;
}

.local-thread article::after,
.local-impact-grid article::after,
.local-care article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(47, 158, 115, .08) 42%, rgba(210, 173, 107, .14) 56%, transparent 74%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease);
}

.local-thread article:hover,
.local-impact-grid article:hover,
.local-care article:hover {
  transform: translateY(-8px) scale(1.012);
  background: #fffdf9;
  border-color: rgba(183, 138, 69, .5);
  box-shadow: 0 22px 58px rgba(21, 17, 13, .11);
}

.local-thread article:hover::after,
.local-impact-grid article:hover::after,
.local-care article:hover::after {
  transform: translateX(120%);
}

.thread-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 74px;
  height: 36px;
  margin-bottom: 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #2f8060);
  border: 2px solid rgba(210, 173, 107, .56);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(21, 17, 13, .14);
}

.local-thread article:hover .thread-icon {
  animation: badgePop .55s var(--ease);
}

.local-thread h3,
.local-thread p,
.local-impact-grid h3,
.local-impact-grid p,
.local-care h3,
.local-care p {
  position: relative;
  z-index: 1;
}

.local-thread h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
}

.local-thread-visual article {
  min-height: 310px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}

.local-thread-visual h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.thread-scene {
  position: relative;
  min-height: 140px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(31, 26, 21, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(31, 26, 21, .06) 1px, transparent 1px),
    #f7f5f0;
  background-size: 28px 28px;
  border: 1px solid rgba(223, 213, 200, .9);
  border-radius: 8px;
}

.thread-scene::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(183, 138, 69, .32);
  border-radius: 8px;
  animation: localScan 4.8s var(--ease) infinite;
}

.thread-scene i {
  position: absolute;
  display: block;
  border-radius: 99px;
  background: linear-gradient(90deg, #2f8060, var(--accent-strong));
  box-shadow: 0 12px 30px rgba(21, 17, 13, .12);
}

.scene-search i:nth-child(1) {
  left: 18%;
  top: 34%;
  width: 82px;
  height: 82px;
  border: 12px solid #fff;
  background: transparent;
  animation: lensMove 4s var(--ease) infinite;
}

.scene-search i:nth-child(2) {
  left: 54%;
  top: 45%;
  width: 58px;
  height: 10px;
  transform: rotate(42deg);
  animation: lensMove 4s var(--ease) infinite;
}

.scene-search i:nth-child(3) {
  right: 16%;
  top: 22%;
  width: 18px;
  height: 18px;
  animation: pinPulse 2.6s infinite;
}

.scene-proof i {
  left: 16%;
  width: 68%;
  height: 14px;
}

.scene-proof i:nth-child(1) {
  top: 32%;
  animation: resultLoad 2.6s var(--ease) infinite;
}

.scene-proof i:nth-child(2) {
  top: 50%;
  width: 52%;
  animation: resultLoad 2.6s var(--ease) infinite .2s;
}

.scene-proof i:nth-child(3) {
  top: 68%;
  width: 36%;
  animation: resultLoad 2.6s var(--ease) infinite .4s;
}

.scene-action i:nth-child(1) {
  left: 18%;
  top: 28%;
  width: 66%;
  height: 4px;
  transform: rotate(-18deg);
  animation: routeGlow 2.8s var(--ease) infinite;
}

.scene-action i:nth-child(2),
.scene-action i:nth-child(3) {
  width: 22px;
  height: 22px;
  border: 4px solid #fff;
  animation: pinPulse 2.6s infinite;
}

.scene-action i:nth-child(2) {
  left: 20%;
  top: 56%;
}

.scene-action i:nth-child(3) {
  right: 18%;
  top: 28%;
  animation-delay: .55s;
}

.scene-contact i:nth-child(1) {
  left: 24%;
  top: 27%;
  width: 52%;
  height: 64px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  animation: phoneFloat 4s var(--ease) infinite;
}

.scene-contact i:nth-child(2) {
  left: 33%;
  top: 48%;
  width: 34%;
  height: 8px;
  animation: resultLoad 2.5s var(--ease) infinite;
}

.scene-contact i:nth-child(3) {
  right: 20%;
  bottom: 20%;
  width: 42px;
  height: 42px;
  background: #2f8060;
  animation: pinPulse 2.4s infinite;
}

.local-thread p,
.local-impact-grid p,
.local-care p,
.local-convincer p {
  color: var(--muted);
  line-height: 1.65;
}

.local-experience {
  background:
    linear-gradient(180deg, #fff, #f7f5f0);
}

.local-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(210, 173, 107, .18), transparent 32%),
    linear-gradient(135deg, #15110d, #263528 54%, #15110d);
}

.local-slider-section {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, #fff, #f7f5f0);
}

.local-slider-copy h2 {
  max-width: 620px;
}

.local-slide-controls {
  display: grid;
  gap: 10px;
  max-width: 380px;
  margin-top: 26px;
}

.local-slide-controls button {
  min-height: 54px;
  padding: 0 18px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform .24s var(--ease), color .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}

.local-slide-controls button:hover,
.local-slide-controls button.is-active {
  color: var(--ink);
  border-color: rgba(47, 128, 96, .45);
  box-shadow: 0 16px 38px rgba(21, 17, 13, .08);
  transform: translateX(6px);
}

.local-slider {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(135deg, #15110d, #2f3b2d);
  background-size: 44px 44px;
  border: 1px solid rgba(210, 173, 107, .22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.local-slider::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(210, 173, 107, .22);
  border-radius: 8px;
  animation: localScan 5.5s var(--ease) infinite;
}

.local-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .7fr);
  gap: 24px;
  align-items: end;
  padding: clamp(22px, 4vw, 42px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px) scale(.98);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.local-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.local-slide h3 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.local-slide p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.55;
}

.local-slide div > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.slide-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
}

.slide-visual span {
  position: absolute;
  display: block;
}

.slide-search span:nth-child(1) {
  left: 18%;
  top: 18%;
  width: 190px;
  height: 190px;
  border: 26px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  animation: lensMove 4.2s var(--ease) infinite;
}

.slide-search span:nth-child(2) {
  left: 54%;
  top: 56%;
  width: 120px;
  height: 22px;
  background: rgba(255, 255, 255, .9);
  border-radius: 99px;
  transform: rotate(42deg);
  animation: lensMove 4.2s var(--ease) infinite;
}

.slide-search span:nth-child(3) {
  right: 18%;
  top: 22%;
  width: 34px;
  height: 34px;
  background: var(--accent-strong);
  border: 5px solid #fff;
  border-radius: 50%;
  animation: pinPulse 2.4s infinite;
}

.slide-profile span {
  left: 16%;
  width: 68%;
  height: 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(210, 173, 107, .7));
  border-radius: 99px;
  animation: resultLoad 3s var(--ease) infinite;
}

.slide-profile span:nth-child(1) { top: 30%; }
.slide-profile span:nth-child(2) { top: 48%; width: 54%; animation-delay: .2s; }
.slide-profile span:nth-child(3) { top: 66%; width: 38%; animation-delay: .4s; }

.slide-route span:nth-child(1) {
  left: 16%;
  top: 48%;
  width: 70%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), #2f8060);
  border-radius: 99px;
  transform: rotate(-18deg);
  animation: routeGlow 2.8s var(--ease) infinite;
}

.slide-route span:nth-child(2),
.slide-route span:nth-child(3) {
  width: 38px;
  height: 38px;
  background: #2f8060;
  border: 5px solid #fff;
  border-radius: 50%;
  animation: pinPulse 2.6s infinite;
}

.slide-route span:nth-child(2) { left: 18%; bottom: 28%; }
.slide-route span:nth-child(3) { right: 20%; top: 24%; animation-delay: .55s; }

.slide-call span:nth-child(1) {
  left: 22%;
  top: 20%;
  width: 56%;
  height: 58%;
  background: rgba(255, 255, 255, .94);
  border-radius: 8px;
  animation: phoneFloat 4.4s var(--ease) infinite;
}

.slide-call span:nth-child(2) {
  left: 35%;
  top: 46%;
  width: 30%;
  height: 34px;
  background: #2f8060;
  border-radius: 99px;
  animation: resultLoad 2.8s var(--ease) infinite;
}

.slide-call span:nth-child(3) {
  right: 19%;
  bottom: 22%;
  width: 64px;
  height: 64px;
  background: var(--accent-strong);
  border: 6px solid #fff;
  border-radius: 50%;
  animation: pinPulse 2.2s infinite;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
  line-height: 1.7;
}

.showcase-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(210, 173, 107, .2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    rgba(255, 255, 255, .06);
  background-size: 46px 46px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .25);
}

.showcase-stage::before,
.showcase-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(210, 173, 107, .26);
  animation: localScan 5.8s var(--ease) infinite;
}

.showcase-stage::before {
  width: 420px;
  height: 420px;
}

.showcase-stage::after {
  width: 270px;
  height: 270px;
  animation-delay: 1.2s;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(330px, 82vw);
  padding: 18px;
  background: rgba(247, 245, 240, .96);
  border: 8px solid #15110d;
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
  animation: phoneFloat 5.4s var(--ease) infinite;
}

.phone-search {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 800;
}

.phone-search::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border: 2px solid #2f8060;
  border-radius: 50%;
  box-shadow: 7px 7px 0 -5px #2f8060;
}

.phone-result {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transform: translateX(0);
  animation: resultRise 6s var(--ease) infinite;
}

.phone-result:nth-child(3) {
  animation-delay: .35s;
}

.phone-result:nth-child(4) {
  animation-delay: .7s;
}

.phone-result.active {
  border-color: rgba(47, 158, 115, .46);
  box-shadow: 0 16px 34px rgba(47, 158, 115, .14);
}

.phone-result span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(135deg, rgba(47, 158, 115, .9), rgba(210, 173, 107, .9));
  border-radius: 8px;
}

.phone-result strong {
  display: block;
  font-size: 15px;
}

.phone-result small {
  color: var(--muted);
  font-weight: 800;
}

.showcase-glow-card {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: clamp(18px, 5vw, 58px);
  z-index: 3;
  min-width: 190px;
  padding: 18px;
  color: #fff;
  background: rgba(21, 17, 13, .82);
  border: 1px solid rgba(210, 173, 107, .48);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
  backdrop-filter: blur(14px);
  animation: floatCard 4.8s var(--ease) infinite reverse;
}

.showcase-glow-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.showcase-glow-card strong {
  font-size: 24px;
}

.local-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.local-impact-grid article {
  min-height: 270px;
  padding: 26px;
}

.local-impact-visual article {
  min-height: 260px;
  display: grid;
  align-content: end;
}

.local-impact-visual h3 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 54px);
  line-height: 1;
}

.local-impact-visual strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
}

.local-impact-grid article::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 118px;
  height: 118px;
  background: radial-gradient(circle, rgba(47, 158, 115, .15), transparent 68%);
  border-radius: 50%;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

.local-impact-grid article:hover::before {
  transform: scale(1.55);
  opacity: .9;
}

.impact-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border: 2px solid rgba(47, 158, 115, .55);
  border-radius: 50%;
}

.impact-mark::before,
.impact-mark::after {
  content: "";
  position: absolute;
  border-radius: 99px;
}

.impact-mark::before {
  left: 10px;
  top: 18px;
  width: 20px;
  height: 4px;
  background: var(--accent);
  transform: rotate(-42deg);
}

.impact-mark::after {
  left: 13px;
  top: 13px;
  width: 4px;
  height: 17px;
  background: var(--accent);
  transform: rotate(42deg);
}

.local-care {
  display: grid;
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
}

.local-care article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px;
}

.local-care article > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #2f8060);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.local-convincer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(47, 158, 115, .18), transparent 42%),
    linear-gradient(135deg, #15110d, #2b231b);
}

.local-convincer h2 {
  max-width: 900px;
}

.local-convincer p {
  max-width: 780px;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
}

.convincer-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(210, 173, 107, .28);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}

.convincer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(210, 173, 107, .16), transparent);
  transform: translateX(-120%);
  animation: panelShine 5s var(--ease) infinite;
}

.convincer-panel > * {
  position: relative;
  z-index: 1;
}

.convincer-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(210, 173, 107, .58);
}

.convincer-panel span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.convincer-panel strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.local-final-cta {
  margin-top: clamp(52px, 7vw, 90px);
}

.local-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.ghost-call {
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, .2) !important;
}

@keyframes localScan {
  0%, 100% { transform: scale(.94); opacity: .34; }
  50% { transform: scale(1.04); opacity: .72; }
}

@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(210, 173, 107, .46); }
  70% { box-shadow: 0 0 0 18px rgba(210, 173, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(210, 173, 107, 0); }
}

@keyframes routeGlow {
  0%, 100% { opacity: .44; transform: rotate(-24deg) scaleX(.84); }
  50% { opacity: 1; transform: rotate(-24deg) scaleX(1); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes heroLift {
  0%, 100% { transform: translateY(0) scale(1); opacity: .72; }
  50% { transform: translateY(-26px) scale(1.08); opacity: 1; }
}

@keyframes signalSweep {
  0% { transform: translateX(-45vw) rotate(-18deg); opacity: 0; }
  18% { opacity: .42; }
  78% { opacity: .42; }
  100% { transform: translateX(118vw) rotate(-18deg); opacity: 0; }
}

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes mapBeam {
  0%, 100% { transform: translateY(-70px) rotate(-18deg); opacity: .18; }
  50% { transform: translateY(70px) rotate(-18deg); opacity: .72; }
}

@keyframes resultLoad {
  0%, 100% { transform: scaleX(.42); opacity: .42; }
  50% { transform: scaleX(1); opacity: .9; }
}

@keyframes badgePop {
  0% { transform: scale(1); }
  45% { transform: scale(1.08) translateY(-2px); }
  100% { transform: scale(1); }
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1.4deg); }
  50% { transform: translateY(-12px) rotate(1.2deg); }
}

@keyframes resultRise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes panelShine {
  0%, 38% { transform: translateX(-120%); }
  68%, 100% { transform: translateX(120%); }
}

@keyframes lensMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(14px, -8px) rotate(2deg); }
}

@media (max-width: 1180px) {
  .focus-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .local-thread {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .local-thread::before {
    display: none;
  }
  .local-showcase {
    grid-template-columns: 1fr;
  }
  .local-slider-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  body {
    padding-bottom: 74px;
  }
  .site-header {
    gap: 12px;
  }
  .hero,
  .page-hero,
  .demo-hero,
  .image-band,
  .intelligence-demo,
  .problem,
  .cta-section {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-bottom: 78px; }
  .proof-row,
  .demo-promise,
  .feature-grid,
  .case-grid,
  .local-thread,
  .local-impact-grid,
  .proof-connector,
  .path-grid,
  .proof-case-grid,
  .proof-case-grid.compact,
  .solution-proof,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .two-grid {
    grid-template-columns: 1fr;
  }
  .local-convincer {
    grid-template-columns: 1fr;
  }
  .local-showcase {
    grid-template-columns: 1fr;
  }
  .local-slider-section,
  .local-slide {
    grid-template-columns: 1fr;
  }
  .local-slider {
    min-height: 680px;
  }
  .showcase-stage {
    min-height: 520px;
  }
  .website-flow-image {
    width: 100%;
    transform: none;
  }
  .website-flow-image:hover {
    transform: translateY(-4px) scale(1.005);
  }
  .local-care article {
    grid-template-columns: 1fr;
  }
  .local-care article > span {
    width: fit-content;
    padding: 0 14px;
  }
  .local-visual {
    min-height: 460px;
  }
  .local-orbit {
    inset: 86px 46px;
  }
  .local-cta-actions {
    justify-content: flex-start;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    display: grid;
  }
  .section-cta {
    width: 100%;
    max-width: 420px;
    margin-top: 6px;
  }
  .text-link {
    display: inline-flex;
    margin-top: 18px;
  }
  .service-list a {
    display: block;
    font-size: 19px;
  }
  .service-list span { margin-top: 8px; }
  .service-card {
    min-height: auto;
  }
  .proof-connector span:not(:last-child)::after {
    content: "↓";
    right: auto;
    top: auto;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
  }
  .personal-actions .btn {
    width: 100%;
  }
  .mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 30;
    display: block;
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), #3b3127);
    border-radius: 7px;
    box-shadow: var(--shadow);
    font-weight: 800;
  }
}

@media (max-width: 560px) {
  .site-header { padding: 12px 16px; }
  .logo-brand {
    min-width: 0;
    max-width: 210px;
  }
  .logo-brand img {
    height: 54px;
  }
  .header-cta { display: none; }
  .hero-actions .btn { width: 100%; }
  .hero-panel { padding: 16px; }
  .local-visual {
    min-height: 420px;
    padding: 16px;
  }
  .local-signal-field span {
    min-width: 210px;
  }
  .local-orbit {
    display: none;
  }
  .local-map {
    inset: 16px;
  }
  .search-card,
  .local-action-card {
    left: 26px;
    right: 26px;
    max-width: none;
  }
  .search-card {
    top: 28px;
  }
  .local-action-card {
    bottom: 28px;
  }
  .result-stack {
    left: 28px;
    bottom: 132px;
    width: 190px;
  }
  .showcase-stage {
    min-height: 470px;
  }
  .website-flow-image {
    width: 100%;
    transform: none;
  }
  .website-flow-image:hover {
    transform: translateY(-3px);
  }
  .local-slider {
    min-height: 650px;
  }
  .slide-visual {
    min-height: 280px;
  }
  .local-slide-controls {
    max-width: none;
  }
  .phone-shell {
    width: min(300px, 88vw);
  }
  .showcase-glow-card {
    right: 18px;
    bottom: 18px;
  }
  .local-thread article,
  .local-impact-grid article {
    min-height: auto;
  }
  .local-final-cta .btn,
  .local-cta-actions {
    width: 100%;
  }
  .hero-pillars {
    grid-template-columns: 1fr;
  }
  .hero-pillars::before {
    right: auto;
    bottom: 7%;
    left: 22px;
    top: 7%;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(183, 138, 69, .08), rgba(183, 138, 69, .62), rgba(183, 138, 69, .08));
  }
  .hero-pillars a {
    min-height: auto;
    grid-template-columns: 46px 1fr;
    align-items: center;
  }
  .hero-pillars small {
    grid-column: 2;
  }
  .metric-grid { grid-template-columns: 1fr; }
  .journey { display: grid; grid-template-columns: repeat(2, 1fr); }
  .demo-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .pain-flow {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cal-embed {
    min-height: 680px;
  }
}
