/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONSULTORA PATAGONIA â€” CSS Design System
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ 1. CSS Variables â”€â”€ */
:root {
  --glacier-deep: #003A6B;
  --glacier-blue: #0077C2;
  --glacier-teal: #00BCD4;
  --glacier-cyan: #4DD9EC;
  --ice-white: #E8F4F8;
  --dark-base: #04080F;
  --dark-secondary: #081425;
  --muted-gray: #8BA3B5;
  --glow-accent: #00E5FF;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* â”€â”€ 2. Reset & Base â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-base);
  color: var(--ice-white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--font-body);
  cursor: none;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
}

/* â”€â”€ 3. Custom Cursor â”€â”€ */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--glacier-teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: screen;
}

.cursor-trail {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 188, 212, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s, opacity 0.3s;
}

body.cursor-hover .cursor {
  width: 20px;
  height: 20px;
  background: var(--glow-accent);
}

body.cursor-hover .cursor-trail {
  width: 52px;
  height: 52px;
  border-color: var(--glow-accent);
  opacity: 0.6;
}

/* â”€â”€ 4. Animated Background â”€â”€ */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.bg-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--glacier-deep) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glacier-blue) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orbDrift2 14s ease-in-out infinite alternate;
}

.bg-orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glacier-teal) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: orbPulse 10s ease-in-out infinite;
  opacity: 0.18;
}

@keyframes orbDrift1 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(80px, -60px);
  }
}

@keyframes orbDrift2 {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-60px, 80px);
  }
}

@keyframes orbPulse {

  0%,
  100% {
    opacity: 0.18;
    transform: scale(1);
  }

  50% {
    opacity: 0.28;
    transform: scale(1.1);
  }
}

.ice-cracks {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.crack {
  animation: crackFade 8s ease-in-out infinite;
}

.crack-1 {
  animation-delay: 0s;
}

.crack-2 {
  animation-delay: 1.5s;
}

.crack-3 {
  animation-delay: 3s;
}

.crack-4 {
  animation-delay: 4.5s;
}

.crack-5 {
  animation-delay: 6s;
}

.crack-6 {
  animation-delay: 2s;
}

@keyframes crackFade {

  0%,
  100% {
    opacity: 0;
  }

  40%,
  60% {
    opacity: 1;
  }
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* â”€â”€ 5. Loader â”€â”€ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark-base);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.18, 1);
  clip-path: inset(0 0 0 0);
}

.loader.hide {
  clip-path: inset(100% 0 0 0);
}

.loader-bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.loader-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--glacier-deep) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  opacity: 0.5;
  animation: orbDrift1 12s ease-in-out infinite alternate;
}

.loader-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glacier-teal) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  opacity: 0.3;
  animation: orbDrift2 10s ease-in-out infinite alternate;
}

.loader-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  opacity: 0;
  animation: loaderLogoIn 0.6s ease 0.3s forwards;
}

.logo-diamond {
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
}

.diamond-top,
.diamond-bottom {
  animation: diamondAssemble 0.8s ease 0.2s both;
}

@keyframes diamondAssemble {
  from {
    opacity: 0;
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderLogoIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--ice-white);
  min-height: 2rem;
  text-align: center;
}

.loader-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted-gray);
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity 0.6s ease;
  text-align: center;
}

.loader-tagline.visible {
  opacity: 1;
}

.loader-progress-wrap {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--glacier-deep), var(--glow-accent));
  border-radius: 2px;
  transition: width 2.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â”€â”€ 6. Navbar â”€â”€ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(4, 8, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 188, 212, 0.1);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(4, 8, 15, 0.92);
  border-bottom-color: rgba(0, 188, 212, 0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  flex-shrink: 0;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-consultora {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--muted-gray);
}

.nav-patagonia {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ice-white);
}

.nav-wordmark.muted .nav-consultora,
.nav-wordmark.muted .nav-patagonia {
  color: var(--muted-gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-gray);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--glacier-teal);
  border-radius: 2px;
  transition: width var(--transition-fast);
  box-shadow: 0 0 8px var(--glacier-teal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ice-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--glacier-teal);
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--glacier-blue);
  border-radius: 50px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  box-shadow: 0 0 0 rgba(0, 188, 212, 0);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--glacier-blue), var(--glacier-teal));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ice-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 15, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ice-white);
  transition: color var(--transition-fast);
  letter-spacing: 0.05em;
}

.mobile-nav-link:hover {
  color: var(--glacier-teal);
}

.mobile-nav-link.cta {
  font-size: 1.2rem;
  color: var(--glacier-teal);
  border: 1.5px solid var(--glacier-teal);
  padding: 0.75rem 2rem;
  border-radius: 50px;
}

/* â”€â”€ 7. Section Utilities â”€â”€ */
section {
  position: relative;
  z-index: 1;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--glacier-teal);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.15;
  color: var(--ice-white);
}

.gradient-text {
  background: linear-gradient(135deg, var(--glacier-blue), var(--glacier-teal), var(--glacier-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* â”€â”€ 8. Buttons â”€â”€ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--glacier-blue), var(--glacier-teal));
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 24px rgba(0, 119, 194, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.5);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--glacier-teal);
  background: transparent;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--glacier-teal);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(0, 188, 212, 0.1);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
  transform: translateY(-3px);
}

/* â”€â”€ 9. Glassmorphism Card Base â”€â”€ */
.glass-card {
  background: rgba(8, 20, 37, 0.6);
  border: 1px solid rgba(0, 188, 212, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.glass-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 8px 40px rgba(0, 188, 212, 0.15);
  transform: translateY(-4px);
}

/* â”€â”€ 10. Scroll Animations â”€â”€ */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
}

.animate-in.visible {
  animation: slideUp 0.7s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â”€â”€ 11. Hero â”€â”€ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  padding-top: 72px;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--glacier-teal);
  background: rgba(0, 188, 212, 0.08);
  border: 1px solid rgba(0, 188, 212, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  width: fit-content;
}

.badge-dot {
  display: none;
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--ice-white);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted-gray);
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Web Builder Animation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wb-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
}

.wb-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 60% 50%, rgba(0, 119, 194, 0.25) 0%, transparent 70%);
  border-radius: 20px;
  pointer-events: none;
  filter: blur(20px);
  animation: wbGlowPulse 6s ease-in-out infinite;
}

@keyframes wbGlowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.wb-browser {
  position: relative;
  background: #040c18;
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 61, 107, 0.6), 0 0 0 1px rgba(0, 188, 212, 0.1);
}

/* Progress bar at very top */
.wb-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 3;
}

.wb-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0077C2, #00BCD4);
  box-shadow: 0 0 8px rgba(0, 188, 212, 0.6);
  animation: wbProgressLoop 6s linear infinite;
}

@keyframes wbProgressLoop {
  0% { width: 0%; }
  92% { width: 100%; }
  100% { width: 100%; opacity: 0; }
}

