/* ============================================================
   KATNI GRAPHIC & IT SOLUTION — MAIN STYLESHEET
   Modern, premium design system
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --clr-navy: #0B1628;
  --clr-navy-mid: #0F2044;
  --clr-navy-light: #162B55;
  --clr-blue: #1A5FE8;
  --clr-blue-mid: #2B6FFC;
  --clr-blue-light: #4D8FFB;
  --clr-accent: #00C6A2;       /* Teal accent */
  --clr-accent-light: #00DFB7;
  --clr-white: #FFFFFF;
  --clr-off-white: #F5F7FC;
  --clr-grey-100: #EEF1F8;
  --clr-grey-200: #DDE3F0;
  --clr-grey-400: #9BA8C0;
  --clr-grey-600: #5A6785;
  --clr-grey-800: #2E3A52;
  --clr-text-primary: #0B1628;
  --clr-text-secondary: #3D4F6E;
  --clr-text-muted: #6B7A99;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font sizes (fluid) */
  --fs-xs: clamp(0.7rem, 1.5vw, 0.75rem);
  --fs-sm: clamp(0.8rem, 1.8vw, 0.875rem);
  --fs-base: clamp(0.9rem, 2vw, 1rem);
  --fs-md: clamp(1rem, 2.2vw, 1.125rem);
  --fs-lg: clamp(1.1rem, 2.5vw, 1.25rem);
  --fs-xl: clamp(1.2rem, 3vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 4vw, 2rem);
  --fs-3xl: clamp(1.8rem, 5vw, 2.5rem);
  --fs-4xl: clamp(2rem, 6vw, 3.25rem);
  --fs-hero: clamp(2.5rem, 7vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11,22,40,0.06), 0 1px 2px rgba(11,22,40,0.04);
  --shadow-md: 0 4px 16px rgba(11,22,40,0.08), 0 2px 6px rgba(11,22,40,0.05);
  --shadow-lg: 0 10px 40px rgba(11,22,40,0.12), 0 4px 16px rgba(11,22,40,0.08);
  --shadow-xl: 0 20px 60px rgba(11,22,40,0.18), 0 8px 24px rgba(11,22,40,0.1);
  --shadow-glow: 0 0 40px rgba(26,95,232,0.2);
  --shadow-accent: 0 0 30px rgba(0,198,162,0.25);
  --shadow-card-hover: 0 16px 48px rgba(11,22,40,0.16), 0 6px 18px rgba(26,95,232,0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 900px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--clr-text-primary);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--clr-text-primary);
}

p {
  color: var(--clr-text-secondary);
  line-height: 1.75;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--dark {
  background: var(--clr-navy);
  color: var(--clr-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--clr-white);
}

.section--dark p {
  color: rgba(255,255,255,0.7);
}

.section--soft {
  background: var(--clr-off-white);
}

.section--grey {
  background: var(--clr-grey-100);
}

/* Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-blue);
  background: rgba(26,95,232,0.08);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  border: 1px solid rgba(26,95,232,0.15);
}

.section-label--accent {
  color: var(--clr-accent);
  background: rgba(0,198,162,0.08);
  border-color: rgba(0,198,162,0.2);
}

.section-label--white {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-label {
  margin-inline: auto;
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--fs-md);
  max-width: 640px;
  color: var(--clr-text-muted);
}

.section-header--center .section-subtitle {
  margin-inline: auto;
}

/* Text utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white { color: var(--clr-white) !important; }
.text-muted { color: var(--clr-text-muted) !important; }
.text-accent { color: var(--clr-accent) !important; }
.text-blue { color: var(--clr-blue) !important; }

/* Grid utilities */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-blue-mid) 100%);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(26,95,232,0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,95,232,0.45);
}

.btn--accent {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-light) 100%);
  color: var(--clr-navy);
  box-shadow: 0 4px 20px rgba(0,198,162,0.3);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,198,162,0.4);
}

.btn--outline {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
  background: transparent;
}

.btn--outline:hover {
  background: var(--clr-blue);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  border-color: rgba(255,255,255,0.4);
  color: var(--clr-white);
  background: transparent;
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--clr-blue);
  background: rgba(26,95,232,0.06);
  border-color: transparent;
}

.btn--ghost:hover {
  background: rgba(26,95,232,0.12);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--fs-md);
  border-radius: var(--radius-lg);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================================
   HEADER / NAVIGATION — Floating Pill Design
   ============================================================ */

