        * {
            cursor: default;
        }
        
        a, button, .magnetic-element {
            cursor: pointer;
        }
        
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #f43f5e, #fbbf24);
            z-index: 9998;
            transition: width 0.1s ease;
        }
        
        #cursor-glow {
            position: fixed;
            left: 0;
            top: 0;
            width: 86px;
            height: 86px;
            border-radius: 22px;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.42;
            transform: translate3d(-120px, -120px, 0) translate(-50%, -50%) rotate(0deg);
            will-change: transform, opacity;
            transition: opacity 0.22s ease, width 0.22s ease, height 0.22s ease, border-radius 0.22s ease;
            background:
                linear-gradient(#05070a, #05070a) padding-box,
                conic-gradient(from 120deg, rgba(46,230,140,0), rgba(46,230,140,0.95), rgba(96,165,250,0.62), rgba(46,230,140,0)) border-box;
            border: 1px solid transparent;
            box-shadow: 0 0 38px rgba(46,230,140,0.14);
            mix-blend-mode: screen;
        }

        #cursor-glow::before,
        #cursor-glow::after {
            content: "";
            position: absolute;
            inset: 13px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.09);
        }

        #cursor-glow::after {
            inset: 50% auto auto 50%;
            width: 34px;
            height: 1px;
            border: 0;
            border-radius: 0;
            background: linear-gradient(90deg, transparent, rgba(46,230,140,0.78), transparent);
            transform: translate(-50%, -50%);
        }

        #cursor-trail {
            position: fixed;
            left: 0;
            top: 0;
            width: 34px;
            height: 2px;
            border-radius: 999px;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.5;
            transform: translate3d(-120px, -120px, 0) translate(-50%, -50%);
            will-change: transform, opacity;
            background: linear-gradient(90deg, transparent, rgba(46,230,140,0.92), rgba(96,165,250,0.62), transparent);
            box-shadow: 0 0 18px rgba(46,230,140,0.16);
        }

        .cursor-hover #cursor-glow {
            width: 104px;
            height: 104px;
            border-radius: 28px;
            opacity: 0.62;
            box-shadow: 0 0 54px rgba(46,230,140,0.2);
        }

        .cursor-hover #cursor-trail {
            opacity: 0.72;
        }
        
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #3b82f6, #f43f5e);
            border-radius: 10px;
        }
        
        .frosted-glass {
            background: rgba(10, 10, 10, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .header-scroll .frosted-glass {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(59, 130, 246, 0.2);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #3b82f6, #f43f5e, #fbbf24);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-shift 5s ease infinite;
        }
        
        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        /* LIQUID BADGE - Unique Design */
        .liquid-badge {
            position: relative;
            display: inline-block;
            padding: 0;
            overflow: visible;
        }
        
   .liquid-badge-inner {
  position: relative;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px) saturate(180%);
  overflow: hidden;
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(59, 130, 246, 0.15),
    0 0 40px rgba(244, 63, 94, 0.1);
  z-index: 1;
  color: #e0e7ff;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.liquid-badge-inner::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.4), transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(244,63,94,0.3), transparent 60%),
              radial-gradient(circle at 50% 50%, rgba(251,191,36,0.2), transparent 70%);
  filter: blur(60px);
  mix-blend-mode: screen;
  animation: liquid-shift 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes liquid-shift {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.liquid-badge-inner:hover {
  box-shadow:
    inset 0 0 15px rgba(255, 255, 255, 0.25),
    0 0 30px rgba(59, 130, 246, 0.4),
    0 0 60px rgba(244, 63, 94, 0.3);
  transform: scale(1.05);
}

        
        .liquid-badge-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .liquid-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6, #f43f5e);
            animation: liquid-pulse 2s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
        }
        
        @keyframes liquid-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes liquid-pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
            }
            50% { 
                transform: scale(1.5);
                box-shadow: 0 0 40px rgba(244, 63, 94, 1);
            }
        }
        
        /* 3D SPLIT TEXT EFFECT */
        .split-text-3d {
            position: relative;
            display: inline-block;
            perspective: 1000px;
        }
        
        .split-char {
            display: inline-block;
            transform-style: preserve-3d;
            animation: char-float 3s ease-in-out infinite;
            text-shadow: 
                2px 2px 0px rgba(59, 130, 246, 0.3),
                4px 4px 0px rgba(244, 63, 94, 0.2),
                6px 6px 0px rgba(251, 191, 36, 0.1);
        }
        
        .split-char:hover {
            animation: char-spin 0.6s ease;
        }
        
        @keyframes char-float {
            0%, 100% { transform: translateY(0) rotateX(0); }
            50% { transform: translateY(-10px) rotateX(10deg); }
        }
        
        @keyframes char-spin {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }
        
        /* MORPHING GRADIENT TEXT */
        .morphing-gradient {
            background: linear-gradient(
                45deg,
                #3b82f6 0%,
                #f43f5e 25%,
                #fbbf24 50%,
                #10b981 75%,
                #3b82f6 100%
            );
            background-size: 400% 400%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: morphing-gradient 8s ease infinite;
            filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
        }
        
        @keyframes morphing-gradient {
            0%, 100% { background-position: 0% 50%; }
            25% { background-position: 100% 50%; }
            50% { background-position: 50% 100%; }
            75% { background-position: 50% 0%; }
        }
        
        /* FLOATING PARTICLES */
        .hero-particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(2px);
        }
        
        /* HOLOGRAPHIC CARD */
        .holographic-card {
            position: relative;
            background: linear-gradient(
                135deg,
                rgba(10, 10, 10, 0.9) 0%,
                rgba(59, 130, 246, 0.1) 50%,
                rgba(10, 10, 10, 0.9) 100%
            );
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .holographic-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.1) 40%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0.1) 60%,
                transparent 100%
            );
            transform: translateX(-100%);
            transition: transform 0.6s;
        }
        
        .holographic-card:hover::before {
            transform: translateX(100%);
        }
        
        .holographic-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 30px 60px rgba(59, 130, 246, 0.4);
        }
        
        /* GLOWING ICONS */
        .glow-icon {
            filter: drop-shadow(0 0 20px currentColor);
            animation: icon-glow 3s ease-in-out infinite;
        }
        
        @keyframes icon-glow {
            0%, 100% { filter: drop-shadow(0 0 20px currentColor); }
            50% { filter: drop-shadow(0 0 40px currentColor) brightness(1.3); }
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .rotate-on-hover {
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .rotate-on-hover:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        .magnetic-element {
            transition: transform 0.3s ease-out;
        }
        
        .morph-blob {
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: morph 8s ease-in-out infinite;
        }
        
        @keyframes morph {
            0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
            50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
            75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
        }
        
        .text-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .text-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        
        .card-3d {
            transform-style: preserve-3d;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .card-3d:hover {
            transform: translateY(-10px) scale(1.02);
        }
        
        .nav-link {
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #60a5fa !important;
        }
        
        .pulse-ring {
            animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        }
        
        @keyframes pulse-ring {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
            }
        }
        
        .counter {
            font-variant-numeric: tabular-nums;
        }
        
        .star-rating {
            color: #fbbf24;
        }
        
        .scale-hover {
            transition: transform 0.3s ease;
        }
        
        .scale-hover:hover {
            transform: scale(1.05);
        }
        
.neon-glow {
  color: #60a5fa; /* canlı mavi ton */
  text-shadow:
    0 0 5px #60a5fa,
    0 0 10px #3b82f6,
    0 0 20px #2563eb,
    0 0 40px #1e40af,
    0 0 80px #1e3a8a;
  animation: neon-flicker 2.5s infinite alternate ease-in-out;
}

@keyframes neon-flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #60a5fa,
      0 0 10px #3b82f6,
      0 0 20px #2563eb,
      0 0 40px #1e40af,
      0 0 80px #1e3a8a;
  }
  20%, 24%, 55% {
    opacity: 0.7;
    text-shadow:
      0 0 3px #3b82f6,
      0 0 7px #2563eb,
      0 0 15px #1e40af;
  }
}

/* Site-wide layout standards */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #020202;
  overflow-x: hidden;
}

img, svg, video, canvas {
  max-width: 100%;
}

:root {
  --site-header-space: 118px;
  --site-section-y: clamp(56px, 7vw, 96px);
}

#main-header .frosted-glass {
  position: relative;
}

.site-page {
  padding-top: var(--site-header-space) !important;
  padding-bottom: var(--site-section-y);
}

.site-page > section:first-of-type {
  padding-top: 0 !important;
}

body > section:first-of-type {
  padding-top: var(--site-header-space) !important;
}

.site-page .container,
body > section .container {
  width: min(100% - 2rem, 1180px);
}

.contact-card {
  min-height: 100%;
}

.modern-icon,
.service-card .w-16,
.tool-card .w-16,
.package-card .w-16 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 18px 45px rgba(0,0,0,0.28);
  font-size: 1.65rem;
}

.modern-icon i,
.service-card i,
.tool-card i,
.package-card i {
  filter: drop-shadow(0 0 14px currentColor);
}

.package-card {
  border: 1px solid rgba(255,255,255,0.12);
}

.sales-page {
  --sales-muted: #94a3b8;
}

.sales-hero {
  min-height: calc(100vh - var(--site-header-space));
}

.premium-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
}

.section-lead {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-chip i {
  color: #34d399;
}

.light-card,
.sector-card,
.faq-item {
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 16px 45px rgba(15,23,42,0.06);
}

.light-card {
  padding: 1.5rem;
}

.light-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: #ecfdf5;
  color: #059669;
  margin-bottom: 1rem;
}

.light-card h3,
.sector-card h3,
.scenario-card h3,
.step-card h2,
.step-card h3,
.offer-card h3 {
  font-weight: 800;
  letter-spacing: 0;
}

.light-card h3 {
  color: #0f172a;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.light-card p,
.sector-card p,
.scenario-card p,
.step-card p,
.offer-card p {
  line-height: 1.65;
}

.light-card p,
.sector-card p {
  color: #475569;
}

.comparison-card,
.offer-card,
.step-card,
.scenario-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.comparison-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.comparison-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.comparison-card ul,
.offer-card ul {
  display: grid;
  gap: 0.85rem;
}

.comparison-card li,
.offer-card li {
  position: relative;
  padding-left: 1.75rem;
  color: #cbd5e1;
}

.comparison-card li::before,
.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #64748b;
}