/* Browser bar */
.wb-bar {
  background: rgba(4, 8, 15, 0.9);
  padding: 0.55rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

.wb-dots {
  display: flex;
  gap: 5px;
}

.wb-dot-r, .wb-dot-y, .wb-dot-g {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.wb-dot-r { background: #ff5f57; }
.wb-dot-y { background: #ffbd2e; }
.wb-dot-g { background: #28ca42; }

.wb-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 22px;
  display: flex;
  align-items: center;
}

.wb-cursor-blink {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #00BCD4;
  animation: wbBlink 0.8s steps(1) infinite;
}

@keyframes wbBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Browser screen */
.wb-screen {
  position: relative;
  height: 300px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  animation: wbScreenFade 6s ease infinite;
}

@keyframes wbScreenFade {
  0%, 90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

/* Build cursor that moves around */
.wb-build-cursor {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00BCD4;
  border-radius: 50%;
  box-shadow: 0 0 10px #00BCD4, 0 0 20px rgba(0, 188, 212, 0.4);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  animation: wbCursorMove 6s ease-in-out infinite;
}

@keyframes wbCursorMove {
  0%     { top: 6px;   left: 10px;  opacity: 0; }
  5%     { top: 6px;   left: 10px;  opacity: 1; }
  15%    { top: 6px;   left: 100px; opacity: 1; }
  20%    { top: 35px;  left: 60px;  opacity: 1; }
  30%    { top: 55px;  left: 120px; opacity: 1; }
  40%    { top: 100px; left: 80px;  opacity: 1; }
  55%    { top: 155px; left: 150px; opacity: 1; }
  65%    { top: 195px; left: 60px;  opacity: 1; }
  75%    { top: 240px; left: 130px; opacity: 1; }
  85%    { top: 270px; left: 80px;  opacity: 1; }
  92%    { top: 290px; left: 200px; opacity: 0.5; }
  95%    { opacity: 0; }
  100%   { top: 6px;   left: 10px;  opacity: 0; }
}

/* ══ Step 2: Navbar ══ */
.wb-navbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  opacity: 0;
  animation: wbNavAppear 6s ease infinite;
}

@keyframes wbNavAppear {
  0%, 12% { opacity: 0; transform: translateX(-10px); }
  18% { opacity: 1; transform: translateX(0); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-nav-logo {
  width: 16px;
  height: 10px;
  background: #00BCD4;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0;
  animation: wbNavLogoIn 6s ease infinite;
}

@keyframes wbNavLogoIn {
  0%, 12% { opacity: 0; transform: scale(0.5); }
  16% { opacity: 1; transform: scale(1); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}

.wb-nav-link {
  height: 4px;
  width: 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  opacity: 0;
  animation: wbNavLinkIn 6s ease infinite;
}

.wb-nl-1 { animation-delay: 0s; }
.wb-nl-2 { animation-delay: 0s; }
.wb-nl-3 { animation-delay: 0s; }
.wb-nl-4 { animation-delay: 0s; }

@keyframes wbNavLinkIn {
  0%, 14% { opacity: 0; transform: scaleX(0); transform-origin: left; }
  20% { opacity: 1; transform: scaleX(1); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-nl-1 { --d: 0.14; }
.wb-nl-2 { --d: 0.15; }
.wb-nl-3 { --d: 0.16; }
.wb-nl-4 { --d: 0.17; }

.wb-nav-btn {
  width: 24px;
  height: 8px;
  background: linear-gradient(135deg, #0077C2, #00BCD4);
  border-radius: 10px;
  flex-shrink: 0;
  opacity: 0;
  animation: wbNavBtnIn 6s ease infinite;
}

@keyframes wbNavBtnIn {
  0%, 18% { opacity: 0; transform: scale(0.5); }
  24% { opacity: 1; transform: scale(1); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

/* ══ Step 3: Hero Section ══ */
.wb-hero-section {
  display: flex;
  gap: 8px;
  padding: 8px;
  opacity: 0;
  animation: wbHeroAppear 6s ease infinite;
}

@keyframes wbHeroAppear {
  0%, 24% { opacity: 0; transform: translateY(6px); }
  30% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wb-hero-headline {
  height: 10px;
  width: 0%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  animation: wbHeadlineGrow 6s ease infinite;
}

@keyframes wbHeadlineGrow {
  0%, 25% { width: 0%; opacity: 0; }
  35% { width: 100%; opacity: 1; }
  90% { width: 100%; opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-hero-sub1 {
  height: 5px;
  width: 0%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  animation: wbSub1Grow 6s ease infinite;
}

@keyframes wbSub1Grow {
  0%, 28% { width: 0%; opacity: 0; }
  36% { width: 80%; opacity: 1; }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-hero-sub2 {
  height: 5px;
  width: 0%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  animation: wbSub2Grow 6s ease infinite;
}

@keyframes wbSub2Grow {
  0%, 30% { width: 0%; opacity: 0; }
  38% { width: 55%; opacity: 1; }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-hero-btns {
  display: flex;
  gap: 5px;
  margin-top: 3px;
}

.wb-hero-btn1 {
  width: 36px;
  height: 9px;
  background: linear-gradient(135deg, #0077C2, #00BCD4);
  border-radius: 10px;
  opacity: 0;
  animation: wbBtn1In 6s ease infinite;
}

@keyframes wbBtn1In {
  0%, 32% { opacity: 0; transform: scale(0.6); }
  38% { opacity: 1; transform: scale(1); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-hero-btn2 {
  width: 36px;
  height: 9px;
  border: 1px solid rgba(0, 188, 212, 0.4);
  border-radius: 10px;
  opacity: 0;
  animation: wbBtn2In 6s ease infinite;
}

@keyframes wbBtn2In {
  0%, 34% { opacity: 0; transform: scale(0.6); }
  40% { opacity: 1; transform: scale(1); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-hero-img {
  width: 60px;
  height: 55px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  flex-shrink: 0;
  opacity: 0;
  animation: wbHeroImgIn 6s ease infinite;
}

@keyframes wbHeroImgIn {
  0%, 30% { opacity: 0; transform: scale(0.7); }
  38% { opacity: 1; transform: scale(1); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

/* ══ Step 4: Cards ══ */
.wb-cards-section {
  display: flex;
  gap: 5px;
  padding: 0 8px;
  opacity: 0;
  animation: wbCardsAppear 6s ease infinite;
}

@keyframes wbCardsAppear {
  0%, 40% { opacity: 0; }
  46% { opacity: 1; }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 188, 212, 0.15);
  border-radius: 6px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
}

.wb-card-1 { animation: wbCardSlide 6s ease infinite; animation-delay: 0s; }
.wb-card-2 { animation: wbCardSlide 6s ease infinite; animation-delay: 0.15s; }
.wb-card-3 { animation: wbCardSlide 6s ease infinite; animation-delay: 0.3s; }

@keyframes wbCardSlide {
  0%, 41% { opacity: 0; transform: translateY(8px); }
  48% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-card-icon {
  width: 12px;
  height: 12px;
  background: rgba(0, 188, 212, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 188, 212, 0.2);
}

.wb-card-line1 {
  width: 80%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.wb-card-line2 {
  width: 60%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
}

/* ══ Step 5: Stats ══ */
.wb-stats-section {
  display: flex;
  gap: 6px;
  padding: 4px 8px;
  opacity: 0;
  animation: wbStatsAppear 6s ease infinite;
}

@keyframes wbStatsAppear {
  0%, 55% { opacity: 0; }
  62% { opacity: 1; }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  opacity: 0;
}

.wb-stat-1 { animation: wbStatIn 6s ease infinite; }
.wb-stat-2 { animation: wbStatIn 6s ease infinite; animation-delay: 0.1s; }
.wb-stat-3 { animation: wbStatIn 6s ease infinite; animation-delay: 0.2s; }
.wb-stat-4 { animation: wbStatIn 6s ease infinite; animation-delay: 0.3s; }

@keyframes wbStatIn {
  0%, 56% { opacity: 0; transform: scale(0.7); }
  64% { opacity: 1; transform: scale(1); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-stat-num {
  width: 20px;
  height: 8px;
  background: linear-gradient(135deg, #0077C2, #00BCD4);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0, 188, 212, 0.3);
}

.wb-stat-label {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}

/* ══ Step 6: Footer ══ */
.wb-footer-section {
  padding: 0 8px;
  opacity: 0;
  animation: wbFooterAppear 6s ease infinite;
}

@keyframes wbFooterAppear {
  0%, 70% { opacity: 0; transform: translateY(8px); }
  78% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  95% { opacity: 0; }
  100% { opacity: 0; }
}

.wb-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.2), transparent);
  margin-bottom: 5px;
}

.wb-footer-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.wb-footer-logo {
  width: 14px;
  height: 8px;
  background: rgba(0, 188, 212, 0.3);
  border-radius: 2px;
  flex-shrink: 0;
}

.wb-footer-cols {
  display: flex;
  gap: 8px;
  flex: 1;
}

.wb-footer-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.wb-fc-line {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
  width: 80%;
}

.wb-fc-line:nth-child(2) { width: 65%; }
.wb-fc-line:nth-child(3) { width: 50%; }

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-10vh);
    opacity: 0;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted-gray);
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--glacier-teal), transparent);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-chevron {
  position: absolute;
  top: -10px;
  width: 2px;
  height: 14px;
  background: var(--glow-accent);
  box-shadow: 0 0 8px var(--glow-accent);
  animation: chevronSlide 1.5s ease-in-out infinite;
}

@keyframes chevronSlide {
  0% {
    top: -10px;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    top: 40px;
    opacity: 0;
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* â”€â”€ 12. Services Section â”€â”€ */
.services {
  background: transparent;
}

.tabs-wrapper {
  width: 100%;
}

.tabs-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-gray);
  background: rgba(8, 20, 37, 0.5);
  border: 1.5px solid rgba(0, 188, 212, 0.12);
  border-radius: 8px;
  transition: all var(--transition-fast);
  cursor: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.tab-btn .tab-icon {
  font-size: 1.1rem;
}

.tab-btn:hover {
  color: var(--ice-white);
  border-color: rgba(0, 188, 212, 0.35);
  background: rgba(0, 188, 212, 0.06);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 58, 107, 0.8), rgba(0, 188, 212, 0.2));
  border-color: var(--glacier-teal);
  color: var(--ice-white);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: tabFade 0.4s ease;
}

@keyframes tabFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: rgba(8, 20, 37, 0.6);
  border: 1px solid rgba(0, 188, 212, 0.12);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  backdrop-filter: blur(12px);
}

.service-card:hover {
  border-color: var(--glow-accent);
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.15), 0 0 0 1px rgba(0, 229, 255, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 1.6rem;
  color: var(--glacier-teal);
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ice-white);
  text-decoration: none !important;
  border: none !important;
}

.svc-card-title,
.svc-hero-card h3 {
  text-decoration: none !important;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-gray);
  line-height: 1.6;
  flex: 1;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--glacier-teal);
  transition: color var(--transition-fast), letter-spacing var(--transition-fast);
}

.service-link:hover {
  color: var(--glow-accent);
  letter-spacing: 0.05em;
}

/* â”€â”€ 13. Portfolio â”€â”€ */
.portfolio {
  background: transparent;
}

.portfolio-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-gray);
  background: rgba(8, 20, 37, 0.5);
  border: 1px solid rgba(0, 188, 212, 0.12);
  border-radius: 50px;
  transition: all var(--transition-fast);
  cursor: none;
}

.filter-btn:hover {
  color: var(--ice-white);
  border-color: rgba(0, 188, 212, 0.35);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--glacier-blue), var(--glacier-teal));
  color: white;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1.25rem;
  grid-auto-flow: dense;
}

.portfolio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 188, 212, 0.12);
  transition: all var(--transition-fast);
  cursor: none;
}

.portfolio-card.large {
  grid-column: span 2;
}

.portfolio-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 12px 48px rgba(0, 61, 107, 0.5);
  transform: scale(1.02);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Project visual backgrounds → defined in detailed mockup section below */

.pv-dashboard {
  width: 90%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pv-header {
  display: flex;
  gap: 6px;
}

.pv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pv-dot.c {
  background: var(--glacier-cyan);
}

.pv-dot.b {
  background: var(--glacier-blue);
}

.pv-dot.t {
  background: var(--glacier-teal);
}

.pv-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 80px;
}

.pv-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
}

.pv-line-chart {
  width: 100%;
  opacity: 0.7;
}

.pv-line-chart svg {
  width: 100%;
  height: 40px;
}

.pv-editorial {
  width: 90%;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.pv-ed-img {
  width: 100px;
  height: 120px;
  background: linear-gradient(135deg, #c9a96e, #e8d5a3);
  border-radius: 6px;
  flex-shrink: 0;
}

.pv-ed-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.pv-ed-title {
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.pv-ed-sub {
  height: 7px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.pv-ed-sub.short {
  width: 70%;
}

.pv-landing {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.pv-mountain {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0d1a0d 30%, transparent);
  clip-path: polygon(50% 10%, 80% 60%, 100% 40%, 100% 100%, 0 100%, 0 40%, 20% 60%);
  background-color: #1a3a1a;
  opacity: 0.6;
}

.pv-cta-block {
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pv-cta-title {
  height: 10px;
  width: 130px;
  background: #39FF14;
  border-radius: 4px;
  opacity: 0.8;
}

.pv-cta-btn {
  height: 22px;
  width: 90px;
  background: linear-gradient(90deg, #39FF14, #00CC00);
  border-radius: 12px;
  opacity: 0.9;
}

.pv-store {
  width: 90%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pv-store-header {
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  width: 50%;
}

.pv-products {
  display: flex;
  gap: 0.75rem;
}

.pv-product {
  flex: 1;
  height: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.pv-social {
  width: 90%;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.pv-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100px;
  flex-shrink: 0;
}

.pv-post {
  border-radius: 6px;
  height: 70px;
}

.pv-post.p1 {
  background: linear-gradient(135deg, #E040FB, #9C27B0);
}

.pv-post.p2 {
  background: linear-gradient(135deg, #FF6D00, #FF9100);
}

.pv-post.p3 {
  background: linear-gradient(135deg, #00E5FF, #0077C2);
}

.pv-analytics {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.pv-an-row {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.pv-an-bar {
  height: 8px;
  border-radius: 4px;
}

.pv-saas {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pv-saas-nav {
  height: 36px;
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 1px solid rgba(0, 100, 200, 0.2);
}

.pv-saas-body {
  flex: 1;
  padding: 1rem;
}

.pv-saas-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pv-table-row {
  height: 22px;
  border-radius: 4px;
  background: rgba(0, 100, 200, 0.08);
  border: 1px solid rgba(0, 100, 200, 0.12);
}

.pv-table-row.header {
  background: rgba(0, 100, 200, 0.2);
}

.pv-table-row.alt {
  background: rgba(0, 100, 200, 0.04);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 70, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.portfolio-cat {
  font-size: 0.72rem;
  color: var(--glacier-teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.portfolio-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ice-white);
}

.portfolio-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.portfolio-tags span {
  font-size: 0.7rem;
  padding: 2px 8px;
  background: rgba(0, 188, 212, 0.15);
  border: 1px solid rgba(0, 188, 212, 0.25);
  border-radius: 20px;
  color: var(--glacier-cyan);
}

.portfolio-link {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--glow-accent);
  transition: letter-spacing var(--transition-fast);
  display: inline-block;
}

.portfolio-link:hover {
  letter-spacing: 0.05em;
}

/* â”€â”€ 14. Stats â”€â”€ */
.stats {
  background: linear-gradient(180deg, #03101F 0%, var(--glacier-deep) 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glacier-teal), transparent);
  opacity: 0.5;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.stat-icon {
  font-size: 2rem;
  color: var(--glacier-teal);
  opacity: 0.8;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--glacier-teal), var(--glacier-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted-gray);
  font-weight: 500;
}

/* â”€â”€ 15. About â”€â”€ */
.about {
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 30% 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.founder-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--dark-base), var(--dark-base)), linear-gradient(135deg, #0077C2, #00BCD4);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 40px rgba(0, 188, 212, 0.3);
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ice-white);
  text-align: center;
}

.founder-role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--glacier-teal);
  text-align: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted-gray);
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.skill-tag {
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--glacier-teal);
  background: rgba(0, 188, 212, 0.08);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 50px;
  transition: all var(--transition-fast);
  box-shadow: 0 0 0 rgba(0, 188, 212, 0);
}

.skill-tag:hover {
  background: rgba(0, 188, 212, 0.18);
  box-shadow: 0 0 12px rgba(0, 188, 212, 0.3);
}

.metrics-dashboard {
  background: rgba(8, 20, 37, 0.65);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 18px;
  padding: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 58, 107, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.metrics-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(4, 8, 15, 0.6);
  border-bottom: 1px solid rgba(0, 188, 212, 0.1);
}

.metrics-dots {
  display: flex;
  gap: 6px;
}

.metrics-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.metrics-dots span:first-child {
  background: #ff5f57;
}

.metrics-dots span:nth-child(2) {
  background: #febc2e;
}

.metrics-dots span:last-child {
  background: #28c840;
}

.metrics-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted-gray);
  letter-spacing: 0.05em;
}

.metric-row {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(0, 188, 212, 0.06);
  transition: background var(--transition-fast);
}

.metric-row:last-child {
  border-bottom: none;
}

.metric-row:hover {
  background: rgba(0, 188, 212, 0.03);
}

.metric-info {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ice-white);
  line-height: 1;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--muted-gray);
  font-weight: 500;
}

.metric-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 8px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-bar-fill.animated {
  width: var(--bar-width, 0%);
}

.metric-bar-fill.cyan {
  background: linear-gradient(90deg, var(--glacier-cyan), #00E5FF);
  box-shadow: 0 0 12px rgba(77, 217, 236, 0.4);
}

.metric-bar-fill.green {
  background: linear-gradient(90deg, #00C853, #69F0AE);
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.4);
}

.metric-bar-fill.blue {
  background: linear-gradient(90deg, var(--glacier-blue), var(--glacier-teal));
  box-shadow: 0 0 12px rgba(0, 119, 194, 0.4);
}

/* Timeline */
.timeline {
  position: relative;
  padding-top: 2rem;
}

.timeline-track {
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(0, 188, 212, 0.12);
  border-radius: 2px;
}

.timeline-line {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--glacier-blue), var(--glacier-teal));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--glacier-teal);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline.animated .timeline-line {
  width: 100%;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.5rem 0.5rem 0;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(0, 188, 212, 0.08);
  border: 2px solid rgba(0, 188, 212, 0.25);
  border-radius: 50%;
  color: var(--glacier-teal);
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
}

.timeline-step:hover .step-icon {
  background: rgba(0, 188, 212, 0.2);
  border-color: var(--glacier-teal);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ice-white);
}

.step-desc {
  font-size: 0.82rem;
  color: var(--muted-gray);
  line-height: 1.5;
}

/* â”€â”€ 16. Testimonials â”€â”€ */
.testimonials {
  padding: 7rem 0;
  overflow: hidden;
}

.testimonials .section-header {
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(8, 20, 37, 0.7);
  border: 1px solid rgba(0, 188, 212, 0.18);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  border-color: rgba(0, 188, 212, 0.45);
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.12);
}

.tcard-stars {
  color: var(--glacier-teal);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.tcard-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ice-white);
  font-style: italic;
  flex: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--glacier-blue), var(--glacier-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}

.tcard-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ice-white);
}

.tcard-role {
  font-size: 0.78rem;
  color: var(--muted-gray);
}

/* â”€â”€ 17. Contact â”€â”€ */
.contact {
  background: transparent;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-sub {
  color: var(--muted-gray);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap {
  background: rgba(8, 20, 37, 0.65);
  border: 1px solid rgba(0, 188, 212, 0.18);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(4, 8, 15, 0.7);
  border: 1px solid rgba(0, 188, 212, 0.15);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--ice-white);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(139, 163, 181, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--glow-accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1), 0 0 15px rgba(0, 229, 255, 0.1);
}

.form-group select option {
  background: #081425;
  color: var(--ice-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 1rem;
}

.form-success {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 10px;
  color: var(--glacier-teal);
  font-weight: 600;
}

.contact-info-card {
  background: rgba(8, 20, 37, 0.5);
  border: 1px solid rgba(0, 188, 212, 0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ice-white);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--muted-gray);
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted-gray);
  padding: 0.7rem 1rem;
  background: rgba(0, 188, 212, 0.05);
  border: 1px solid rgba(0, 188, 212, 0.1);
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-link:hover {
  color: var(--glacier-teal);
  border-color: rgba(0, 188, 212, 0.35);
  background: rgba(0, 188, 212, 0.1);
  transform: translateX(4px);
}

/* â”€â”€ 18. Footer â”€â”€ */
.footer {
  background: #02060C;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.footer-aurora {
  height: 2px;
  background: linear-gradient(90deg, var(--glacier-deep) 0%, var(--glacier-teal) 50%, var(--glacier-deep) 100%);
  animation: auroraShift 6s ease-in-out infinite;
}

@keyframes auroraShift {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.4);
  }
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(139, 163, 181, 0.6);
  letter-spacing: 0.05em;
}

.footer-cols {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ice-white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(139, 163, 181, 0.6);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--glacier-teal);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(139, 163, 181, 0.4);
}

.footer-love {
  letter-spacing: 0.05em;
}

/* â”€â”€ 19. WhatsApp Button â”€â”€ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, var(--glacier-deep), var(--glacier-blue));
  color: white;
  border-radius: 50px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 58, 107, 0.6);
  transition: all var(--transition-spring);
  animation: waPulse 3s ease-in-out infinite;
  cursor: pointer;
}

.wa-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-icon {
  width: 24px;
  height: 24px;
}

.wa-text {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s ease, padding 0.3s ease;
}

.whatsapp-btn:hover {
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.4);
  transform: translateY(-3px);
}

.whatsapp-btn:hover .wa-text {
  max-width: 120px;
  padding-right: 1rem;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 58, 107, 0.6);
  }

  50% {
    box-shadow: 0 4px 30px rgba(0, 188, 212, 0.5), 0 0 0 6px rgba(0, 188, 212, 0.08);
  }
}

/* â”€â”€ 20. Responsive â”€â”€ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-sub {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .device-mockup {
    transform: none;
    max-width: 480px;
  }

  .device-phone {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-photo {
    width: 200px;
    height: 200px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card.large {
    grid-column: span 1;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-cols {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-track {
    display: none;
  }

  .tabs-nav {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
  }

  .footer-cols {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-container {
    padding: 5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 0 1.25rem;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
  }

  .whatsapp-btn {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .cursor,
  .cursor-trail {
    display: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
/* ═══════════════════════════════════════════════════════════
   UPGRADE ADDITIONS — Consultora Patagonia v2
   ═══════════════════════════════════════════════════════════ */

/* ── Mobile Hero Fix ── */
.hero-headline {
  font-size: clamp(1.3rem, 6vw, 2rem);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ── Glacier Monogram Logo ── */
.logo-glacier-icon {
  display: block;
  flex-shrink: 0;
}

.logo-glacier-icon .gl-layer {
  transition: filter 0.3s ease;
}

.nav-logo:hover .logo-glacier-icon {
  filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.5));
}

.nav-logo:hover .gl-layer {
  filter: brightness(1.15);
}

.nav-logo-sep {
  width: 1px;
  height: 32px;
  background: rgba(0, 188, 212, 0.3);
  flex-shrink: 0;
  margin: 0 4px;
}

.loader-logo .gl-l1 {
  animation: layerIn 0.5s ease 0.1s both;
}

.loader-logo .gl-l2 {
  animation: layerIn 0.5s ease 0.2s both;
}

.loader-logo .gl-l3 {
  animation: layerIn 0.5s ease 0.3s both;
}

.loader-logo .gl-l4 {
  animation: layerIn 0.5s ease 0.4s both;
}

.loader-logo .gl-l5 {
  animation: layerIn 0.5s ease 0.5s both;
}

@keyframes layerIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Hero Float Badge ── */
.hero-float-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 20, 37, 0.9);
  border: 1px solid rgba(0, 188, 212, 0.35);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--glacier-teal);
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 16px rgba(0, 188, 212, 0.2);
  animation: badgeBob 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes badgeBob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}

/* ── Trust Bar ── */
.trust-bar {
  width: 100%;
  overflow: hidden;
  background: rgba(8, 20, 37, 0.4);
  border-top: 1px solid rgba(0, 188, 212, 0.08);
  border-bottom: 1px solid rgba(0, 188, 212, 0.08);
  padding: 0.85rem 0;
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.trust-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: trustScroll 40s linear infinite;
}

.trust-bar:hover .trust-track {
  animation-play-state: paused;
}

.trust-track span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted-gray);
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 0 0.6rem;
}

.trust-track .sep {
  color: rgba(139, 163, 181, 0.3);
  padding: 0 0.2rem;
}

@keyframes trustScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Services Redesign ── */
.svc-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.svc-hero-card {
  background: rgba(8, 20, 37, 0.65);
  border: 1px solid rgba(0, 188, 212, 0.12);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--svc-color, var(--glacier-teal)), transparent);
  border-radius: 18px 18px 0 0;
}