/* Wrapper: full-width strip, but the pill floats inside it */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  pointer-events: none; /* allow click-through to hero */
  transition: padding var(--transition-slow);
}

.header--scrolled {
  padding: 8px 20px;
}

/* The actual pill/capsule bar */
.header-pill {
  pointer-events: all;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 58px;
  padding: 0 8px 0 20px;
  border-radius: 100px;
  position: relative;
  /* NO overflow:hidden — dropdown must escape */
  overflow: visible;
  /* Solid premium white initially */
  background: #ffffff;
  transition: all var(--transition-slow);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 8px 32px rgba(0,0,0,0.10),
    0 2px 8px rgba(0,0,0,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.04);
}

/* Glassmorphism active when scrolled */
.header--scrolled .header-pill {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.4),
    0 12px 32px rgba(0,0,0,0.08),
    0 2px 8px rgba(0,0,0,0.04),
    inset 0 -1px 0 rgba(255,255,255,0.2);
}

/* Glossy top highlight */
.header-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
  pointer-events: none;
}



/* All pill children need z-index: 1 to sit above the mask */
.header-pill > * {
  position: relative;
  z-index: 1;
}

@keyframes aurora-border {
  0%   { background-position: 0% 50%; }
  33%  { background-position: 100% 0%; }
  66%  { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

/* ---- LOGO ---- */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

.logo__img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.logo:hover .logo__img {
  transform: scale(1.05);
}


/* ---- NAV (desktop) ---- */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
  overflow: visible;
}

/* The highlight pill — warm violet-tinted gradient */
.nav-highlighter {
  position: absolute;
  top: 50%;
  left: 0;
  height: 32px;
  transform: translateY(-50%);
  background: linear-gradient(135deg,
    rgba(124,58,237,0.18) 0%,
    rgba(26,95,232,0.12) 100%
  );
  border-radius: 100px;
  border: 1px solid rgba(167,139,250,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: left 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              width 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.2s ease;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}

.nav:hover .nav-highlighter {
  opacity: 1;
}

.nav__item {
  position: relative;
  z-index: 100;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #4b5563;
  transition: color var(--transition-fast);
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: #111827;
}

.nav__link--active {
  color: #111827 !important;
  font-weight: 600;
}

/* Small dot marker for active link */
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #7c3aed;
}

/* Chevron next to dropdown items */
.nav__chevron {
  width: 10px;
  height: 10px;
  opacity: 0.4;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  flex-shrink: 0;
}

.nav__item:hover .nav__chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

/* ---- MEGA DROPDOWN — Light White Style ---- */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.97);
  min-width: 280px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s 0.22s;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,1);
  z-index: 9999;
}

.nav__dropdown.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s 0s;
}

/* Dropdown arrow notch */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: rgba(255,255,255,0.96);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 13px;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav__dropdown-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 13px;
  background: #f3f4f6;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nav__dropdown-link:hover {
  color: #111827;
}

.nav__dropdown-link:hover::before {
  opacity: 1;
}

.nav__dropdown-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition-spring);
  position: relative;
  z-index: 1;
}

.nav__dropdown-link:hover .nav__dropdown-icon {
  transform: scale(1.1) rotate(-5deg);
}

.nav__dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
  z-index: 1;
}

.nav__dropdown-title {
  font-weight: 600;
  font-size: 0.82rem;
  color: #111827;
  line-height: 1;
}

.nav__dropdown-sub {
  font-size: 0.68rem;
  color: #6b7280;
  line-height: 1;
}

/* ---- SERVICE TICKER ---- */
.nav-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(167,139,250,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: 100px;
  margin-right: 4px;
  flex-shrink: 0;
}

.nav-ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00dfc3;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0,223,195,0.8), 0 0 4px rgba(0,223,195,0.4);
  animation: pulse-dot 2.5s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.nav-ticker__text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6b7280;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  width: 80px;
  position: relative;
}

.nav-ticker__words {
  display: flex;
  flex-direction: column;
  animation: ticker-scroll 6s ease infinite;
}

.nav-ticker__word {
  height: 14px;
  display: flex;
  align-items: center;
  line-height: 1;
}

@keyframes ticker-scroll {
  0%   { transform: translateY(0); }
  28%  { transform: translateY(0); }
  33%  { transform: translateY(-14px); }
  61%  { transform: translateY(-14px); }
  66%  { transform: translateY(-28px); }
  94%  { transform: translateY(-28px); }
  100% { transform: translateY(-42px); }
}