.comparison-card.featured {
  background: linear-gradient(145deg, rgba(16,185,129,0.18), rgba(255,255,255,0.07));
  border-color: rgba(52,211,153,0.42);
}

.comparison-card.featured li::before,
.offer-card.recommended li::before,
.offer-card li::before {
  background: #34d399;
}

.offer-card {
  position: relative;
  padding: 2rem;
}

.offer-card.recommended {
  border-color: rgba(52,211,153,0.58);
  background: linear-gradient(180deg, rgba(16,185,129,0.18), rgba(255,255,255,0.06));
}

.offer-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.8rem;
}

.offer-card p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.offer-card a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.8rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: #34d399;
  color: #020617;
  font-weight: 800;
}

.recommended-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #34d399;
  color: #020617;
  font-size: 0.78rem;
  font-weight: 900;
}

.sector-card {
  padding: 1.2rem;
}

.sector-card h3 {
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.sector-card p {
  font-size: 0.92rem;
}

.step-card,
.scenario-card {
  padding: 1.35rem;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #34d399;
  color: #020617;
  font-weight: 900;
  margin-bottom: 1rem;
}

.step-card h2,
.step-card h3,
.scenario-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.step-card p,
.scenario-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.analysis-benefit,
.trust-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(15,23,42,0.06);
}

.analysis-benefit i {
  color: #059669;
}

.analysis-form {
  display: grid;
  gap: 1.15rem;
}

#analiz-formu-form,
#anasayfa-analiz-formu {
  scroll-margin-top: calc(var(--site-header-space) + 1rem);
}

.analysis-form label {
  display: block;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.analysis-form input,
.analysis-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.9rem;
  background: #f8fafc;
  color: #0f172a;
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.analysis-form input:focus,
.analysis-form textarea:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.14);
}

.trust-card {
  border: 1px solid #e2e8f0;
}

.faq-item {
  padding: 1.25rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  color: #0f172a;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: #475569;
  line-height: 1.7;
  margin-top: 0.9rem;
}

#mobile-menu a,
.nav-link,
footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

#mobile-menu {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: contain;
}

#mobile-menu > div,
#mobile-menu nav {
  min-height: 0;
}

#mobile-menu nav {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}

.site-whatsapp-float {
  max-width: calc(100vw - 2rem);
}

.site-whatsapp-float,
.site-scroll-top {
  position: fixed !important;
  width: 3.75rem !important;
  height: 3.75rem !important;
  bottom: clamp(1rem, 2vw, 2rem) !important;
  isolation: isolate;
  overflow: hidden;
  color: #ecfeff !important;
  background: #07120f !important;
  border: 1px solid rgba(94, 234, 212, 0.72) !important;
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.35),
    0 0 0 6px rgba(45, 212, 191, 0.14),
    0 0 34px rgba(52, 245, 155, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: opacity 240ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms ease !important;
}

.site-whatsapp-float {
  left: clamp(1rem, 2vw, 2rem) !important;
  right: auto !important;
  color: #ffffff !important;
  background: #25d366 !important;
  border-color: rgba(37, 211, 102, 0.95) !important;
  box-shadow:
    0 18px 42px rgba(4, 120, 87, 0.28),
    0 0 0 6px rgba(37, 211, 102, 0.16),
    0 0 34px rgba(37, 211, 102, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.site-scroll-top {
  right: clamp(1rem, 2vw, 2rem) !important;
  left: auto !important;
}

.site-whatsapp-float::before,
.site-scroll-top::before {
  content: "";
  position: absolute;
  inset: -48%;
  z-index: 0;
  border-radius: inherit;
  background:
    conic-gradient(
      from 120deg,
      rgba(52, 245, 155, 0) 0deg,
      rgba(52, 245, 155, 0.98) 78deg,
      rgba(94, 234, 212, 0.98) 130deg,
      rgba(96, 165, 250, 0.92) 188deg,
      rgba(52, 245, 155, 0) 282deg,
      rgba(52, 245, 155, 0) 360deg
    );
  opacity: 0.9;
  animation: scrollTopOrbit 5.8s linear infinite;
}

.site-whatsapp-float::after,
.site-scroll-top::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 30%),
    linear-gradient(145deg, rgba(7, 18, 15, 0.98) 0%, rgba(10, 29, 35, 0.98) 54%, rgba(14, 26, 46, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -12px 22px rgba(0, 0, 0, 0.24);
}

.site-whatsapp-float::before {
  background:
    conic-gradient(
      from 120deg,
      rgba(37, 211, 102, 0) 0deg,
      rgba(37, 211, 102, 1) 74deg,
      rgba(94, 234, 212, 0.98) 136deg,
      rgba(52, 245, 155, 0.92) 196deg,
      rgba(37, 211, 102, 0) 286deg,
      rgba(37, 211, 102, 0) 360deg
    );
}

.site-whatsapp-float::after {
  background:
    radial-gradient(circle at 31% 22%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #22c55e 0%, #25d366 46%, #128c7e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -13px 24px rgba(0, 82, 53, 0.22);
}

.site-whatsapp-float i,
.site-scroll-top i {
  position: relative;
  z-index: 2;
  font-size: 1.08rem;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 9px rgba(94, 234, 212, 0.58));
  transition: transform 220ms ease, filter 220ms ease;
}

.site-whatsapp-float i {
  font-size: 1.35rem;
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.36));
}

.site-scroll-top.opacity-100 {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}

.site-whatsapp-float:hover,
.site-scroll-top.opacity-100:hover {
  transform: translate3d(0, -4px, 0) scale(1.04) !important;
  box-shadow:
    0 22px 48px rgba(2, 6, 23, 0.42),
    0 0 0 7px rgba(52, 245, 155, 0.2),
    0 0 42px rgba(94, 234, 212, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.site-whatsapp-float:hover {
  box-shadow:
    0 22px 48px rgba(4, 120, 87, 0.34),
    0 0 0 7px rgba(37, 211, 102, 0.22),
    0 0 44px rgba(37, 211, 102, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.site-whatsapp-float:hover i,
.site-scroll-top.opacity-100:hover i {
  transform: translateY(-4px);
  filter: drop-shadow(0 0 13px rgba(94, 234, 212, 0.72));
}

.site-whatsapp-float:hover i {
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.48));
}

.site-whatsapp-float:active,
.site-scroll-top.opacity-100:active {
  transform: translate3d(0, -1px, 0) scale(0.98) !important;
}

.site-whatsapp-float:focus-visible,
.site-scroll-top:focus-visible {
  outline: 3px solid rgba(94, 234, 212, 0.42);
  outline-offset: 4px;
}

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

@media (prefers-reduced-motion: reduce) {
  .site-whatsapp-float,
  .site-scroll-top,
  .site-whatsapp-float i,
  .site-scroll-top i {
    transition: none !important;
  }

  .site-whatsapp-float::before,
  .site-scroll-top::before {
    animation: none;
  }
}

@media (max-width: 1279px) {
  #main-header .container {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  :root {
    --site-header-space: 104px;
    --site-section-y: 56px;
  }

  #cursor-glow,
  #cursor-trail {
    display: none;
  }

  #main-header > .container > .frosted-glass {
    padding-left: 0.55rem !important;
    padding-right: 0.95rem !important;
  }

  .site-page {
    min-height: auto !important;
  }

  .site-page .container,
  body > section .container {
    width: min(100% - 1.25rem, 1180px);
  }

  .site-page h1,
  body > section:first-of-type h1 {
    overflow-wrap: anywhere;
  }

  .site-page .grid {
    min-width: 0;
  }

  .premium-section {
    padding: 3.5rem 0;
  }

  .trust-chip {
    border-radius: 1rem;
    font-size: 0.78rem;
  }

  .site-whatsapp-float {
    left: 1rem !important;
    bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
    width: 3.35rem !important;
    height: 3.35rem !important;
    padding: 0 !important;
  }

  #scroll-to-top {
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .site-scroll-top {
    width: 3.35rem !important;
    height: 3.35rem !important;
    right: 1rem !important;
    bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
  }
}

#main-header .nav-link,
#main-header nav a {
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
}

#main-header .frosted-glass {
  border: 1px solid rgba(255,255,255,0.12);
}

#main-header > .container > .frosted-glass {
  padding-left: 0.55rem !important;
  padding-right: 1.5rem !important;
}

.brand-mark {
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  min-height: 4.1rem;
  border-radius: 999px;
  padding: 0.24rem 1.36rem;
  margin-left: 0;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(74% 145% at 28% 50%, rgba(46,230,140,0.27), transparent 58%),
    radial-gradient(74% 145% at 72% 50%, rgba(96,165,250,0.2), transparent 58%),
    linear-gradient(110deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03) 48%, rgba(46,230,140,0.055) 72%, transparent),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.014));
  background-size: 138% 138%, 138% 138%, 100% 100%, 100% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(46,230,140,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 14px 34px rgba(0,0,0,0.22),
    0 10px 32px rgba(46,230,140,0.1),
    0 8px 28px rgba(96,165,250,0.08);
  opacity: 0.88;
  transform: translateZ(0);
  transform-origin: center;
  animation: brandAuroraField 7s ease-in-out infinite;
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.2rem 0.24rem;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0%, transparent 30%, rgba(255,255,255,0.18) 38%, rgba(125,211,252,0.14) 44%, transparent 56%, transparent 100%);
  background-size: 240% 100%;
  mix-blend-mode: screen;
  opacity: 0.46;
  animation: brandGlassSweep 6.4s ease-in-out infinite;
}

.brand-logo-img {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  max-width: 100%;
  transform-origin: center;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22));
  transition: transform 0.24s ease, filter 0.24s ease;
}

.brand-mark:hover .brand-logo-img {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.28));
}

.brand-mark:hover::before {
  opacity: 1;
  transform: translateZ(0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(46,230,140,0.12),
    0 16px 42px rgba(46,230,140,0.15),
    0 10px 34px rgba(96,165,250,0.12);
}

.brand-mark:hover::after {
  opacity: 0.72;
}

@keyframes brandAuroraField {
  0%, 100% {
    background-position: 0% 50%, 100% 50%, 15% 50%, 0 0;
    filter: saturate(0.95);
  }
  50% {
    background-position: 100% 46%, 0% 54%, 85% 50%, 0 0;
    filter: saturate(1.18);
  }
}

@keyframes brandGlassSweep {
  0%, 100% {
    background-position: 160% 0;
    opacity: 0.28;
  }
  42% {
    background-position: 18% 0;
    opacity: 0.62;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark::before,
  .brand-mark::after {
    animation: none;
  }
}

#main-header nav.hidden.xl\:flex {
  gap: 0;
}

#main-header nav.hidden.xl\:flex > * {
  position: relative;
}