.svc-hero-card:hover {
  border-color: rgba(0, 188, 212, 0.3);
  box-shadow: 0 12px 40px rgba(0, 61, 107, 0.4);
  transform: translateY(-4px);
}

.svc-card-accent {
  display: none;
}

.svc-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.svc-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ice-white);
  text-decoration: none;
  font-style: normal;
}

.svc-card-desc {
  font-size: 0.875rem;
  color: var(--muted-gray);
  line-height: 1.65;
}

.svc-sub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
  padding: 0;
}

.svc-sub-list li {
  font-size: 0.82rem;
  color: var(--muted-gray);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.svc-sub-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--glacier-teal);
  opacity: 0.7;
}

.svc-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--glacier-teal);
  cursor: none;
  padding: 0;
  transition: color var(--transition-fast), letter-spacing var(--transition-fast);
  background: none;
  border: none;
  margin-top: 0.5rem;
  width: fit-content;
}

.svc-expand-btn:hover {
  color: var(--glow-accent);
  letter-spacing: 0.04em;
}

.svc-expand-btn[aria-expanded="true"] {
  color: var(--glow-accent);
}

.svc-panel {
  margin-top: 1rem;
  margin-bottom: 1rem;
  animation: tabFade 0.4s ease;
}

/* ── Portfolio More Button ── */
.portfolio-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Pricing Section ── */
.pricing {
  background: transparent;
}