/* ---- HEADER CTA BUTTON — Dark on White ---- */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border: 1px solid #111827;
  transition: all var(--transition-base);
  background: #111827;
}

.header-cta:hover {
  border-color: #7c3aed;
  background: #7c3aed;
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}

/* Left label portion */
.header-cta__label {
  padding: 9px 16px 9px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-primary);
  color: #ffffff;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: transparent;
  transition: all var(--transition-base);
}

.header-cta:hover .header-cta__label {
  color: white;
}

/* Right arrow portion */
.header-cta__arrow {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  margin: 2px;
  flex-shrink: 0;
  transition: transform var(--transition-spring);
}

.header-cta:hover .header-cta__arrow {
  transform: rotate(45deg) scale(1.08);
}

.header-cta__arrow svg {
  width: 14px;
  height: 14px;
  color: white;
  flex-shrink: 0;
}

/* ---- HAMBURGER (mobile) — creative X ---- */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.3);
}

.nav-toggle__lines {
  width: 18px;
  height: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle__line {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: #374151;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}

.nav-toggle__line:nth-child(1) { width: 18px; }
.nav-toggle__line:nth-child(2) { width: 12px; margin-left: 6px; }
.nav-toggle__line:nth-child(3) { width: 18px; }

.nav-toggle.is-open .nav-toggle__line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
  width: 18px;
}

.nav-toggle.is-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open .nav-toggle__line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
  width: 18px;
}

/* Mobile nav — slides down from top as frosted-glass drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 90px 20px 32px;
  background: rgba(14,6,36,0.98);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-bottom: 1px solid rgba(167,139,250,0.15);
  transform: translateY(-110%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  max-height: 100vh;
  /* Subtle inner glow at bottom */
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.mobile-nav.is-open {
  transform: translateY(0);
}

/* Decorative gradient stripe across top of drawer */
.mobile-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1a5fe8 0%, #7c3aed 40%, #ec4899 70%, transparent 100%);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-primary);
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
  color: white;
  padding-left: 8px;
}

/* Arrow icon inside mobile link */
.mobile-nav__link::after {
  content: '›';
  color: rgba(255,255,255,0.2);
  font-size: 1.2rem;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-nav__link:hover::after {
  color: var(--clr-accent);
  transform: translateX(3px);
}

.mobile-nav__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a0518;
  overflow: hidden;
  padding-top: 84px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 40%, transparent 80%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: pulse-glow 8s ease-in-out infinite alternate;
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: -150px;
  right: -50px;
  animation-delay: 0s;
}

.hero__glow--2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #ec4899 0%, transparent 70%);
  bottom: -150px;
  left: 0;
  animation-delay: 2s;
  opacity: 0.35;
}

.hero__glow--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00c6a2 0%, transparent 70%);
  top: 30%;
  left: 35%;
  animation-delay: 4s;
  opacity: 0.25;
}

.hero__glow--4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  bottom: 20%;
  right: 15%;
  animation-delay: 6s;
  opacity: 0.15;
}

@keyframes pulse-glow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
  100% { transform: scale(1.2) translate(30px, -30px); opacity: 0.6; }
}

.hero__floating {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  animation: float-shape 6s ease-in-out infinite;
  z-index: 2;
}

.hero__floating--1 { width:60px; height:60px; top:-30px; left:-20px; animation-delay:0s; }
.hero__floating--2 { width:40px; height:40px; bottom:50px; right:-15px; animation-delay:2s; }
.hero__floating--3 { width:25px; height:25px; top:40%; right:-40px; animation-delay:4s; }