#main-header nav.hidden.xl\:flex > *:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -0.18rem;
  top: 50%;
  width: 1px;
  height: 1.05rem;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.26), transparent);
}

#main-header nav.hidden.xl\:flex > a:last-child::before {
  opacity: 0.45;
}

#main-header .nav-link {
  border-radius: 999px;
  color: rgba(255,255,255,0.82) !important;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}

#main-header .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.08);
}

#main-header .header-whatsapp-btn {
  margin-left: clamp(0.75rem, 1vw, 1.1rem);
  transform: none !important;
  transition: box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease;
}

#main-header .header-whatsapp-btn:hover {
  filter: saturate(1.08) brightness(1.03);
}

@media (max-width: 767px) {
  #main-header img[alt="mikrove"] {
    max-height: 48px;
  }

  .brand-mark {
    width: auto;
    max-width: calc(100vw - 7.25rem);
    min-height: 3.55rem;
    padding: 0.18rem 0.86rem;
    margin-left: 0;
  }

  .brand-mark::before {
    inset: 0;
  }

  .brand-mark::after {
    inset: 0.16rem 0.2rem;
  }

  #mobile-menu nav a {
    font-size: 1rem;
    line-height: 1.25;
  }
}

.mobile-brand-mark {
  display: inline-flex;
}

#mobile-menu .mobile-brand-mark {
  width: auto;
  max-width: min(68vw, 17rem);
  min-height: auto;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

#mobile-menu .mobile-brand-mark::before,
#mobile-menu .mobile-brand-mark::after {
  content: none !important;
  display: none !important;
}

#mobile-menu .mobile-brand-mark .brand-logo-img {
  height: clamp(3.4rem, 14vw, 4.35rem);
  max-width: min(68vw, 17rem);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.34));
}

.mobile-menu-label {
  margin: 0.75rem 0 0.2rem;
  padding: 0 1.5rem;
  color: #8ff0bd;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-trust-actions {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.45rem;
}

.mobile-contact-card {
  position: relative;
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.95rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem !important;
  text-align: left !important;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

.mobile-contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #2ee68c, rgba(96,165,250,0.65), transparent);
}

.mobile-phone-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
}

.mobile-whatsapp-card {
  background: linear-gradient(135deg, rgba(34,197,94,0.24), rgba(4,120,87,0.18));
}

.mobile-page-card {
  background: linear-gradient(135deg, rgba(59,130,246,0.17), rgba(15,23,42,0.18));
}

.mobile-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: #2ee68c;
  font-size: 1.05rem;
}

.mobile-contact-copy {
  display: grid;
  gap: 0.12rem;
}

.mobile-contact-copy small {
  color: #9af2c1;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-contact-copy strong {
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.18;
}

.mobile-contact-copy em {
  color: rgba(226,232,240,0.76);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.35;
}

/* Refined digital sales system pages */
.sales-page {
  background: #080b10;
  color: #f8fafc;
}

.sales-page .container {
  max-width: 1180px;
}

.consulting-hero {
  position: relative;
  padding: clamp(7.5rem, 12vw, 10.5rem) 0 clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(4,10,20,0.94) 0%, rgba(8,20,25,0.94) 48%, rgba(6,12,18,0.98) 100%),
    url("images/banner/1banner.jpg") center / cover no-repeat;
}

.consulting-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.26), transparent);
}

.consulting-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(46,230,140,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,230,140,0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 34% 20%, #000 0%, transparent 62%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.hero-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #22c55e;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.15rem, 4.2vw, 4.05rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  max-width: 900px;
  margin-bottom: 1.35rem;
}

.hero-lead {
  color: #d7dee8;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.76;
  max-width: 760px;
  margin-bottom: 2rem;
}

.hero-actions,
.final-cta-box > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.primary-action,
.secondary-action,
.offer-card-rich a,
.pro-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.3rem;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-action,
.offer-card-rich a,
.pro-form button {
  background: #2ee68c;
  color: #04100a;
}

.secondary-action {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.primary-action:hover,
.secondary-action:hover,
.offer-card-rich a:hover,
.pro-form button:hover {
  transform: translateY(-1px);
}

.hero-assurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 760px;
  margin-top: 1.5rem;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3rem;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: #e5edf6;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-assurance i {
  color: #2ee68c;
}

.system-panel {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(7,12,18,0.82);
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
  backdrop-filter: blur(16px);
  padding: clamp(1.2rem, 2vw, 1.75rem);
  overflow: hidden;
}

.system-panel::before {
  content: "";
  display: block;
  height: 3px;
  margin: calc(clamp(1.2rem, 2vw, 1.75rem) * -1) calc(clamp(1.2rem, 2vw, 1.75rem) * -1) 1.2rem;
  background: linear-gradient(90deg, #2ee68c, rgba(96,165,250,0.74), transparent);
}

.panel-top {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.panel-top span {
  color: #8ee9bb;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.panel-top strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.signal-list {
  display: grid;
  gap: 0.75rem;
}

.signal-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  padding: 0.85rem;
}

.signal-row span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  margin-top: 0.4rem;
  background: #f59e0b;
}

.signal-row.good span {
  background: #22c55e;
}

.signal-row p {
  color: #dbe5ef;
  line-height: 1.55;
  margin: 0;
}

.panel-note {
  margin-top: 1rem;
  border-radius: 8px;
  background: #f8fafc;
  color: #0f172a;
  padding: 1rem;
}

.panel-note p {
  color: #334155;
  line-height: 1.6;
  margin-top: 0.35rem;
}

.proof-strip {
  background: #0c1118;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.09);
}

.proof-grid div {
  background: #0c1118;
  padding: 1rem;
}

.proof-grid strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.proof-grid span {
  color: #a9b6c7;
  font-size: 0.92rem;
}

.premium-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.warm-section {
  background: #d8dee8;
}

.dark-soft {
  background: linear-gradient(180deg, #090d13 0%, #05070a 100%);
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.section-intro {
  max-width: 680px;
}

.section-title {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.85rem, 3.1vw, 3.05rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 1.15rem;
}

.section-lead {
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.75;
}

.section-copy-block {
  display: grid;
  gap: 1rem;
  color: #334155;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.78;
}

.muted-copy {
  color: #c7d2df;
}

.center-intro {
  max-width: 860px;
  margin: 0 auto clamp(2rem, 5vw, 3.75rem);
  text-align: center;
}

.diagnostic-grid,
.deliverable-grid,
.trust-grid-rich,
.scenario-grid-rich {
  display: grid;
  gap: 1rem;
}

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

.diagnostic-card,
.deliverable-card,
.sector-grid-rich article,
.trust-grid-rich div,
.faq-list-rich details {
  border: 1px solid rgba(15,23,42,0.09);
  border-radius: 8px;
  background: #eef2f7;
  box-shadow: 0 16px 44px rgba(15,23,42,0.09);
}

.diagnostic-card,
.deliverable-card,
.offer-card-rich,
.process-grid-rich article,
.scenario-grid-rich article {
  position: relative;
  overflow: hidden;
}

.diagnostic-card::before,
.deliverable-card::before,
.offer-card-rich::before,
.process-grid-rich article::before,
.scenario-grid-rich article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(46,230,140,0.92), rgba(96,165,250,0.42), transparent);
  opacity: 0.75;
}

.diagnostic-card {
  padding: 1.35rem;
}

.diagnostic-card i,
.deliverable-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 8px;
  background: #e8fff3;
  color: #059669;
  margin-bottom: 0.95rem;
}

.diagnostic-card h3,
.deliverable-card h3,
.sector-grid-rich h3,
.process-grid-rich h3,
.scenario-grid-rich h3 {
  color: #0f172a;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 0.55rem;
}

.diagnostic-card p,
.deliverable-card p,
.sector-grid-rich p,
.scenario-grid-rich p {
  color: #475569;
  line-height: 1.68;
}

.compare-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
}

.compare-wide article,
.offer-card-rich,
.process-grid-rich article,
.scenario-grid-rich article {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 22px 64px rgba(0,0,0,0.22);
}

.compare-wide article {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.compare-wide .strong {
  border-color: rgba(46,230,140,0.48);
  background: rgba(46,230,140,0.12);
}

.compare-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #8ee9bb;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
}

.compare-wide ul,
.offer-card-rich ul {
  display: grid;
  gap: 0.75rem;
}

.compare-wide li,
.offer-card-rich li {
  position: relative;
  padding-left: 1.5rem;
  color: #d7dee8;
  line-height: 1.58;
}

.compare-wide li::before,
.offer-card-rich li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2ee68c;
}

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

.deliverable-card {
  padding: 1.35rem;
}

.deliverable-card small {
  display: block;
  margin-top: 1rem;
  color: #0f766e;
  font-weight: 800;
  line-height: 1.5;
}