.pricing-sub {
  color: var(--muted-gray);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 3rem;
}

.pricing-card {
  background: rgba(8, 20, 37, 0.6);
  border: 1px solid rgba(0, 188, 212, 0.12);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all var(--transition-fast);
}

.pricing-card:hover {
  border-color: rgba(0, 188, 212, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 61, 107, 0.4);
}

.pricing-card.featured {
  border-color: var(--glacier-teal);
  box-shadow: 0 0 32px rgba(0, 188, 212, 0.2), 0 0 0 1px rgba(0, 188, 212, 0.15);
  background: rgba(0, 58, 107, 0.35);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--glacier-blue), var(--glacier-teal));
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.4);
}

.pricing-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  color: var(--ice-white);
}

.pricing-ideal {
  font-size: 0.82rem;
  color: var(--muted-gray);
}

.pricing-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--glacier-cyan);
  line-height: 1.2;
}

.pricing-price strong {
  font-size: inherit;
  font-family: var(--font-display);
}

.pricing-price span {
  font-size: 0.8rem;
  color: var(--muted-gray);
  font-weight: 400;
}

.pricing-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted-gray);
  line-height: 1.5;
  margin-top: 0.25rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--muted-gray);
  line-height: 1.4;
}

.pricing-features li:first-child {
  color: var(--ice-white);
  font-weight: 600;
}