@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hero__content {
  max-width: 620px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(167,139,250,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  animation: fade-slide-up 0.8s ease 0.2s both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00dfc3;
  box-shadow: 0 0 10px #00dfc3;
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero__headline {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--clr-white);
  margin-bottom: var(--space-6);
  letter-spacing: -0.04em;
  animation: fade-slide-up 0.8s ease 0.3s both;
}

.hero__headline .text-gradient {
  background: linear-gradient(90deg, #00dfc3 0%, #1a5fe8 40%, #7c3aed 70%, #ec4899 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aurora-text 6s linear infinite;
  display: inline-block;
}

@keyframes aurora-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__sub {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  animation: fade-slide-up 0.8s ease 0.4s both;
  max-width: 540px;
}

.hero__actions {
  animation: fade-slide-up 0.8s ease 0.5s both;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
  animation: fade-slide-up 0.8s ease 0.6s both;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero__trust-item { text-align: center; }

.hero__trust-label {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.hero__trust-value {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--clr-white);
}

/* Light Theme Hero Buttons */
.btn--solid-dark {
  background: #111827;
  color: #ffffff;
  border: 1px solid #111827;
}
.btn--solid-dark:hover {
  background: #7c3aed; /* Violet on hover */
  border-color: #7c3aed;
  box-shadow: 0 10px 20px rgba(124,58,237,0.3);
  transform: translateY(-2px);
}
.btn--solid-dark svg {
  transition: transform 0.3s ease;
}
.btn--solid-dark:hover svg {
  transform: translateX(4px);
}

.btn--outline-dark {
  background: transparent;
  color: #111827;
  border: 1px solid #d1d5db;
}
.btn--outline-dark:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

/* Custom Hero Button Styling */
#hero-cta-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #1a5fe8 100%);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 24px rgba(124,58,237,0.4), inset 0 1px 1px rgba(255,255,255,0.4);
  transition: all var(--transition-spring);
}

#hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124,58,237,0.6), inset 0 1px 1px rgba(255,255,255,0.6);
  background: linear-gradient(135deg, #1a5fe8 0%, #ec4899 100%);
}

#hero-cta-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
}

#hero-cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

/* Hero Visual: Image Composition */
.hero__visual {
  position: relative;
  animation: fade-slide-left 1s ease 0.3s both;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Main Browser Mockup */
.hero__img-browser {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(124,58,237,0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
  animation: float 7s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero__img-browser img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Mobile Mockup — positioned in the bottom-right, overlapping */
.hero__img-mobile {
  position: absolute;
  z-index: 3;
  bottom: -20px;
  right: -30px;
  width: 140px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.7),
    0 0 30px rgba(124,58,237,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  animation: float 5s ease-in-out 1s infinite;
}

.hero__img-mobile img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

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

/* Dashboard mockup */
.dashboard-mockup {
  background: linear-gradient(145deg, rgba(14,6,36,0.95) 0%, rgba(10,5,24,0.98) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  font-size: 0.7rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(167,139,250,0.15);
  box-shadow: inset 0 2px 20px rgba(255,255,255,0.02);
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-dots { display: flex; gap: 6px; }

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.3);
}

.dash-dot:nth-child(1) { background: #FF5F57; }
.dash-dot:nth-child(2) { background: #FEBC2E; }
.dash-dot:nth-child(3) { background: #28C840; }

.dash-title {
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.dash-stat {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
  transition: transform 0.3s ease;
}

.dash-stat:hover { transform: translateY(-2px); background: rgba(124,58,237,0.12); }

.dash-stat__icon { font-size: 1.4rem; margin-bottom: var(--space-2); }

.dash-stat__num {
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2px;
}

.dash-stat__lbl {
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-chart {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
}

.dash-chart__label {
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  margin-bottom: var(--space-3);
  display: block;
  font-weight: 500;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #1a5fe8 0%, rgba(26,95,232,0.1) 100%);
  animation: grow-bar 1.5s ease 0.5s both;
  box-shadow: 0 0 10px rgba(26,95,232,0.3);
}

@keyframes grow-bar { from { height: 0; } }

.dash-bar:nth-child(2n) {
  background: linear-gradient(180deg, #00dfc3 0%, rgba(0,223,195,0.1) 100%);
  box-shadow: 0 0 10px rgba(0,223,195,0.3);
}

.dash-bar:nth-child(3n) {
  background: linear-gradient(180deg, #7c3aed 0%, rgba(124,58,237,0.1) 100%);
  box-shadow: 0 0 10px rgba(124,58,237,0.3);
}

.dash-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.dash-tag {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  color: #c4b5fd;
  font-size: 0.65rem;
  font-weight: 600;
}

.dash-tag:nth-child(odd) {
  background: rgba(0,223,195,0.1);
  border-color: rgba(0,223,195,0.2);
  color: #5eead4;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.dash-dot:nth-child(1) { background: #FF5F57; }
.dash-dot:nth-child(2) { background: #FEBC2E; }
.dash-dot:nth-child(3) { background: #28C840; }

.dash-title {
  color: #4b5563;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.dash-stat {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
  transition: transform 0.3s ease;
}

.dash-stat:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dash-stat__icon {
  font-size: 1.4rem;
  margin-bottom: var(--space-2);
}

.dash-stat__num {
  color: #111827;
  font-weight: 800;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2px;
}

.dash-stat__lbl {
  color: #6b7280;
  font-size: 0.65rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash-chart {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
}

.dash-chart__label {
  color: #6b7280;
  font-size: 0.65rem;
  margin-bottom: var(--space-3);
  display: block;
  font-weight: 500;
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: #d1d5db;
  animation: grow-bar 1.5s ease 0.5s both;
}

@keyframes grow-bar {
  from { height: 0; }
}

.dash-bar:nth-child(2n) { background: #9ca3af; }
.dash-bar:nth-child(3n) { background: #6b7280; }

.dash-tags {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.dash-tag {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-full);
  padding: 4px 10px;
  color: #4b5563;
  font-size: 0.65rem;
  font-weight: 600;
}

/* Floating cards on hero */
.hero__float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

.hero__float-card--1 {
  top: -20px;
  right: -40px;
  animation-delay: 0s;
}

.hero__float-card--2 {
  bottom: 30px;
  left: -50px;
  animation-delay: 1.5s;
}

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

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.float-card__title {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  color: #111827;
}

.float-card__sub {
  display: block;
  font-size: 0.7rem;
  color: #6b7280;
}

.float-card__text {
  line-height: 1.3;
}

.float-card__title {
  display: block;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.float-card__sub {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-slide-left {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================
   VERTICALS / WHAT WE DO
   ============================================================ */
.verticals {
  position: relative;
  overflow: hidden;
}

.vertical-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-blue) 0%, var(--clr-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.vertical-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.vertical-card:hover::before {
  transform: scaleX(1);
}

.vertical-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.vertical-card__icon--blue {
  background: linear-gradient(135deg, rgba(26,95,232,0.1) 0%, rgba(26,95,232,0.05) 100%);
  border: 1px solid rgba(26,95,232,0.15);
}

.vertical-card__icon--purple {
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(124,58,237,0.05) 100%);
  border: 1px solid rgba(124,58,237,0.15);
}

.vertical-card__icon--green {
  background: linear-gradient(135deg, rgba(0,198,162,0.1) 0%, rgba(0,198,162,0.05) 100%);
  border: 1px solid rgba(0,198,162,0.2);
}

.vertical-card__title {
  font-size: var(--fs-xl);
  font-weight: 800;
}

.vertical-card__desc {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.vertical-card__tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--transition-fast);
}

.tag::before {
  content: '✦';
  color: #7c3aed;
  font-size: 0.6rem;
  flex-shrink: 0;
}

.tag:hover {
  background: transparent;
  color: #111827;
  border: none;
}

/* ============================================================
   WHY COMBINATION / DIGITAL JOURNEY
   ============================================================ */
.journey-section {
  background: linear-gradient(145deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,95,232,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.journey-flow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-10) 0;
  flex-wrap: wrap;
  justify-content: center;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.journey-step__bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-base);
  position: relative;
}

.journey-step__bubble:hover {
  transform: scale(1.1);
  background: rgba(26,95,232,0.2);
  border-color: var(--clr-blue-light);
  box-shadow: 0 0 30px rgba(26,95,232,0.3);
}

.journey-step__label {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
}

.journey-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.journey-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-12);
}

.journey-benefit {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.journey-benefit:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.journey-benefit__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.journey-benefit__title {
  color: white;
  font-weight: 700;
  font-size: var(--fs-base);
  margin-bottom: var(--space-1);
}

.journey-benefit__desc {
  color: rgba(255,255,255,0.55);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-grey-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(26,95,232,0.03) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,95,232,0.2);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__icon {
  font-size: 2rem;
  display: block;
}

.service-card__title {
  font-size: var(--fs-md);
  font-weight: 700;
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.service-card__arrow {
  margin-top: auto;
  color: var(--clr-blue);
  font-weight: 600;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-fast);
}

.service-card:hover .service-card__arrow {
  gap: var(--space-3);
}

/* Section variants */
.section-services {
  background: var(--clr-off-white);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.portfolio-filter {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--clr-grey-200);
  color: var(--clr-text-muted);
  background: var(--clr-white);
}

.portfolio-filter:hover,
.portfolio-filter.is-active {
  background: var(--clr-blue);
  color: white;
  border-color: var(--clr-blue);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
}

.portfolio-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  border: 1px solid var(--clr-grey-200);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.portfolio-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card__image-placeholder {
  font-size: 3rem;
  opacity: 0.3;
}

.portfolio-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: rgba(26,95,232,0.9);
  color: white;
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.portfolio-card__content {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.portfolio-card__title {
  font-size: var(--fs-md);
  font-weight: 700;
}

.portfolio-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  flex: 1;
}

.portfolio-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.portfolio-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  border-top: 1px solid var(--clr-grey-100);
}

.portfolio-card__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-blue);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--transition-fast);
}

.portfolio-card__link:hover { gap: var(--space-2); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-blue) 0%, var(--clr-accent) 100%);
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  position: relative;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-navy);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: var(--fs-lg);
  border: 2px solid rgba(0,198,162,0.3);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.process-step:hover .process-step__num {
  background: var(--clr-blue);
  color: white;
  border-color: var(--clr-blue);
  box-shadow: 0 0 30px rgba(26,95,232,0.4);
  transform: scale(1.1);
}

.process-step__title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: white;
}

.process-step__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-4);
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-4);
  background: white;
  border: 1px solid var(--clr-grey-200);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-base);
  cursor: default;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,95,232,0.2);
  background: linear-gradient(135deg, rgba(26,95,232,0.03) 0%, white 100%);
}

.industry-card__icon {
  font-size: 2rem;
  display: block;
}

.industry-card__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-primary);
  line-height: 1.3;
}

/* ============================================================
   LEAD FORM / CTA SECTIONS
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26,95,232,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: var(--fs-3xl);
  color: white;
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-md);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

/* Contact / Lead Form */
.contact-section {
  background: var(--clr-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.contact-info__heading {
  font-size: var(--fs-2xl);
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.contact-info__desc {
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.75;
}

.contact-method {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  background: white;
  border: 1px solid var(--clr-grey-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-method:hover {
  border-color: rgba(26,95,232,0.2);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-method__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method__icon--blue { background: rgba(26,95,232,0.1); }
.contact-method__icon--green { background: rgba(37,211,102,0.1); }
.contact-method__icon--orange { background: rgba(255,136,0,0.1); }

.contact-method__label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-method__value {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-text-primary);
  margin-top: 2px;
}

.contact-method__link {
  color: var(--clr-blue);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--transition-fast);
}

.contact-method__link:hover {
  text-decoration-color: var(--clr-blue);
}

/* Form */
.form-card {
  background: white;
  border: 1px solid var(--clr-grey-200);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.form-card__title {
  font-size: var(--fs-xl);
  font-weight: 800;
  margin-bottom: var(--space-6);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-primary);
}

.form-label span {
  color: var(--clr-blue);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--clr-grey-200);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  color: var(--clr-text-primary);
  background: var(--clr-off-white);
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--clr-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(26,95,232,0.1);
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.form-error-msg {
  font-size: var(--fs-xs);
  color: #E53E3E;
  font-weight: 500;
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit {
  margin-top: var(--space-4);
  width: 100%;
  justify-content: center;
  padding: var(--space-4);
  font-size: var(--fs-base);
}

.form-success {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  display: none;
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.form-success__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.form-success__text {
  color: var(--clr-text-muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.about-card {
  background: var(--clr-navy);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all var(--transition-base);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-card:nth-child(2) {
  transform: translateY(20px);
  background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-navy-light) 100%);
}

.about-card:nth-child(2):hover {
  transform: translateY(16px);
}

.about-card__icon {
  font-size: 2rem;
}

.about-card__title {
  font-weight: 700;
  font-size: var(--fs-base);
  color: white;
}

.about-card__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================================
   INDUSTRONET
   ============================================================ */
.industronet-section {
  background: linear-gradient(135deg, var(--clr-navy) 0%, #0D1F3C 100%);
  position: relative;
  overflow: hidden;
}

.industronet-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(0,198,162,0.08) 0%, transparent 70%);
}

.industronet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.industronet-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0,198,162,0.12);
  border: 1px solid rgba(0,198,162,0.25);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.industronet-title {
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: white;
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
}

.industronet-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-accent);
  font-weight: 600;
  margin-bottom: var(--space-5);
}

.industronet-desc {
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-md);
  line-height: 1.75;
  margin-bottom: var(--space-8);
}

.industronet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.industronet-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.industronet-feature:hover {
  background: rgba(0,198,162,0.08);
  border-color: rgba(0,198,162,0.2);
}

.industronet-feature__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.industronet-feature__text {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* IndustroNet visual / dashboard */
.industronet-visual {
  position: relative;
}

.industronet-mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-xl), 0 0 80px rgba(0,198,162,0.1);
}

.industronet-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.industronet-mockup-title {
  color: white;
  font-weight: 700;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.in-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  box-shadow: 0 0 10px var(--clr-accent);
  animation: blink 2s ease infinite;
}

.industronet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7rem;
}

.industronet-table th {
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-align: left;
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6rem;
}

.industronet-table td {
  padding: var(--space-3);
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.industronet-table tr:last-child td {
  border-bottom: none;
}

.in-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 600;
}

.in-status--active { background: rgba(0,198,162,0.15); color: var(--clr-accent); }
.in-status--pending { background: rgba(251,191,36,0.15); color: #FBB824; }
.in-status--new { background: rgba(26,95,232,0.15); color: var(--clr-blue-light); }

/* ============================================================
   SOLUTIONS (Business Solutions)
   ============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

.solution-card {
  background: white;
  border: 1px solid var(--clr-grey-200);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-blue) 0%, var(--clr-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card__icon {
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}

.solution-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
}

.solution-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.solution-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.solution-card__list-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

.solution-card__list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition-spring);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-navy);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__top {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: clamp(2rem, 3vw, 3rem);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  /* Show logo in its natural colours — no filter */
  opacity: 0.95;
  transition: opacity var(--transition-base);
}

.footer__logo:hover {
  opacity: 1;
}

.footer__brand-desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--clr-blue);
  border-color: var(--clr-blue);
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: white;
  margin-bottom: var(--space-4);
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__link:hover {
  color: var(--clr-accent);
  transform: translateX(4px);
}

.footer__bottom {
  padding-block: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-5);
}