.offer-grid-rich {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.offer-card-rich {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.35rem, 3vw, 2rem);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.offer-card-rich::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.offer-card-rich > * {
  position: relative;
  z-index: 1;
}

.offer-card-rich.featured {
  border-color: rgba(46,230,140,0.55);
  background:
    linear-gradient(135deg, rgba(46,230,140,0.19), rgba(94,234,212,0.08) 42%, rgba(255,255,255,0.045)),
    linear-gradient(180deg, rgba(46,230,140,0.18), rgba(255,255,255,0.06));
  box-shadow:
    0 26px 78px rgba(0,0,0,0.32),
    0 0 0 1px rgba(46,230,140,0.18),
    0 0 46px rgba(46,230,140,0.16);
}

.creative-service-page .packages-section .offer-card-rich.featured {
  border-color: rgba(46,230,140,0.55);
  background:
    linear-gradient(135deg, rgba(46,230,140,0.19), rgba(94,234,212,0.08) 42%, rgba(255,255,255,0.045)),
    linear-gradient(180deg, rgba(46,230,140,0.18), rgba(255,255,255,0.06));
}

.offer-card-rich.featured::before {
  height: 4px;
  background: linear-gradient(90deg, rgba(46,230,140,1), rgba(94,234,212,0.82), rgba(96,165,250,0.55));
  opacity: 1;
}

.offer-card-rich > span {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(46,230,140,0.14);
  color: #9af2c1;
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(46,230,140,0.2);
}

.offer-card-rich.featured > span {
  background: linear-gradient(135deg, rgba(46,230,140,0.26), rgba(94,234,212,0.18));
  color: #c8ffe3;
  box-shadow:
    inset 0 0 0 1px rgba(94,234,212,0.28),
    0 10px 24px rgba(46,230,140,0.12);
}

.offer-card-rich h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.offer-card-rich p {
  color: #c7d2df;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.offer-fit {
  display: grid;
  gap: 0.32rem;
  border-left: 3px solid rgba(46,230,140,0.82);
  background: rgba(255,255,255,0.055);
  color: #dce8f2;
  padding: 0.8rem 0.95rem;
  margin-bottom: 1.15rem;
}

.offer-fit strong {
  color: #9af2c1;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-fit span {
  color: #e5edf5;
  line-height: 1.5;
  font-size: 0.92rem;
}

.offer-card-rich ul {
  margin-bottom: clamp(1.35rem, 2.4vw, 2rem);
}

.offer-result {
  display: block;
  color: #a7f3d0;
  line-height: 1.55;
  font-weight: 800;
  margin-top: auto;
  margin-bottom: clamp(1.25rem, 2.2vw, 1.85rem);
}

.offer-card-rich a {
  width: 100%;
  margin-top: 0;
  box-shadow:
    0 14px 30px rgba(46,230,140,0.2),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.offer-card-rich:hover {
  transform: translateY(-5px);
  border-color: rgba(46,230,140,0.34);
  box-shadow: 0 30px 78px rgba(0,0,0,0.3);
}

.offer-card-rich.featured:hover {
  border-color: rgba(94,234,212,0.72);
  box-shadow:
    0 34px 88px rgba(0,0,0,0.36),
    0 0 0 1px rgba(94,234,212,0.22),
    0 0 58px rgba(46,230,140,0.22);
}

.packages-section .section-layout {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.packages-section .section-copy-block {
  border: 1px solid rgba(94,234,212,0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46,230,140,0.08), rgba(96,165,250,0.055)),
    rgba(255,255,255,0.045);
  box-shadow: 0 20px 58px rgba(0,0,0,0.2);
  padding: clamp(1.15rem, 2.2vw, 1.7rem);
}

.packages-section .section-copy-block p {
  color: #dce8f2;
}

.sector-grid-rich {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.sector-grid-rich article {
  padding: 1rem;
}

.sector-grid-rich h3 {
  font-size: 1rem;
}

.sector-grid-rich p {
  font-size: 0.92rem;
}

.process-grid-rich {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-grid-rich article {
  padding: 1.15rem;
}

.process-grid-rich span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: #2ee68c;
  color: #03110a;
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.process-grid-rich h3,
.scenario-grid-rich h3 {
  color: #fff;
}

.process-grid-rich p,
.scenario-grid-rich p {
  color: #c7d2df;
  line-height: 1.62;
  font-size: 0.95rem;
}

.analysis-section {
  background: #d7e3df;
}

.analysis-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: start;
}

.analysis-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.analysis-points div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 8px;
  background: #edf4f1;
  color: #0f172a;
  padding: 0.95rem;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(15,23,42,0.06);
}

.analysis-points i {
  color: #059669;
}

.pro-form {
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 8px;
  background: #eef2f7;
  box-shadow: 0 24px 64px rgba(15,23,42,0.12);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.pro-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.pro-form p {
  color: #526173;
  font-size: 0.82rem;
  line-height: 1.55;
}

.trust-grid-rich {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid-rich div {
  padding: 1rem;
  color: #0f172a;
  font-weight: 900;
}

.scenario-grid-rich {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-grid-rich article {
  padding: 1.2rem;
}

.sales-system-page .sales-system-hero {
  background:
    linear-gradient(115deg, rgba(4,10,20,0.96) 0%, rgba(7,18,22,0.94) 48%, rgba(5,8,12,0.98) 100%),
    url("images/banner/10banner.jpg") center / cover no-repeat;
}

.sales-system-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: center;
}

.sales-command-panel {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(5,10,15,0.84);
  box-shadow: 0 28px 70px rgba(0,0,0,0.38);
  padding: clamp(1.2rem, 2.2vw, 1.75rem);
  backdrop-filter: blur(18px);
}

.command-header {
  border-bottom: 1px solid rgba(255,255,255,0.11);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.command-header span {
  display: block;
  color: #8ff0bd;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.command-header strong {
  display: block;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.command-metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.055);
  padding: 0.9rem;
}

.command-metric + .command-metric {
  margin-top: 0.72rem;
}

.command-metric span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(46,230,140,0.14);
  color: #8ff0bd;
  font-size: 0.76rem;
  font-weight: 900;
}

.command-metric p {
  color: #d8e1eb;
  line-height: 1.58;
}

.barrier-grid,
.trust-reasons-grid,
.sales-stack-grid {
  display: grid;
  gap: 1rem;
}

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

.barrier-grid article,
.trust-reasons-grid article {
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 10px;
  background: #eef2f7;
  box-shadow: 0 16px 44px rgba(15,23,42,0.09);
  padding: 1.15rem;
}

.barrier-grid strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
  margin-bottom: 0.55rem;
}

.barrier-grid p,
.trust-reasons-grid p {
  color: #475569;
  line-height: 1.66;
}

.sprint-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.sprint-timeline article,
.sales-stack-grid article {
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  padding: 1.15rem;
  overflow: hidden;
}

.sprint-timeline article::before,
.sales-stack-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #2ee68c, rgba(96,165,250,0.5), transparent);
}

.sprint-timeline span,
.sales-stack-grid span {
  display: inline-flex;
  color: #8ff0bd;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.sprint-timeline h3,
.sales-stack-grid h3,
.trust-reasons-grid h3 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 0.55rem;
}

.sprint-timeline p,
.sales-stack-grid p {
  color: #c8d4e1;
  line-height: 1.62;
}

.trust-reasons-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-reasons-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: #e2f8ec;
  color: #059669;
  margin-bottom: 0.95rem;
}

.trust-reasons-grid h3 {
  color: #0f172a;
}

.sales-stack-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.light-card,
.sector-card,
.faq-item,
.analysis-benefit,
.trust-card {
  background: #eef2f7;
}

@media (max-width: 1023px) {
  .sales-system-hero-grid,
  .barrier-grid,
  .trust-reasons-grid,
  .sales-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 767px) {
  .sales-system-hero-grid,
  .barrier-grid,
  .trust-reasons-grid,
  .sales-stack-grid,
  .sprint-timeline {
    grid-template-columns: 1fr;
  }
}

.faq-list-rich {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list-rich details {
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.faq-list-rich details::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #2ee68c, #5eead4, #60a5fa);
  opacity: 0;
  transition: opacity 220ms ease;
}

.faq-list-rich details:hover,
.faq-list-rich details[open] {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.32);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.16);
}

.faq-list-rich details:hover::before,
.faq-list-rich details[open]::before {
  opacity: 1;
}

.faq-list-rich summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 4.4rem;
  padding: 1.15rem 4.45rem 1.15rem 1.35rem;
  cursor: pointer;
  list-style: none;
  color: #0f172a;
  font-weight: 900;
  line-height: 1.32;
  outline: none;
  transition: color 220ms ease;
}