.pricing-btn {
  justify-content: center;
  margin-top: 0.5rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: rgba(139, 163, 181, 0.6);
  line-height: 1.6;
}

.pricing-note a {
  color: var(--glacier-teal);
  text-decoration: underline;
}

/* ── FAQ Accordion ── */
.faq {
  background: transparent;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(8, 20, 37, 0.6);
  border: 1px solid rgba(0, 188, 212, 0.12);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(0, 188, 212, 0.3);
  background: rgba(0, 188, 212, 0.04);
  border-left: 3px solid var(--glacier-teal);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ice-white);
  cursor: none;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--glacier-teal);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--glacier-teal);
  transition: transform 0.35s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--muted-gray);
  line-height: 1.75;
}

/* ── Newsletter Footer Form ── */
.footer-newsletter {
  margin-top: 0.5rem;
}

.newsletter-label {
  font-size: 0.8rem;
  color: rgba(139, 163, 181, 0.7);
  margin-bottom: 0.6rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  background: rgba(4, 8, 15, 0.7);
  border: 1px solid rgba(0, 188, 212, 0.15);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  color: var(--ice-white);
  font-size: 0.85rem;
  outline: none;
  flex: 1;
  min-width: 160px;
  transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--glacier-teal);
}

.newsletter-btn {
  padding: 0.65rem 1.2rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* ── Scroll-to-Top Button ── */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 20, 37, 0.85);
  border: 1.5px solid rgba(0, 188, 212, 0.3);
  color: var(--glacier-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
  backdrop-filter: blur(12px);
}

.scroll-top-btn svg {
  width: 18px;
  height: 18px;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top-btn:hover {
  background: rgba(0, 188, 212, 0.15);
  border-color: var(--glacier-teal);
  box-shadow: 0 0 16px rgba(0, 188, 212, 0.3);
  transform: translateY(-3px);
}

/* ── Mobile Social in Menu ── */
.mobile-social {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
}

.mobile-social a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--muted-gray);
  letter-spacing: 0.1em;
  transition: color var(--transition-fast);
}

.mobile-social a:hover {
  color: var(--glacier-teal);
}

/* ── Responsive Updates ── */
@media (max-width: 1024px) {
  .svc-hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(1.1rem, 4.5vw, 1.6rem);
    line-height: 1.2;
  }

  .hero {
    padding: 0 1rem;
  }

  .hero-container {
    padding: 2rem 0;
  }

  .hero-float-badge {
    font-size: 0.68rem;
    top: 8px;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .scroll-top-btn {
    bottom: 5rem;
    left: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(1.1rem, 4.5vw, 1.6rem);
    line-height: 1.2;
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══ PRICING TOGGLE ═══ */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-gray);
  transition: color var(--transition-fast);
}

.toggle-label.active {
  color: var(--glacier-teal);
}

.pricing-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: rgba(0, 119, 194, 0.25);
  border: 1.5px solid rgba(0, 188, 212, 0.3);
  border-radius: 50px;
  cursor: none;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.pricing-toggle[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--glacier-blue), var(--glacier-teal));
  border-color: transparent;
  box-shadow: 0 0 16px rgba(0, 188, 212, 0.4);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--glacier-teal);
  transition: transform var(--transition-spring), background var(--transition-fast);
  box-shadow: 0 0 8px rgba(0, 188, 212, 0.5);
}

.pricing-toggle[aria-pressed="true"] .toggle-thumb {
  transform: translateX(24px);
  background: white;
}

/* Project price */
.price-value {
  transition: opacity 0.3s ease;
}

/* ═══ SERVICES HERO CARDS ═══ */
.svc-hero-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.svc-hero-card {
  position: relative;
  background: rgba(8, 20, 37, 0.65);
  border: 1px solid rgba(0, 188, 212, 0.14);
  border-radius: 18px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: all var(--transition-fast);
  cursor: default;
}

.svc-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(var(--svc-rgb, 0, 119, 194), 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.svc-hero-card:hover {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 12px 48px rgba(0, 61, 107, 0.4);
  transform: translateY(-4px);
}

.svc-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--svc-color, var(--glacier-teal));
  border-radius: 18px 18px 0 0;
  box-shadow: 0 0 16px var(--svc-color, var(--glacier-teal));
  opacity: 0.8;
}

.svc-icon {
  font-size: 2rem;
  line-height: 1;
}

.svc-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ice-white);
  line-height: 1.25;
}

.svc-card-desc {
  font-size: 0.875rem;
  color: var(--muted-gray);
  line-height: 1.65;
  flex: 1;
}

.svc-expand-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--glacier-teal);
  cursor: none;
  padding: 0.5rem 0;
  transition: letter-spacing var(--transition-fast), color var(--transition-fast);
  text-align: left;
}

.svc-expand-btn:hover {
  color: var(--glow-accent);
  letter-spacing: 0.04em;
}

.svc-panel {
  animation: tabFade 0.35s ease;
  margin-top: 0.5rem;
}

/* ═══ HERO FLOAT BADGE ═══ */
.hero-float-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: rgba(8, 20, 37, 0.88);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--glacier-cyan);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 61, 107, 0.4);
  animation: badgeFloat 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
  background: rgba(4, 8, 15, 0.7);
  border-top: 1px solid rgba(0, 188, 212, 0.07);
  border-bottom: 1px solid rgba(0, 188, 212, 0.07);
  overflow: hidden;
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trust-bar>div {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: trustScroll 40s linear infinite;
}