.footer__bottom-link {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--clr-navy);
  padding-block: var(--space-10);
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(26,95,232,0.08) 50%, transparent 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-item__icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-2);
}

.stat-item__value {
  font-family: var(--font-primary);
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-item__label {
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* ============================================================
   ABOUT PAGE HERO
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,95,232,0.2) 0%, transparent 70%);
}

.page-hero h1 {
  font-size: var(--fs-4xl);
  color: white;
  font-weight: 900;
  margin-bottom: var(--space-4);
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-lg);
  max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-5);
}

.breadcrumb__item {
  color: rgba(255,255,255,0.5);
}

.breadcrumb__item--active {
  color: var(--clr-accent);
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   GOOGLE MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/6;
  background: var(--clr-grey-100);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-3);
  border: 2px dashed var(--clr-grey-200);
  color: var(--clr-text-muted);
  margin-top: var(--space-8);
  text-align: center;
}

.map-placeholder__icon {
  font-size: 2.5rem;
}

.map-placeholder__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* ============================================================
   SKIP TO CONTENT (Accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--clr-blue);
  color: white;
  padding: var(--space-3) var(--space-6);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .footer__brand {
    grid-column: 1 / -1;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__sub {
    margin-inline: auto;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
  }

  .industronet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-ticker { display: none; }
  .header-cta__label { display: none; }
  /* header-cta becomes just the arrow circle */
  .header-cta { border: none; background: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-accent) 100%); border-radius: 50%; padding: 0; width: 40px; height: 40px; box-shadow: 0 4px 20px rgba(26,95,232,0.4); }
  .header-cta__arrow { margin: 0; width: 40px; height: 40px; background: transparent; box-shadow: none; }
  .header-cta:hover { border: none; box-shadow: 0 0 0 3px rgba(26,95,232,0.2), 0 4px 24px rgba(26,95,232,0.4); }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  
  .form-grid { grid-template-columns: 1fr; }
  
  .process-steps::before { display: none; }
  .process-steps { grid-template-columns: 1fr; gap: var(--space-6); }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .journey-flow {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .journey-arrow {
    transform: rotate(90deg);
  }
  
  .hero__float-card {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .header,
  .footer,
  .whatsapp-float,
  .nav-toggle,
  .mobile-nav { display: none !important; }
  
  body { font-size: 12pt; }
}