.faq-list-rich summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, #2ee68c, #5eead4 52%, #60a5fa);
  box-shadow:
    0 10px 26px rgba(16, 185, 129, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transform: translateY(-50%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.faq-list-rich summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  color: #03140f;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-52%);
  transition: transform 220ms ease;
}

.faq-list-rich details[open] summary {
  color: #052e22;
}

.faq-list-rich details[open] summary::before {
  box-shadow:
    0 14px 32px rgba(16, 185, 129, 0.32),
    0 0 0 6px rgba(46, 230, 140, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.faq-list-rich details[open] summary::after {
  content: "-";
  transform: translateY(-52%) rotate(180deg);
}

.faq-list-rich summary:hover::before,
.faq-list-rich summary:focus-visible::before {
  transform: translateY(-50%) scale(1.07);
  box-shadow:
    0 16px 34px rgba(16, 185, 129, 0.34),
    0 0 0 7px rgba(46, 230, 140, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.faq-list-rich summary:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(16, 185, 129, 0.24);
}

.faq-list-rich summary::-webkit-details-marker {
  display: none;
}

.faq-list-rich p {
  color: #475569;
  line-height: 1.72;
  margin: 0;
  padding: 0 4.45rem 1.25rem 1.35rem;
}

@media (max-width: 767px) {
  .faq-list-rich summary {
    min-height: 4rem;
    padding: 1rem 3.75rem 1rem 1.05rem;
  }

  .faq-list-rich p {
    padding: 0 1.05rem 1.1rem;
  }

  .faq-list-rich summary::before,
  .faq-list-rich summary::after {
    right: 0.9rem;
    width: 2.1rem;
    height: 2.1rem;
  }
}

.final-cta {
  background: #05070a;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.final-cta-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-box h2 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.95rem, 3.5vw, 3.25rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 1rem;
}

.final-cta-box p {
  color: #c7d2df;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.final-cta-box > div {
  justify-content: center;
}

@media (max-width: 1023px) {
  .hero-grid,
  .section-layout,
  .analysis-layout {
    grid-template-columns: 1fr;
  }

  .system-panel {
    max-width: 720px;
  }

  .diagnostic-grid,
  .deliverable-grid,
  .offer-grid-rich,
  .trust-grid-rich,
  .scenario-grid-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .compare-wide,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Professional typography tuning */
html,
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
.font-display,
.hero-title,
.section-title,
.final-cta-box h2 {
  font-family: "Manrope", "Inter", system-ui, sans-serif !important;
  letter-spacing: -0.01em;
}

body,
p,
li,
a,
button,
input,
textarea {
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.hero-title {
  font-size: clamp(1.86rem, 2.85vw, 3.08rem) !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
  max-width: 680px;
}

.section-title {
  font-size: clamp(1.72rem, 2.65vw, 2.62rem) !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
}

.final-cta-box h2 {
  font-size: clamp(1.8rem, 2.9vw, 2.78rem) !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
}

.hero-lead,
.section-lead {
  font-size: clamp(1rem, 1.1vw, 1.13rem) !important;
  line-height: 1.78;
}

.section-copy-block {
  font-size: clamp(0.98rem, 1vw, 1.06rem) !important;
}

main h1.text-8xl,
main h1.text-7xl,
main h1.text-6xl,
main h1.text-5xl,
main h2.text-8xl,
main h2.text-7xl,
main h2.text-6xl,
main h2.text-5xl,
main h3.text-6xl,
main h3.text-5xl {
  font-size: clamp(1.76rem, 2.8vw, 2.78rem) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
}

main h2.text-4xl,
main h3.text-4xl {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem) !important;
  line-height: 1.16 !important;
}

@media (min-width: 768px) {
  main h1.md\:text-8xl,
  main h1.md\:text-7xl,
  main h1.md\:text-6xl,
  main h1.md\:text-5xl,
  main h2.md\:text-8xl,
  main h2.md\:text-7xl,
  main h2.md\:text-6xl,
  main h2.md\:text-5xl,
  main h3.md\:text-6xl,
  main h3.md\:text-5xl {
    font-size: clamp(1.9rem, 2.85vw, 2.9rem) !important;
    line-height: 1.1 !important;
  }

  main h2.md\:text-4xl,
  main h3.md\:text-4xl {
    font-size: clamp(1.8rem, 2.7vw, 2.45rem) !important;
    line-height: 1.15 !important;
  }
}

@media (min-width: 1024px) {
  main h1.lg\:text-8xl,
  main h1.lg\:text-7xl,
  main h1.lg\:text-6xl,
  main h2.lg\:text-7xl,
  main h2.lg\:text-6xl {
    font-size: clamp(2rem, 2.65vw, 3.05rem) !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(1.78rem, 6.8vw, 2.35rem) !important;
    line-height: 1.12 !important;
  }

  .section-title,
  .final-cta-box h2 {
    font-size: clamp(1.62rem, 6.5vw, 2.18rem) !important;
    line-height: 1.14 !important;
  }

  main h1.text-8xl,
  main h1.text-7xl,
  main h1.text-6xl,
  main h1.text-5xl,
  main h2.text-8xl,
  main h2.text-7xl,
  main h2.text-6xl,
  main h2.text-5xl {
    font-size: clamp(1.75rem, 7.2vw, 2.45rem) !important;
    line-height: 1.12 !important;
  }
}

@media (max-width: 767px) {
  .consulting-hero {
    padding: 7rem 0 3.5rem;
  }

  .hero-title {
    font-size: clamp(1.78rem, 6.8vw, 2.35rem);
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions a,
  .final-cta-box a {
    width: 100%;
  }

  .hero-assurance,
  .diagnostic-grid,
  .deliverable-grid,
  .offer-grid-rich,
  .sector-grid-rich,
  .process-grid-rich,
  .trust-grid-rich,
  .scenario-grid-rich,
  .compare-wide,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .premium-section,
  .final-cta {
    padding: 3.6rem 0;
  }

  .section-title {
    font-size: clamp(1.62rem, 6.5vw, 2.18rem);
    line-height: 1.06;
  }

  .center-intro {
    text-align: left;
  }

  .system-panel,
  .diagnostic-card,
  .deliverable-card,
  .offer-card-rich,
  .sector-grid-rich article,
  .process-grid-rich article,
  .scenario-grid-rich article,
  .faq-list-rich details,
  .pro-form {
    border-radius: 8px;
  }
}

/* Creative service-page skin */
.creative-service-page {
  --page-accent: #2ee68c;
  --page-accent-2: #60a5fa;
  --page-accent-3: #f59e0b;
  --page-accent-dark: #065f46;
  --page-accent-2-dark: #075985;
  --page-accent-3-dark: #92400e;
  --page-rgb: 46, 230, 140;
  --page-rgb-2: 96, 165, 250;
  --page-rgb-3: 245, 158, 11;
  background: linear-gradient(180deg, #05070a 0%, #071019 48%, #05070a 100%);
}

.home-orbit-page {
  --page-accent: #2ee68c;
  --page-accent-2: #60a5fa;
  --page-accent-3: #f43f5e;
  --page-accent-dark: #065f46;
  --page-accent-2-dark: #075985;
  --page-accent-3-dark: #9f1239;
  --page-rgb: 46, 230, 140;
  --page-rgb-2: 96, 165, 250;
  --page-rgb-3: 244, 63, 94;
}

.control-tower-page {
  --page-accent: #38bdf8;
  --page-accent-2: #818cf8;
  --page-accent-3: #f97316;
  --page-accent-dark: #0369a1;
  --page-accent-2-dark: #4338ca;
  --page-accent-3-dark: #c2410c;
  --page-rgb: 56, 189, 248;
  --page-rgb-2: 129, 140, 248;
  --page-rgb-3: 249, 115, 22;
}

.repair-lab-page {
  --page-accent: #f59e0b;
  --page-accent-2: #22d3ee;
  --page-accent-3: #fb7185;
  --page-accent-dark: #92400e;
  --page-accent-2-dark: #155e75;
  --page-accent-3-dark: #9f1239;
  --page-rgb: 245, 158, 11;
  --page-rgb-2: 34, 211, 238;
  --page-rgb-3: 251, 113, 133;
}

.conversation-lab-page {
  --page-accent: #22c55e;
  --page-accent-2: #a3e635;
  --page-accent-3: #38bdf8;
  --page-accent-dark: #166534;
  --page-accent-2-dark: #3f6212;
  --page-accent-3-dark: #075985;
  --page-rgb: 34, 197, 94;
  --page-rgb-2: 163, 230, 53;
  --page-rgb-3: 56, 189, 248;
}

.studio-lab-page {
  --page-accent: #a855f7;
  --page-accent-2: #ec4899;
  --page-accent-3: #22d3ee;
  --page-accent-dark: #6b21a8;
  --page-accent-2-dark: #9f1239;
  --page-accent-3-dark: #155e75;
  --page-rgb: 168, 85, 247;
  --page-rgb-2: 236, 72, 153;
  --page-rgb-3: 34, 211, 238;
}

.diagnosis-lab-page {
  --page-accent: #f59e0b;
  --page-accent-2: #14b8a6;
  --page-accent-3: #60a5fa;
  --page-accent-dark: #92400e;
  --page-accent-2-dark: #0f766e;
  --page-accent-3-dark: #2563eb;
  --page-rgb: 245, 158, 11;
  --page-rgb-2: 20, 184, 166;
  --page-rgb-3: 96, 165, 250;
}

.services-lab-page {
  --page-accent: #a78bfa;
  --page-accent-2: #fb7185;
  --page-accent-3: #facc15;
  --page-accent-dark: #6d28d9;
  --page-accent-2-dark: #be123c;
  --page-accent-3-dark: #a16207;
  --page-rgb: 167, 139, 250;
  --page-rgb-2: 251, 113, 133;
  --page-rgb-3: 250, 204, 21;
}

.contact-trust-page {
  --page-accent: #2ee68c;
  --page-accent-2: #f59e0b;
  --page-accent-3: #60a5fa;
  --page-accent-dark: #065f46;
  --page-accent-2-dark: #92400e;
  --page-accent-3-dark: #1d4ed8;
  --page-rgb: 46, 230, 140;
  --page-rgb-2: 245, 158, 11;
  --page-rgb-3: 96, 165, 250;
}

.policy-vault-page {
  --page-accent: #60a5fa;
  --page-accent-2: #2ee68c;
  --page-accent-3: #a78bfa;
  --page-accent-dark: #1d4ed8;
  --page-accent-2-dark: #065f46;
  --page-accent-3-dark: #6d28d9;
  --page-rgb: 96, 165, 250;
  --page-rgb-2: 46, 230, 140;
  --page-rgb-3: 167, 139, 250;
}

.creative-service-page .consulting-hero,
.creative-service-page .sales-system-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(var(--page-rgb), 0.2), transparent 29%),
    linear-gradient(245deg, rgba(var(--page-rgb-2), 0.18), transparent 36%),
    linear-gradient(180deg, #09111d 0%, #04070c 100%) !important;
}

.creative-service-page .consulting-hero::before,
.creative-service-page .sales-system-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 76px);
  mask-image: linear-gradient(180deg, black 0%, transparent 86%);
}

.creative-service-page .consulting-hero::after,
.creative-service-page .sales-system-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background:
    linear-gradient(130deg, transparent 0 18%, rgba(var(--page-rgb), 0.16) 18.2% 18.7%, transparent 19% 100%),
    linear-gradient(310deg, transparent 0 28%, rgba(var(--page-rgb-2), 0.14) 28.2% 28.8%, transparent 29% 100%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255,255,255,0.035) 22px 23px, transparent 23px 56px);
}

.creative-service-page .hero-eyebrow,
.creative-service-page .section-kicker {
  color: var(--page-accent);
  text-shadow: 0 0 18px rgba(var(--page-rgb), 0.24);
}

.creative-service-page .warm-section .section-kicker,
.creative-service-page .analysis-section .section-kicker {
  color: var(--page-accent-dark);
  text-shadow: none;
}

.creative-service-page .hero-title {
  text-wrap: balance;
}

.creative-service-page .hero-title::selection,
.creative-service-page .section-title::selection {
  background: var(--page-accent);
  color: #03110a;
}

.creative-service-page .primary-action,
.creative-service-page .pro-form button {
  color: #03110a;
  background: linear-gradient(135deg, var(--page-accent), var(--page-accent-2));
  box-shadow: 0 18px 48px rgba(var(--page-rgb), 0.22);
}

.creative-service-page .secondary-action {
  border-color: rgba(var(--page-rgb-2), 0.28);
  background: rgba(255,255,255,0.07);
}

.creative-service-page .primary-action:hover,
.creative-service-page .secondary-action:hover,
.creative-service-page .pro-form button:hover {
  filter: saturate(1.08) brightness(1.04);
  box-shadow: 0 22px 54px rgba(var(--page-rgb), 0.28);
}

.creative-service-page .system-panel,
.creative-service-page .sales-command-panel {
  position: relative;
  border-color: rgba(var(--page-rgb), 0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    linear-gradient(135deg, rgba(var(--page-rgb), 0.11), rgba(var(--page-rgb-2), 0.07));
  box-shadow:
    0 28px 80px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.creative-service-page .system-panel::before,
.creative-service-page .sales-command-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(var(--page-rgb), 0.18), transparent),
    repeating-linear-gradient(180deg, transparent 0 12px, rgba(255,255,255,0.035) 12px 13px);
  opacity: 0.45;
}

.creative-service-page .panel-top,
.creative-service-page .command-header {
  position: relative;
  z-index: 1;
  border-color: rgba(var(--page-rgb), 0.2);
}

.creative-service-page .panel-top span,
.creative-service-page .command-header span,
.creative-service-page .compare-label,
.creative-service-page .sprint-timeline span,
.creative-service-page .sales-stack-grid span {
  color: var(--page-accent);
}

.creative-service-page .signal-row,
.creative-service-page .command-metric {
  position: relative;
  z-index: 1;
  border-color: rgba(var(--page-rgb), 0.16);
  background: rgba(255,255,255,0.07);
}

.creative-service-page .signal-row.good span,
.creative-service-page .command-metric span,
.creative-service-page .process-grid-rich span {
  background: linear-gradient(135deg, var(--page-accent), var(--page-accent-2));
  color: #03110a;
}

.creative-service-page .warm-section {
  background:
    linear-gradient(115deg, rgba(var(--page-rgb), 0.12), transparent 31%),
    linear-gradient(245deg, rgba(var(--page-rgb-2), 0.11), transparent 38%),
    linear-gradient(180deg, #cfd6e0 0%, #c4ccd8 100%);
}

.creative-service-page .analysis-section {
  background:
    linear-gradient(120deg, rgba(var(--page-rgb), 0.14), transparent 32%),
    linear-gradient(250deg, rgba(var(--page-rgb-2), 0.12), transparent 42%),
    linear-gradient(180deg, #cbd6d5 0%, #c1ccd0 100%);
}

.creative-service-page .dark-soft,
.creative-service-page .final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(var(--page-rgb), 0.12), transparent 28%),
    linear-gradient(250deg, rgba(var(--page-rgb-3), 0.11), transparent 34%),
    linear-gradient(180deg, #060a10 0%, #030507 100%);
}

.creative-service-page .dark-soft::before,
.creative-service-page .final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background: repeating-linear-gradient(135deg, transparent 0 20px, rgba(255,255,255,0.045) 20px 21px, transparent 21px 54px);
}

.creative-service-page .dark-soft > .container,
.creative-service-page .final-cta > .container {
  position: relative;
  z-index: 1;
}

.creative-service-page .diagnostic-card,
.creative-service-page .deliverable-card,
.creative-service-page .sector-grid-rich article,
.creative-service-page .trust-grid-rich div,
.creative-service-page .trust-reasons-grid article,
.creative-service-page .faq-list-rich details,
.creative-service-page .analysis-benefit,
.creative-service-page .trust-card,
.creative-service-page .pro-form,
.creative-service-page .barrier-grid article {
  border-color: rgba(var(--page-rgb), 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.42)),
    linear-gradient(135deg, rgba(var(--page-rgb), 0.09), rgba(var(--page-rgb-2), 0.07)),
    #e9eef6;
  box-shadow: 0 18px 48px rgba(15,23,42,0.13);
}

.creative-service-page .faq-list-rich details:hover,
.creative-service-page .faq-list-rich details[open] {
  border-color: rgba(var(--page-rgb), 0.38);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.52)),
    linear-gradient(135deg, rgba(var(--page-rgb), 0.14), rgba(var(--page-rgb-2), 0.1)),
    #e9eef6;
  box-shadow: 0 24px 58px rgba(15,23,42,0.18);
}