.trust-bar>div:hover {
  animation-play-state: paused;
}

@keyframes trustScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trust-bar span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted-gray);
  white-space: nowrap;
  opacity: 0.7;
}

.trust-bar .sep {
  opacity: 0.35;
}

/* ═══ FAQ ACTIVE ITEM STYLE ═══ */
.faq-item.open {
  border-left: 3px solid var(--glacier-teal);
  background: rgba(0, 188, 212, 0.04);
}

.faq-item.open .faq-question {
  color: var(--glacier-teal);
}

/* ═══ SCROLL-TO-TOP (repositioned for chatbot) ═══ */
.scroll-top-btn {
  bottom: 7rem !important;
}

/* ═══ CHATBOT WIDGET ═══ */
.chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.chatbot-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--glacier-blue), var(--glacier-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  box-shadow: 0 6px 24px rgba(0, 119, 194, 0.5);
  transition: all var(--transition-spring);
  border: none;
  animation: chatPulse 4s ease-in-out infinite;
}

@keyframes chatPulse {

  0%,
  85%,
  100% {
    box-shadow: 0 6px 24px rgba(0, 119, 194, 0.5);
  }

  90% {
    box-shadow: 0 6px 36px rgba(0, 188, 212, 0.8);
  }
}

.chatbot-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.7);
}

.chatbot-btn-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4CAF50;
  border: 2px solid var(--dark-base);
  animation: badgePulse 2s ease-in-out infinite;
}

.chatbot-btn-tooltip {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: rgba(8, 20, 37, 0.95);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  color: var(--glacier-cyan);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(12px);
}

.chatbot-container:hover .chatbot-btn-tooltip {
  opacity: 1;
}

.chatbot-widget {
  width: 320px;
  height: 420px;
  background: rgba(4, 8, 20, 0.96);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 64px rgba(0, 20, 60, 0.7);
  transform-origin: bottom right;
  transform: scale(0) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.chatbot-widget.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  background: rgba(0, 30, 60, 0.8);
  border-bottom: 1px solid rgba(0, 188, 212, 0.15);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.chatbot-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ice-white);
  line-height: 1.2;
}

.chatbot-online {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #4CAF50;
}

.chatbot-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  animation: badgePulse 2s ease-in-out infinite;
}

.chatbot-close {
  font-size: 1rem;
  color: var(--muted-gray);
  cursor: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color var(--transition-fast), background var(--transition-fast);
  line-height: 1;
}

.chatbot-close:hover {
  color: var(--ice-white);
  background: rgba(255, 255, 255, 0.07);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 188, 212, 0.2) transparent;
}

.chat-bubble {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.83rem;
  line-height: 1.55;
  animation: bubbleIn 0.25s ease;
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-bubble.bot {
  background: rgba(8, 20, 37, 0.9);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-left: 3px solid var(--glacier-teal);
  color: var(--ice-white);
  align-self: flex-start;
}

.chat-bubble.user {
  background: linear-gradient(135deg, var(--glacier-blue), var(--glacier-teal));
  color: white;
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
}

.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0.65rem 0.9rem;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--glacier-teal);
  animation: typingDot 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.chatbot-quick-replies {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(0, 188, 212, 0.1);
  flex-shrink: 0;
}

.quick-reply-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--glacier-cyan);
  background: rgba(0, 188, 212, 0.05);
  cursor: none;
  text-align: left;
  transition: all var(--transition-fast);
  animation: bubbleIn 0.25s ease;
}

.quick-reply-btn:hover {
  background: linear-gradient(135deg, rgba(0, 119, 194, 0.25), rgba(0, 188, 212, 0.2));
  border-color: var(--glacier-teal);
  color: white;
}

/* ═══ BLOG PAGE STYLES ═══ */
.blog-hero {
  padding: 9rem 2rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: rgba(8, 20, 37, 0.65);
  border: 1px solid rgba(0, 188, 212, 0.13);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  backdrop-filter: blur(14px);
}

.blog-card:hover {
  border-color: rgba(0, 188, 212, 0.4);
  box-shadow: 0 12px 40px rgba(0, 61, 107, 0.4);
  transform: translateY(-5px);
}

.blog-card-cover {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.blog-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.blog-cat-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--glacier-teal);
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.2);
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ice-white);
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.82rem;
  color: var(--muted-gray);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 188, 212, 0.08);
}

.blog-read-time {
  font-size: 0.72rem;
  color: var(--muted-gray);
  opacity: 0.75;
}

.blog-read-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--glacier-cyan);
  transition: letter-spacing var(--transition-fast), color var(--transition-fast);
}

.blog-read-link:hover {
  color: var(--glow-accent);
  letter-spacing: 0.04em;
}

.blog-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* ═══ MOBILE RESPONSIVE ADDITIONS ═══ */
@media (max-width: 768px) {
  .chatbot-container {
    bottom: 1.5rem;
    right: 1rem;
  }

  .chatbot-widget {
    width: calc(100vw - 2rem);
    max-width: 320px;
  }

  .svc-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-float-badge {
    position: static;
    margin-top: 1rem;
  }

  .hero-float-badge {
    position: static;
    margin-top: 1rem;
  }

  .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column !important;
    align-items: center !important;
  }

  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    justify-content: center;
  }

  .hero-visual {
    display: none !important;
  }

}

@media (max-width: 480px) {
  .chatbot-widget {
    height: 380px;
  }
}

/* ═══ SERVICE CARD H3 FIX ═══ */
.service-card h3,
.svc-card-title,
.svc-hero-card h3 {
  text-decoration: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  border: none !important;
}

/* ═══ SERVICE GRID EQUAL WIDTH (desktop only) ═══ */
@media (min-width: 769px) {
  .svc-hero-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }

  .svc-hero-card {
    grid-column: span 1 !important;
  }
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO MOCKUPS — Detailed Visual System
   ═══════════════════════════════════════════════════════ */

/* ── Shared: portfolio-visual layout for new mockups ── */
.novapay,
.lumina,
.terrafit,
.arcashop,
.socialflow,
.cobradigital,
.polarbrands {
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
}

/* ── Shared: Browser Chrome Bar ── */
.mv-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.mv-chrome.light {
  background: rgba(0, 0, 0, 0.06);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.mv-d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.mv-d:first-child {
  background: #ff5f57;
}

.mv-d:nth-child(2) {
  background: #febc2e;
}

.mv-d:nth-child(3) {
  background: #28c840;
}

.mv-url {
  flex: 1;
  text-align: center;
  font-size: 5px;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  padding: 1px 6px;
  border-radius: 3px;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

.mv-chrome.light .mv-url {
  color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.05);
}

/* ── Shared: Page body ── */
.mv-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--font-body);
}

/* ════════════════════════════════════════
   1. NOVAPAY — Fintech Dashboard
   ════════════════════════════════════════ */
.novapay {
  background: linear-gradient(160deg, #020a18 0%, #030d1f 40%, #071a38 100%);
}

.np-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: rgba(0, 15, 40, 0.9);
  border-bottom: 1px solid rgba(0, 188, 212, 0.2);
  backdrop-filter: blur(4px);
}

.np-logo {
  font-size: 7.5px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  text-shadow: 0 0 8px rgba(0, 188, 212, 0.4);
}

.np-hd nav {
  display: flex;
  gap: 8px;
}

.np-hd em {
  font-size: 5px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.np-hd em.on {
  color: #00BCD4;
  text-shadow: 0 0 6px rgba(0, 188, 212, 0.5);
}

.np-body {
  flex: 1;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.np-kpis {
  display: flex;
  gap: 5px;
}

.np-kpi {
  flex: 1;
  background: rgba(0, 188, 212, 0.05);
  border: 1px solid rgba(0, 188, 212, 0.15);
  border-radius: 5px;
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 1px 4px rgba(0, 188, 212, 0.06);
}

.np-kpi b {
  font-size: 9px;
  font-family: var(--font-display);
  font-weight: 800;
}

.np-kpi small {
  font-size: 4px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.kc {
  color: #4DD9EC;
  text-shadow: 0 0 6px rgba(77, 217, 236, 0.3);
}

.kb {
  color: #448AFF;
  text-shadow: 0 0 6px rgba(68, 138, 255, 0.3);
}

.kg {
  color: #00E676;
  text-shadow: 0 0 6px rgba(0, 230, 118, 0.3);
}

.np-mid {
  display: flex;
  gap: 6px;
  flex: 1;
  min-height: 0;
}

.np-chart {
  flex: 1.2;
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(0, 188, 212, 0.02);
  border-radius: 4px;
  padding: 3px;
}

.np-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  flex: 1;
  padding-bottom: 10px;
}

.np-bc {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.np-b {
  width: 100%;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, #0055A0, #00BCD4, #4DD9EC);
  opacity: 0.85;
  box-shadow: 0 0 4px rgba(0, 188, 212, 0.2);
}

.np-bc em {
  font-size: 4px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  letter-spacing: 0.03em;
}

.np-line {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 50%;
  pointer-events: none;
}

.np-tbl {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(0, 20, 50, 0.3);
  border-radius: 4px;
  padding: 2px;
}

.np-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4px;
  padding: 3px 5px;
  border-radius: 3px;
  font-size: 4.5px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 188, 212, 0.03);
}

.np-row:nth-child(odd):not(.hd) {
  background: rgba(0, 188, 212, 0.05);
}

.np-row.hd {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 188, 212, 0.1);
  font-size: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.st-ok {
  color: #00E676;
  background: rgba(0, 230, 118, 0.15);
  padding: 0 4px;
  border-radius: 2px;
  font-size: 4px;
  text-align: center;
  font-weight: 700;
}

.st-pn {
  color: #FFB74D;
  background: rgba(255, 183, 77, 0.15);
  padding: 0 4px;
  border-radius: 2px;
  font-size: 4px;
  text-align: center;
  font-weight: 700;
}

/* ════════════════════════════════════════
   2. LUMINA — Editorial Agency (Light)
   ════════════════════════════════════════ */
.lumina {
  background: #040c18 !important;
  box-shadow: inset 0 0 60px rgba(0, 119, 194, 0.04);
}

.lm-page {
  color: #e0e8f0;
  background: #040c18;
}

.lm-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lm-logo {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: #e0e8f0;
}

.lm-hd nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lm-hd em {
  font-size: 4.5px;
  font-style: normal;
  color: rgba(224, 232, 240, 0.45);
  letter-spacing: 0.04em;
}

.lm-cta {
  border: 1px solid rgba(0, 188, 212, 0.35) !important;
  padding: 2px 6px !important;
  border-radius: 2px;
  font-weight: 500 !important;
  color: #00BCD4 !important;
  letter-spacing: 0.03em;
}

.lm-hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 10px;
}