.creative-service-page .diagnostic-card,
.creative-service-page .deliverable-card,
.creative-service-page .barrier-grid article,
.creative-service-page .trust-reasons-grid article,
.creative-service-page .scenario-grid-rich article,
.creative-service-page .process-grid-rich article,
.creative-service-page .sales-stack-grid article {
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.creative-service-page .diagnostic-card:hover,
.creative-service-page .deliverable-card:hover,
.creative-service-page .barrier-grid article:hover,
.creative-service-page .trust-reasons-grid article:hover,
.creative-service-page .scenario-grid-rich article:hover,
.creative-service-page .process-grid-rich article:hover,
.creative-service-page .sales-stack-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--page-rgb), 0.38);
  box-shadow: 0 24px 58px rgba(15,23,42,0.18);
}

.creative-service-page .diagnostic-card i,
.creative-service-page .deliverable-card i,
.creative-service-page .trust-reasons-grid i {
  color: var(--page-accent-dark);
  background: rgba(var(--page-rgb), 0.12);
  box-shadow: inset 0 0 0 1px rgba(var(--page-rgb), 0.16);
}

.creative-service-page .diagnostic-card:nth-child(3n+2) i,
.creative-service-page .deliverable-card:nth-child(3n+2) i {
  color: var(--page-accent-2-dark);
  background: rgba(var(--page-rgb-2), 0.12);
}

.creative-service-page .diagnostic-card:nth-child(3n) i,
.creative-service-page .deliverable-card:nth-child(3n) i {
  color: var(--page-accent-3-dark);
  background: rgba(var(--page-rgb-3), 0.12);
}

.creative-service-page .compare-wide .strong,
.creative-service-page .offer-card-rich.featured {
  border-color: rgba(var(--page-rgb), 0.5);
  background: linear-gradient(180deg, rgba(var(--page-rgb), 0.16), rgba(255,255,255,0.055));
}

.approach-section .section-layout {
  align-items: start;
}

.approach-section .section-copy-block {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94, 234, 212, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46, 230, 140, 0.09), rgba(96, 165, 250, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
  padding: clamp(1.35rem, 2.6vw, 2rem);
}

.approach-section .section-copy-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(46, 230, 140, 0.95), rgba(94, 234, 212, 0.6), transparent);
}

.approach-section .section-copy-block p {
  color: #dce8f2;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
}

.approach-section .compare-wide {
  margin-top: 1.2rem;
}

.approach-section .compare-wide article {
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.approach-section .compare-wide article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
}

.approach-section .compare-wide article:not(.strong) {
  border-color: rgba(251, 191, 36, 0.2);
  background:
    linear-gradient(180deg, rgba(251, 191, 36, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.approach-section .compare-wide article:not(.strong)::before {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.86), rgba(244, 114, 182, 0.42), transparent);
}

.approach-section .compare-wide .strong {
  border-color: rgba(46, 230, 140, 0.56);
  background:
    linear-gradient(135deg, rgba(46, 230, 140, 0.18), rgba(94, 234, 212, 0.07) 42%, rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(46, 230, 140, 0.18), rgba(255, 255, 255, 0.055));
}

.approach-section .compare-wide .strong::before {
  background: linear-gradient(90deg, rgba(46, 230, 140, 0.95), rgba(94, 234, 212, 0.65), transparent);
}

.approach-section .compare-wide article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.approach-section .compare-label {
  letter-spacing: 0.08em;
}

.approach-section .compare-wide article:not(.strong) .compare-label {
  color: #fcd34d;
}

.approach-section .compare-wide li {
  padding-left: 1.85rem;
}

.approach-section .compare-wide li::before {
  top: 0.38rem;
  width: 0.74rem;
  height: 0.74rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.035);
}

.approach-section .compare-wide article:not(.strong) li::before {
  background: #fbbf24;
}

.approach-section .compare-wide .strong li::before {
  background: #2ee68c;
  box-shadow: 0 0 0 5px rgba(46, 230, 140, 0.1), 0 0 18px rgba(46, 230, 140, 0.28);
}

.creative-service-page .proof-strip {
  background:
    linear-gradient(90deg, rgba(var(--page-rgb), 0.1), rgba(var(--page-rgb-2), 0.09)),
    #071019;
}

.creative-service-page .proof-grid div {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
}

.signature-strip {
  background:
    linear-gradient(90deg, rgba(var(--page-rgb), 0.12), rgba(var(--page-rgb-2), 0.08), rgba(var(--page-rgb-3), 0.1)),
    #05070a;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: clamp(1.2rem, 3vw, 2.2rem) 0;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.signature-card {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(5,7,10,0.64);
  padding: 1rem;
  box-shadow: 0 18px 46px rgba(0,0,0,0.22);
}

.signature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2), transparent);
}

.signature-card span {
  color: var(--page-accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-card strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.25;
  margin: 0.55rem 0 0.45rem;
}

.signature-card p {
  color: #cbd5e1;
  line-height: 1.58;
  font-size: 0.94rem;
}

#main-header .nav-link {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  transition: color 0.18s ease;
}

#main-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.38rem;
  height: 1px;
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(46,230,140,0.9), rgba(96,165,250,0.75), transparent);
  box-shadow: 0 0 14px rgba(46,230,140,0.22);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#main-header .nav-link:hover {
  color: #fff !important;
  border-color: transparent;
}

#main-header .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

#main-header nav.hidden.xl\:flex > *:not(:first-child)::before {
  opacity: 0.65;
}

.service-map-grid .diagnostic-card {
  display: flex;
  flex-direction: column;
}

.service-map-grid .diagnostic-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--page-accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.service-map-grid .diagnostic-card a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.78rem;
  transition: transform 0.2s ease;
}

.service-map-grid .diagnostic-card a:hover::after {
  transform: translateX(3px);
}

.services-process article {
  border-color: rgba(15,23,42,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.42)),
    #e8edf5;
  box-shadow: 0 18px 48px rgba(15,23,42,0.13);
}

.services-process h3,
.services-process p {
  color: #0f172a;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-choice-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(var(--page-rgb), 0.2);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.42)),
    linear-gradient(135deg, rgba(var(--page-rgb), 0.11), rgba(var(--page-rgb-2), 0.08)),
    #e8eef6;
  box-shadow: 0 20px 54px rgba(15,23,42,0.14);
  padding: clamp(1.25rem, 2.8vw, 1.8rem);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-choice-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2), transparent);
}

.contact-choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--page-rgb), 0.4);
  box-shadow: 0 26px 64px rgba(15,23,42,0.2);
}

.contact-choice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(var(--page-rgb), 0.12);
  color: var(--page-accent-dark);
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.contact-choice-card small {
  color: var(--page-accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-choice-card strong {
  color: #0f172a;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.18;
  margin-bottom: 0.75rem;
}

.contact-choice-card p {
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.contact-choice-card em {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  padding: 0.6rem 0.85rem;
}

.contact-choice-whatsapp {
  border-color: rgba(34,197,94,0.32);
}

.contact-choice-whatsapp .contact-choice-icon {
  background: rgba(34,197,94,0.13);
  color: #166534;
}

@media (max-width: 1023px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .contact-choice-grid {
    grid-template-columns: 1fr;
  }

  .bespoke-grid-2,
  .bespoke-grid-3,
  .bespoke-grid-4,
  .service-switchboard,
  .storyboard {
    grid-template-columns: 1fr;
  }

  .tower-radar {
    margin: 0;
    max-width: 520px;
  }
}

@media (max-width: 767px) {
  .creative-service-page .consulting-hero::after,
  .creative-service-page .sales-system-hero::after {
    opacity: 0.32;
  }

  .signature-card {
    min-height: auto;
  }

  .bespoke-hero {
    min-height: auto;
    padding-bottom: 3.8rem !important;
  }

  .bespoke-title {
    font-size: clamp(1.85rem, 8vw, 2.58rem);
  }

  .tower-node {
    position: relative;
    width: auto;
    inset: auto !important;
    margin: 0.7rem;
  }

  .tower-radar {
    aspect-ratio: auto;
    border-radius: 20px;
    padding: 0.3rem;
  }

  .tower-radar::before {
    display: none;
  }

  .repair-strip {
    grid-template-columns: 1fr;
  }
}

/* Header polish: remove image bleed and separate the navigation capsule */
#main-header {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#main-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  display: none;
  background: transparent;
}

#main-header > .container {
  position: relative;
  z-index: 1;
}

#main-header > .container > .frosted-glass {
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(14,18,24,0.96) 0%, rgba(7,10,15,0.94) 100%) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(255,255,255,0.035),
    0 18px 46px rgba(0,0,0,0.36);
}

#main-header > .container > .frosted-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 24%, rgba(255,255,255,0.035) 58%, transparent 86%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 54%);
  opacity: 0.58;
}

#main-header > .container > .frosted-glass > .flex {
  position: relative;
  z-index: 1;
}

.header-scroll #main-header,
#main-header.header-scroll {
  background: transparent;
}

.header-scroll #main-header > .container > .frosted-glass,
#main-header.header-scroll > .container > .frosted-glass {
  background: linear-gradient(180deg, rgba(9,13,18,0.99) 0%, rgba(4,7,11,0.97) 100%) !important;
  border-color: rgba(255,255,255,0.24) !important;
}

#main-header nav .group > div.absolute {
  z-index: 80;
}

#main-header nav .group > div.absolute .frosted-glass {
  background:
    linear-gradient(180deg, rgba(11,16,23,0.98), rgba(5,8,13,0.97)) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 22px 60px rgba(0,0,0,0.48);
}

.creative-service-page.site-page {
  padding-top: 0 !important;
}

.creative-service-page.site-page > section:first-of-type {
  padding-top: var(--site-header-space) !important;
}

/* Critical readability/layout correction for bespoke pages */
.bespoke-hero {
  min-height: auto !important;
  padding: calc(var(--site-header-space) + clamp(1.4rem, 3vw, 2.6rem)) 0 clamp(3.2rem, 6vw, 5.2rem) !important;
}

.bespoke-muted .bespoke-card,
.bespoke-muted .diagnostic-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72)),
    #edf2f8 !important;
  border-color: rgba(15,23,42,0.14) !important;
}

.bespoke-muted .bespoke-card h3,
.bespoke-muted .bespoke-card strong,
.bespoke-muted .diagnostic-card h3,
.bespoke-muted .diagnostic-card strong {
  color: #0f172a !important;
}

.bespoke-muted .bespoke-card p,
.bespoke-muted .diagnostic-card p {
  color: #334155 !important;
}

.bespoke-muted .bespoke-card a,
.bespoke-muted .diagnostic-card a {
  color: var(--page-accent-dark) !important;
}

.bespoke-grid-4 .bespoke-card,
.bespoke-grid-3 .bespoke-card {
  min-height: 100%;
}