.lm-hero-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.lm-h1 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.lm-h1b {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 300;
  color: #00BCD4;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.lm-sub {
  font-size: 4.5px;
  color: rgba(224, 232, 240, 0.4);
  margin-top: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lm-imgs {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.lm-img {
  width: 44px;
  height: 60px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lm-img.gold {
  background: linear-gradient(160deg, #0077C2 0%, #00BCD4 50%, #4DD9EC 100%);
}

.lm-img.dark {
  background: linear-gradient(160deg, #2A2A2A 0%, #1A1A1A 60%, #111 100%);
}

.lm-services {
  display: flex;
  gap: 8px;
  padding: 6px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lm-svc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lm-svc-line {
  width: 22px;
  height: 1.5px;
  background: linear-gradient(90deg, #0077C2, rgba(0, 119, 194, 0.3));
}

.lm-svc span {
  font-size: 5px;
  font-weight: 600;
  color: #e0e8f0;
  letter-spacing: 0.03em;
}

.lm-foot {
  padding: 5px 12px;
  background: #1A1A1A;
  text-align: center;
}

.lm-foot span {
  font-family: var(--font-display);
  font-size: 4.5px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.45);
}

/* ════════════════════════════════════════
   3. TERRAFIT — Fitness Landing
   ════════════════════════════════════════ */
.terrafit {
  background: #050505 !important;
}

.tf-page {
  background: linear-gradient(180deg, #050505 0%, #081408 50%, #0a1a05 100%);
}

.tf-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 1px solid rgba(57, 255, 20, 0.15);
  backdrop-filter: blur(4px);
}

.tf-logo {
  font-family: var(--font-display);
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #39FF14;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.tf-hd nav {
  display: flex;
  gap: 8px;
}

.tf-hd em {
  font-size: 5px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.3);
}

.tf-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
  padding: 8px 6px;
  background: radial-gradient(ellipse at center 55%, rgba(57, 255, 20, 0.07) 0%, rgba(57, 255, 20, 0.02) 40%, transparent 70%);
}

.tf-h1,
.tf-h1b {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  line-height: 1.05;
  text-transform: uppercase;
}

.tf-h1b {
  color: #39FF14;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.tf-sub {
  font-size: 4.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
  letter-spacing: 0.06em;
}

.tf-cta {
  margin-top: 5px;
  background: #39FF14;
  color: #050505;
  font-size: 5.5px;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.35), 0 0 20px rgba(57, 255, 20, 0.12);
}

.tf-features {
  display: flex;
  gap: 5px;
  padding: 5px 8px;
}

.tf-feat {
  flex: 1;
  background: rgba(57, 255, 20, 0.04);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 5px;
  padding: 4px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 1px 4px rgba(57, 255, 20, 0.05);
}

.tf-ico {
  font-size: 9px;
}

.tf-feat span {
  font-size: 4.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.tf-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 5px 8px;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
  background: rgba(57, 255, 20, 0.02);
}

.tf-stats span {
  font-size: 4.5px;
  color: rgba(255, 255, 255, 0.4);
}

.tf-stats b {
  color: #39FF14;
  font-size: 7px;
  font-weight: 800;
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.3);
}

/* ════════════════════════════════════════
   4. ARCASHOP — Fashion E-commerce
   ════════════════════════════════════════ */
.arcashop {
  background: #040c18 !important;
}

.as-page {
  color: #e0e8f0;
}

.as-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.as-logo {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #e0e8f0;
}

.as-nav-l,
.as-nav-r {
  display: flex;
  gap: 7px;
}

.as-hd em {
  font-size: 4.5px;
  font-style: normal;
  color: rgba(224, 232, 240, 0.4);
  letter-spacing: 0.03em;
}

.as-hero {
  background: linear-gradient(160deg, #1A1A1A 0%, #252525 100%);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.as-h1 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #FFFFFF;
}

.as-h2 {
  font-size: 5px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
}

.as-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 6px 8px;
  flex: 1;
}

.as-prod {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.as-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(0, 119, 194, 0.12);
  border-radius: 2px;
}

.as-prod:nth-child(2) .as-img {
  background: rgba(0, 188, 212, 0.1);
}

.as-prod:nth-child(3) .as-img {
  background: rgba(0, 119, 194, 0.08);
}

.as-prod:nth-child(4) .as-img {
  background: rgba(0, 188, 212, 0.08);
}

.as-name {
  font-size: 4px;
  color: rgba(224, 232, 240, 0.55);
  letter-spacing: 0.02em;
}

.as-price {
  font-size: 4.5px;
  font-weight: 700;
  color: #e0e8f0;
}

.as-brands {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 4px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.as-brands span {
  font-size: 4px;
  letter-spacing: 0.15em;
  color: rgba(224, 232, 240, 0.25);
  font-weight: 500;
}

/* ════════════════════════════════════════
   5. SOCIALFLOW — Social Media Dashboard
   ════════════════════════════════════════ */
.socialflow {
  background: linear-gradient(160deg, #0D0820 0%, #120a2e 100%) !important;
}

.sf-page {
  flex-direction: row !important;
}

.sf-sidebar {
  width: 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(224, 64, 251, 0.04) 100%);
  border-right: 1px solid rgba(224, 64, 251, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
  gap: 4px;
  flex-shrink: 0;
}

.sf-s-logo {
  font-size: 7px;
  font-weight: 800;
  color: #E040FB;
  font-family: var(--font-display);
  margin-bottom: 3px;
  text-shadow: 0 0 8px rgba(224, 64, 251, 0.4);
}

.sf-s-ico {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.sf-s-ico.ig {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.sf-s-ico.tk {
  background: linear-gradient(135deg, #00F2EA, #FF0050);
}

.sf-s-ico.fb {
  background: #1877F2;
}

.sf-s-ico.li {
  background: #0A66C2;
}

.sf-s-ico.tw {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sf-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 5px 6px;
  gap: 4px;
  min-width: 0;
}

.sf-top {
  display: flex;
  align-items: center;
}

.sf-title {
  font-size: 6px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.sf-kpis {
  display: flex;
  gap: 4px;
}

.sf-kpi {
  flex: 1;
  padding: 3px 5px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sf-kpi b {
  font-size: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
}

.sf-kpi small {
  font-size: 3.5px;
  color: rgba(255, 255, 255, 0.4);
}

.sf-kpi.vio {
  background: rgba(224, 64, 251, 0.12);
  border: 1px solid rgba(224, 64, 251, 0.2);
}

.sf-kpi.vio b {
  color: #E040FB;
}

.sf-kpi.ora {
  background: rgba(255, 109, 0, 0.12);
  border: 1px solid rgba(255, 109, 0, 0.2);
}

.sf-kpi.ora b {
  color: #FF6D00;
}

.sf-kpi.pnk {
  background: rgba(255, 64, 129, 0.12);
  border: 1px solid rgba(255, 64, 129, 0.2);
}

.sf-kpi.pnk b {
  color: #FF4081;
}

.sf-kpi.cyn {
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.sf-kpi.cyn b {
  color: #00E5FF;
}

.sf-bottom {
  display: flex;
  gap: 5px;
  flex: 1;
  min-height: 0;
}

.sf-chart {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sf-chart svg {
  flex: 1;
  width: 100%;
}

.sf-legend {
  display: flex;
  gap: 6px;
}

.sf-leg-ig {
  font-size: 4px;
  color: #E040FB;
}

.sf-leg-tk {
  font-size: 4px;
  color: #00E5FF;
}

.sf-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  width: 65px;
  flex-shrink: 0;
}

.sf-post {
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sf-post.c1 {
  background: linear-gradient(135deg, #0077C2, #005a96);
}

.sf-post.c2 {
  background: linear-gradient(135deg, #00BCD4, #0097A7);
}

.sf-post.c3 {
  background: linear-gradient(135deg, #00E5FF, #0077C2);
}

.sf-post.c4 {
  background: linear-gradient(135deg, #4DD9EC, #26C6DA);
}

.sf-post.c5 {
  background: linear-gradient(135deg, #001E3C, #0a2a50);
}

.sf-post.c6 {
  background: linear-gradient(135deg, #0077C2, #005a96);
}

/* ════════════════════════════════════════
   6. COBRADIGITAL — Debt Management SaaS
   ════════════════════════════════════════ */
.cobradigital {
  background: linear-gradient(160deg, #020814 0%, #030A18 40%, #051525 100%) !important;
}

.cd-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 8px;
  background: rgba(0, 12, 35, 0.9);
  border-bottom: 1px solid rgba(0, 119, 194, 0.2);
  backdrop-filter: blur(4px);
}

.cd-logo {
  font-size: 6.5px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  text-shadow: 0 0 6px rgba(0, 119, 194, 0.3);
}

.cd-hd nav {
  display: flex;
  gap: 6px;
}

.cd-hd em {
  font-size: 4.5px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
}

.cd-hd em.on {
  color: #0077C2;
  text-shadow: 0 0 4px rgba(0, 119, 194, 0.4);
}

.cd-body {
  flex: 1;
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cd-kpis {
  display: flex;
  gap: 4px;
}

.cd-kpi {
  flex: 1;
  background: rgba(0, 119, 194, 0.05);
  border: 1px solid rgba(0, 119, 194, 0.15);
  border-radius: 4px;
  padding: 4px 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 1px 4px rgba(0, 119, 194, 0.05);
}

.cd-kpi b {
  font-size: 8px;
  font-family: var(--font-display);
  font-weight: 800;
}

.cd-kpi small {
  font-size: 3.5px;
  color: rgba(255, 255, 255, 0.4);
}

.cd-b {
  color: #0077C2;
  text-shadow: 0 0 5px rgba(0, 119, 194, 0.3);
}

.cd-g {
  color: #00E676;
  text-shadow: 0 0 5px rgba(0, 230, 118, 0.3);
}

.cd-c {
  color: #4DD9EC;
  text-shadow: 0 0 5px rgba(77, 217, 236, 0.3);
}

.cd-o {
  color: #FF9100;
  text-shadow: 0 0 5px rgba(255, 145, 0, 0.3);
}

.cd-main {
  display: flex;
  gap: 5px;
  flex: 1;
  min-height: 0;
}

.cd-tbl {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cd-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.5fr 0.8fr;
  gap: 3px;
  padding: 2px 4px;
  font-size: 4px;
  color: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  background: rgba(0, 119, 194, 0.03);
  align-items: center;
}

.cd-row.hd {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 119, 194, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 3.5px;
}

.cd-st {
  padding: 0 3px;
  border-radius: 2px;
  font-size: 3.5px;
  text-align: center;
  font-weight: 700;
}

.cd-st.ok {
  color: #00E676;
  background: rgba(0, 230, 118, 0.15);
}

.cd-st.bad {
  color: #FF5252;
  background: rgba(255, 82, 82, 0.15);
}

.cd-st.warn {
  color: #FFD600;
  background: rgba(255, 214, 0, 0.15);
}

.cd-donut {
  width: 65px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cd-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: conic-gradient(#00E676 0deg 162deg,
      #FF5252 162deg 234deg,
      #FFD600 234deg 324deg,
      #0077C2 324deg 360deg);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 119, 194, 0.15);
}

.cd-ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #030A18;
}

.cd-leg {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cd-l {
  font-size: 3.5px;
  color: rgba(255, 255, 255, 0.4);
}

.cd-l.ok::before {
  content: '● ';
  color: #00E676;
}

.cd-l.bad::before {
  content: '● ';
  color: #FF5252;
}

.cd-l.warn::before {
  content: '● ';
  color: #FFD600;
}

/* ════════════════════════════════════════
   7. POLARBRANDS — Corporate Branding
   ════════════════════════════════════════ */
.polarbrands {
  background: linear-gradient(160deg, #0A0E14 0%, #0d1420 100%) !important;
}

.pb-page {
  color: #B8D4E8;
}

.pb-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
  border-bottom: 1px solid rgba(184, 212, 232, 0.08);
}

.pb-logo {
  font-family: var(--font-display);
  font-size: 7px;
  font-weight: 700;
  color: #B8D4E8;
  letter-spacing: 0.12em;
}

.pb-hd nav {
  display: flex;
  gap: 8px;
}

.pb-hd em {
  font-size: 4.5px;
  font-style: normal;
  color: rgba(184, 212, 232, 0.35);
}

.pb-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  padding: 8px;
}

.pb-h1,
.pb-h1b {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  line-height: 1.15;
}

.pb-h1b {
  color: #B8D4E8;
  font-size: 10px;
}

.pb-line {
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #B8D4E8, transparent);
  margin-top: 4px;
}

.pb-grid {
  display: flex;
  gap: 4px;
  padding: 0 8px 4px;
}

.pb-card {
  flex: 1;
  height: 28px;
  background: rgba(184, 212, 232, 0.04);
  border: 1px solid rgba(184, 212, 232, 0.08);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pb-mark {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.pb-mark.m1 {
  background: #B8D4E8;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.pb-mark.m2 {
  background: #1E3A5F;
  border-radius: 50%;
}

.pb-mark.m3 {
  background: linear-gradient(135deg, #B8D4E8, #1E3A5F);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.pb-mark.m4 {
  background: #E8EFF5;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.pb-palette {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 4px 8px;
  border-top: 1px solid rgba(184, 212, 232, 0.06);
}

.pb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(184, 212, 232, 0.15);
}