/* Page identity overrides: keep similar service templates visually distinct */
.control-tower-page {
  background: linear-gradient(180deg, #030814 0%, #061629 48%, #030712 100%);
}

.control-tower-page .tower-stage {
  background:
    radial-gradient(circle at 72% 30%, rgba(129,140,248,0.28), transparent 34%),
    radial-gradient(circle at 22% 24%, rgba(56,189,248,0.26), transparent 31%),
    radial-gradient(circle at 58% 78%, rgba(249,115,22,0.14), transparent 32%),
    linear-gradient(135deg, #061426 0%, #08112e 48%, #030712 100%) !important;
}

.control-tower-page .tower-panel {
  border-color: rgba(56,189,248,0.36);
  background:
    linear-gradient(160deg, rgba(56,189,248,0.14), rgba(129,140,248,0.1)),
    rgba(5,12,28,0.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 30px 86px rgba(30,64,175,0.25);
}

.control-tower-page .tower-channel {
  border-color: rgba(129,140,248,0.24);
  background:
    linear-gradient(135deg, rgba(56,189,248,0.14), rgba(129,140,248,0.12)),
    rgba(255,255,255,0.045);
}

.control-tower-page .tower-channel i {
  background: rgba(56,189,248,0.16);
  color: #7dd3fc;
}

.control-tower-page .tower-channel:nth-child(4) i {
  background: rgba(249,115,22,0.15);
  color: #fdba74;
}

.control-tower-page .bespoke-muted {
  background:
    radial-gradient(circle at 12% 22%, rgba(56,189,248,0.22), transparent 30%),
    linear-gradient(135deg, #dbeafe 0%, #d8dcff 52%, #eef2ff 100%);
}

.control-tower-page .bespoke-dark,
.control-tower-page .final-cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(249,115,22,0.16), transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(56,189,248,0.16), transparent 28%),
    linear-gradient(135deg, #04111f 0%, #071032 56%, #030712 100%) !important;
}

.services-lab-page {
  background: linear-gradient(180deg, #0f0618 0%, #160b24 50%, #07050d 100%);
}

.services-lab-page .services-stage {
  background:
    radial-gradient(circle at 18% 24%, rgba(167,139,250,0.3), transparent 32%),
    radial-gradient(circle at 78% 30%, rgba(251,113,133,0.22), transparent 34%),
    radial-gradient(circle at 56% 80%, rgba(250,204,21,0.12), transparent 32%),
    linear-gradient(135deg, #170a25 0%, #20102f 48%, #07050d 100%) !important;
}

.services-lab-page .service-switchboard {
  border-color: rgba(251,113,133,0.24);
  background:
    linear-gradient(145deg, rgba(167,139,250,0.14), rgba(251,113,133,0.1)),
    rgba(12,8,20,0.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09), 0 32px 86px rgba(88,28,135,0.26);
}

.services-lab-page .switch-tile {
  border-color: rgba(167,139,250,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
    linear-gradient(135deg, rgba(167,139,250,0.12), rgba(251,113,133,0.08));
}

.services-lab-page .switch-tile:nth-child(2) span {
  background: rgba(251,113,133,0.16);
  color: #fda4af;
}

.services-lab-page .switch-tile:nth-child(3) span {
  background: rgba(250,204,21,0.16);
  color: #fde047;
}

.services-lab-page .switch-tile:nth-child(4) span {
  background: rgba(34,211,238,0.14);
  color: #67e8f9;
}

.services-lab-page .bespoke-muted {
  background:
    radial-gradient(circle at 86% 18%, rgba(251,113,133,0.18), transparent 31%),
    linear-gradient(135deg, #ede9fe 0%, #fce7f3 50%, #fff7ed 100%);
}

.services-lab-page .bespoke-dark {
  background:
    radial-gradient(circle at 20% 18%, rgba(167,139,250,0.19), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(251,113,133,0.15), transparent 30%),
    linear-gradient(135deg, #11071c 0%, #1d0d25 50%, #07050d 100%) !important;
}

.diagnosis-lab-page {
  background: linear-gradient(180deg, #140b04 0%, #10201e 52%, #050807 100%);
}

.diagnosis-lab-page .diagnosis-stage {
  background:
    radial-gradient(circle at 20% 22%, rgba(245,158,11,0.26), transparent 31%),
    radial-gradient(circle at 80% 34%, rgba(20,184,166,0.22), transparent 30%),
    radial-gradient(circle at 54% 82%, rgba(96,165,250,0.12), transparent 34%),
    linear-gradient(135deg, #1d1205 0%, #0d1f1c 50%, #050807 100%) !important;
}

.diagnosis-lab-page .diagnosis-card {
  border-color: rgba(245,158,11,0.28);
  background:
    linear-gradient(160deg, rgba(245,158,11,0.14), rgba(20,184,166,0.1)),
    rgba(12,10,6,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09), 0 30px 82px rgba(146,64,14,0.22);
}

.diagnosis-lab-page .diagnosis-line {
  border-color: rgba(245,158,11,0.18);
}

.diagnosis-lab-page .diagnosis-line span {
  color: #fcd34d;
}

.diagnosis-lab-page .diagnosis-line strong {
  color: #99f6e4;
}

.diagnosis-lab-page .bespoke-muted {
  background:
    radial-gradient(circle at 16% 18%, rgba(245,158,11,0.2), transparent 30%),
    radial-gradient(circle at 88% 28%, rgba(20,184,166,0.16), transparent 32%),
    linear-gradient(135deg, #fffbeb 0%, #ccfbf1 58%, #dbeafe 100%);
}

.control-tower-page .bespoke-muted .bespoke-card,
.services-lab-page .bespoke-muted .bespoke-card,
.services-lab-page .bespoke-muted .diagnostic-card,
.diagnosis-lab-page .pro-form {
  border-color: rgba(var(--page-rgb), 0.22) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.72)),
    linear-gradient(135deg, rgba(var(--page-rgb),0.12), rgba(var(--page-rgb-2),0.09)),
    #f8fafc !important;
}

/* Final mobile layout guard: later bespoke rules must not re-split narrow screens */
.bespoke-grid-2 > *,
.bespoke-grid-3 > *,
.bespoke-grid-4 > *,
.service-switchboard > *,
.storyboard > *,
.repair-strip > * {
  min-width: 0;
}

@media (max-width: 1023px) {
  .bespoke-grid-2,
  .bespoke-grid-3,
  .bespoke-grid-4,
  .service-switchboard,
  .storyboard,
  .repair-strip {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .tower-panel,
  .tower-radar {
    width: 100%;
    max-width: 520px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .site-page h1,
  body > section:first-of-type h1 {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .bespoke-title,
  .hero-title,
  .section-title {
    max-width: 100%;
    text-wrap: balance;
  }

  .bespoke-kicker,
  .hero-eyebrow,
  .section-kicker,
  .site-page .tracking-\[0\.2em\],
  .site-page .tracking-widest {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.45;
    letter-spacing: 0.08em !important;
  }

  .bespoke-actions,
  .hero-actions {
    width: 100%;
  }
}

/* Digital sales system hero panel refinement */
.tower-panel {
  width: min(100%, 460px);
  margin-left: auto;
  border: 1px solid rgba(46,230,140,0.24);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(5,10,15,0.76);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    0 28px 80px rgba(0,0,0,0.34);
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
}

.tower-panel-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.tower-panel-header span {
  display: block;
  color: var(--page-accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.tower-panel-header strong {
  display: block;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.tower-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.tower-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.4rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(46,230,140,0.11), rgba(56,189,248,0.07)),
    rgba(255,255,255,0.055);
  color: #fff;
  padding: 0.9rem;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.tower-channel i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: rgba(46,230,140,0.14);
  color: var(--page-accent);
}

.tower-channel span {
  color: #f8fafc;
  font-weight: 850;
  line-height: 1.25;
}

@media (max-width: 1023px) {
  .tower-panel {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .tower-channel-grid {
    grid-template-columns: 1fr;
  }
}

/* Bespoke page systems: distinct layouts without glitch/noise effects */
.creative-service-page .consulting-hero::before,
.creative-service-page .sales-system-hero::before,
.creative-service-page .consulting-hero::after,
.creative-service-page .sales-system-hero::after {
  display: none !important;
}

.bespoke-hero {
  position: relative;
  min-height: min(820px, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--site-header-space) + clamp(2rem, 5vw, 4rem)) 0 clamp(4rem, 8vw, 7rem) !important;
}

.bespoke-hero .container,
.bespoke-section .container {
  position: relative;
  z-index: 1;
}

.bespoke-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--page-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bespoke-title {
  max-width: 900px;
  color: #fff;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4.2vw, 4.35rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.bespoke-lead {
  max-width: 760px;
  color: #d8e2ef;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.78;
  margin-bottom: 1.8rem;
}

.bespoke-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.bespoke-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.bespoke-dark {
  background: #05070a;
}

.bespoke-muted {
  background: #c8d0dc;
  color: #0f172a;
}

.bespoke-muted .bespoke-kicker {
  color: var(--page-accent-dark);
}

.bespoke-muted .bespoke-title,
.bespoke-muted h2,
.bespoke-muted h3,
.bespoke-muted strong {
  color: #0f172a;
}

.bespoke-muted p {
  color: #3f4f62;
}

.bespoke-intro {
  max-width: 840px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bespoke-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.bespoke-grid-3,
.bespoke-grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

.bespoke-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: 0 24px 64px rgba(0,0,0,0.24);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
}

.bespoke-muted .bespoke-card {
  border-color: rgba(15,23,42,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.35)),
    #e5ebf3;
  box-shadow: 0 18px 48px rgba(15,23,42,0.13);
}

.bespoke-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2), transparent);
}

.bespoke-card h3 {
  color: #fff;
  font-weight: 850;
  margin-bottom: 0.55rem;
}

.bespoke-card p {
  color: #cbd5e1;
  line-height: 1.64;
}

.bespoke-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--page-accent);
  font-weight: 900;
  text-decoration: none;
}

.services-stage {
  background:
    radial-gradient(circle at 18% 20%, rgba(56,189,248,0.2), transparent 30%),
    radial-gradient(circle at 76% 28%, rgba(46,230,140,0.14), transparent 34%),
    linear-gradient(135deg, #05101b 0%, #070a10 48%, #07131a 100%) !important;
}

.service-switchboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  box-shadow: 0 34px 90px rgba(0,0,0,0.36);
}

.switch-tile {
  min-height: 132px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.04);
  padding: 1rem;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.switch-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--page-rgb),0.44);
}

.switch-tile span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(var(--page-rgb),0.14);
  color: var(--page-accent);
  margin-bottom: 0.8rem;
}

.switch-tile strong {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}

.switch-tile small {
  color: #b8c5d6;
  line-height: 1.5;
}

.tower-stage {
  background:
    radial-gradient(circle at 70% 34%, rgba(34,197,94,0.18), transparent 32%),
    radial-gradient(circle at 28% 18%, rgba(56,189,248,0.16), transparent 28%),
    linear-gradient(135deg, #06120d 0%, #06101b 46%, #04070a 100%) !important;
}

.tower-radar {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid rgba(46,230,140,0.28);
  background:
    radial-gradient(circle, transparent 0 24%, rgba(46,230,140,0.08) 24.5% 25.5%, transparent 26% 48%, rgba(56,189,248,0.08) 48.5% 49.5%, transparent 50%),
    rgba(255,255,255,0.035);
  box-shadow: inset 0 0 50px rgba(46,230,140,0.08), 0 30px 80px rgba(0,0,0,0.34);
}

.tower-radar::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(46,230,140,0.36), transparent 22%, transparent 100%);
  animation: radarSweep 8s linear infinite;
}

.tower-node {
  position: absolute;
  width: 9rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(4,8,12,0.88);
  color: #e5edf6;
  padding: 0.75rem;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0,0,0,0.26);
}

.tower-node:nth-child(1) { left: 8%; top: 18%; }
.tower-node:nth-child(2) { right: 2%; top: 28%; }
.tower-node:nth-child(3) { left: 18%; bottom: 10%; }
.tower-node:nth-child(4) { right: 12%; bottom: 18%; }

.repair-stage {
  background:
    radial-gradient(circle at 20% 26%, rgba(245,158,11,0.18), transparent 30%),
    radial-gradient(circle at 82% 36%, rgba(34,211,238,0.14), transparent 34%),
    linear-gradient(135deg, #151008 0%, #070b11 50%, #05070a 100%) !important;
}

.repair-board {
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgba(245,158,11,0.24);
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  padding: 1rem;
}

.repair-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0.8rem;
  align-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  padding: 0.95rem;
}

.repair-strip span {
  color: var(--page-accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.repair-strip strong {
  color: #fff;
}

.conversation-stage {
  background:
    radial-gradient(circle at 76% 20%, rgba(34,197,94,0.2), transparent 31%),
    radial-gradient(circle at 20% 40%, rgba(163,230,53,0.12), transparent 30%),
    linear-gradient(135deg, #03140b 0%, #071016 52%, #05070a 100%) !important;
}

.chat-window {
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 24px;
  background: rgba(4,10,8,0.76);
  padding: 1rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
}

.chat-bubble {
  max-width: 88%;
  margin: 0.7rem 0;
  border-radius: 18px;
  padding: 0.9rem 1rem;
  color: #e8f7ee;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.1);
}

.chat-bubble.reply {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(56,189,248,0.16));
  border-color: rgba(34,197,94,0.24);
}

.studio-stage {
  background:
    radial-gradient(circle at 26% 25%, rgba(168,85,247,0.22), transparent 31%),
    radial-gradient(circle at 78% 38%, rgba(236,72,153,0.16), transparent 34%),
    linear-gradient(135deg, #11071c 0%, #080b16 52%, #05070a 100%) !important;
}

.storyboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.story-frame {
  min-height: 150px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(168,85,247,0.18), rgba(236,72,153,0.12)),
    rgba(255,255,255,0.045);
  padding: 1rem;
  box-shadow: 0 20px 48px rgba(0,0,0,0.24);
}

.story-frame small {
  color: var(--page-accent);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-frame strong {
  display: block;
  color: #fff;
  margin-top: 0.7rem;
  font-size: 1.15rem;
}

.diagnosis-stage {
  background:
    radial-gradient(circle at 22% 20%, rgba(20,184,166,0.2), transparent 30%),
    radial-gradient(circle at 80% 34%, rgba(245,158,11,0.13), transparent 30%),
    linear-gradient(135deg, #061412 0%, #071018 48%, #05070a 100%) !important;
}

.diagnosis-card {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: rgba(255,255,255,0.065);
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.diagnosis-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.9rem 0;
  color: #dbe7ef;
}

.diagnosis-line strong {
  color: #fff;
}

.contact-stage {
  min-height: auto;
  background:
    radial-gradient(circle at 25% 22%, rgba(46,230,140,0.18), transparent 30%),
    radial-gradient(circle at 75% 28%, rgba(245,158,11,0.12), transparent 32%),
    linear-gradient(135deg, #06100c 0%, #071017 52%, #05070a 100%) !important;
}

.contact-minimal-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: rgba(255,255,255,0.065);
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

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

@media (prefers-reduced-motion: reduce) {
  .tower-radar::before {
    animation: none;
  }
}

/* Final overrides: keep bespoke service cards readable and compact */
.bespoke-hero {
  min-height: auto !important;
  padding: calc(var(--site-header-space) + clamp(1.4rem, 3vw, 2.6rem)) 0 clamp(3.2rem, 6vw, 5.2rem) !important;
}

.bespoke-muted .bespoke-card,
.bespoke-muted .diagnostic-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.74)),
    #edf2f8 !important;
  border-color: rgba(15,23,42,0.14) !important;
  box-shadow: 0 18px 48px rgba(15,23,42,0.14) !important;
}

.bespoke-muted .bespoke-card h3,
.bespoke-muted .bespoke-card strong,
.bespoke-muted .diagnostic-card h3,
.bespoke-muted .diagnostic-card strong {
  color: #0f172a !important;
}

.bespoke-muted .bespoke-card p,
.bespoke-muted .diagnostic-card p {
  color: #334155 !important;
}

.bespoke-muted .bespoke-card a,
.bespoke-muted .diagnostic-card a {
  color: var(--page-accent-dark) !important;
}

.bespoke-grid-4 .bespoke-card,
.bespoke-grid-3 .bespoke-card {
  min-height: 100%;
}

