/* ============================================
   CRAFT LOGIC SOLUTIONS — Premium Design System
   ============================================ */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f4f9f7;
  --bg-tertiary: #eaf5f0;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fcfa;
  --border: #dceee4;
  --border-hover: rgba(76, 175, 125, 0.45);

  --text-primary: #001f3f;
  --text-secondary: #3d5a6e;
  --text-muted: #6b8494;

  --accent: #4caf7d;
  --accent-light: #2d8a5e;
  --accent-mint: #4caf7d;
  --accent-glow: rgba(76, 175, 125, 0.28);
  --accent-secondary: #001f3f;
  --accent-navy: #0a3560;
  --gradient: linear-gradient(135deg, #4caf7d 0%, #5ec492 50%, #7ed4a8 100%);
  --gradient-text: linear-gradient(135deg, #2d8a5e, #4caf7d, #5ec492);
  --gradient-navy: linear-gradient(135deg, #001f3f, #0a3560);

  --shadow-sm: 0 2px 12px rgba(0, 31, 63, 0.06);
  --shadow-md: 0 8px 28px rgba(0, 31, 63, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 31, 63, 0.1);

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;

  --header-height: 90px;
  --offer-bar-height: 42px;
  --header-total: calc(var(--header-height) + var(--offer-bar-height));
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-total);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* Custom Cursor — dot + trailing circle */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  will-change: transform;
}

body.custom-cursor.cursor-active .cursor-dot,
body.custom-cursor.cursor-active .cursor-ring {
  opacity: 1;
  visibility: visible;
}

body.loading .cursor-dot,
body.loading .cursor-ring {
  opacity: 0 !important;
  visibility: hidden !important;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  margin-left: -3.5px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 10003;
  box-shadow: 0 0 10px rgba(76, 175, 125, 0.5);
  transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 2px solid rgba(76, 175, 125, 0.75);
  border-radius: 50%;
  z-index: 10002;
  background: rgba(76, 175, 125, 0.06);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              margin 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              background 0.25s ease;
}

body.custom-cursor,
body.custom-cursor a,
body.custom-cursor button,
body.custom-cursor .btn,
body.custom-cursor input,
body.custom-cursor textarea,
body.custom-cursor select,
body.custom-cursor summary,
body.custom-cursor label[for] {
  cursor: none !important;
}

body.cursor-hover .cursor-dot {
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  margin-left: -2.5px;
  background: var(--accent-secondary);
  box-shadow: 0 0 14px rgba(0, 31, 63, 0.25);
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  margin-top: -28px;
  margin-left: -28px;
  border-color: var(--accent);
  background: rgba(76, 175, 125, 0.14);
}

body.cursor-click .cursor-dot {
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: -5px;
  background: var(--accent-light);
}

body.cursor-click .cursor-ring {
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  border-color: var(--accent-light);
  background: rgba(76, 175, 125, 0.22);
}

@media (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

.noise-overlay {
  position: fixed;
  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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #ffffff 0%, #f4f9f7 45%, #eaf5f0 100%);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader.exiting .loader-stage {
  opacity: 0;
  transform: scale(0.92) translateY(12px);
}

.loader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.loader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.loader-orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(76, 175, 125, 0.22);
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  animation: loaderOrbFloat 4s ease-in-out infinite;
}

.loader-orb-2 {
  width: 260px;
  height: 260px;
  background: rgba(0, 31, 63, 0.06);
  bottom: 10%;
  right: -5%;
  animation: loaderOrbFloat 5s ease-in-out infinite reverse;
}

.loader-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76, 175, 125, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 175, 125, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
}

@keyframes loaderOrbFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-16px); }
}

.loader-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  animation: loaderStageIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loaderStageIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.loader-emblem {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.loader-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loader-ring-track,
.loader-ring-progress {
  fill: none;
  stroke-width: 3;
}

.loader-ring-track {
  stroke: rgba(76, 175, 125, 0.15);
}

.loader-ring-progress {
  stroke: url(#loaderGradient);
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  animation: loaderRingSpin 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderRingSpin {
  to { stroke-dashoffset: 0; }
}

.loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  background: transparent;
  animation: loaderIconPulse 2s ease-in-out infinite;
}

@keyframes loaderIconPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}

.loader-brand-logo {
  display: block;
  width: min(340px, 86vw);
  height: auto;
  max-height: 110px;
  object-fit: contain;
  margin: 20px 0 28px;
  opacity: 0;
  animation: loaderBrandIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

@keyframes loaderBrandIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.loader-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  animation: loaderDotBounce 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) { animation-delay: 0.15s; }
.loader-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes loaderDotBounce {
  0%, 80%, 100% {
    opacity: 0.35;
    transform: translateY(0) scale(1);
  }
  40% {
    opacity: 1;
    transform: translateY(-6px) scale(1.15);
  }
}

/* Logo — transparent PNG on light background */
.logo-img {
  display: block;
  height: 70px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: var(--transition-fast);
}

.nav-logo:hover .logo-img {
  opacity: 0.88;
  transform: translateY(-1px);
}

.logo-img-footer {
  height: 72px;
  max-width: 280px;
  background: transparent;
}

.footer-logo {
  display: inline-flex;
  background: transparent;
  line-height: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-img-why {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.btn-white {
  background: var(--accent-secondary);
  color: #ffffff;
  font-weight: 600;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--accent-navy);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.offer-closed {
  --offer-bar-height: 0px;
}

.header.offer-closed .offer-bar {
  display: none;
  padding: 0;
  border: none;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Top Offer Bar */
.offer-bar {
  height: var(--offer-bar-height);
  overflow: hidden;
  background: linear-gradient(90deg, #001f3f 0%, #0a3560 40%, #2d8a5e 100%);
  position: relative;
  transition: height 0.35s ease;
}

.offer-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: offerShine 3s ease-in-out infinite;
}

@keyframes offerShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.offer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.offer-bar-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.offer-bar-content p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
}

.offer-bar-content strong {
  color: #7ed4a8;
  font-weight: 700;
}

.offer-flash {
  display: inline-flex;
  padding: 3px 10px;
  background: #f59e0b;
  color: #001f3f;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  animation: offerPulse 2s ease infinite;
  flex-shrink: 0;
}

@keyframes offerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.offer-link {
  color: #ffffff;
  font-weight: 600;
  margin-left: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.offer-link:hover {
  color: #7ed4a8;
}

.offer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.offer-phone:hover {
  background: rgba(255, 255, 255, 0.2);
}

.offer-phone .ui-icon {
  width: 14px;
  height: 14px;
}

.offer-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.offer-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
  flex-shrink: 0;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(76, 175, 125, 0.12), rgba(76, 175, 125, 0.06));
  border: 1px dashed var(--accent);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--accent-light);
  white-space: nowrap;
  transition: var(--transition-fast);
  animation: chipGlow 3s ease-in-out infinite;
}

@keyframes chipGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 125, 0); }
  50% { box-shadow: 0 0 12px rgba(76, 175, 125, 0.25); }
}

.nav-offer-chip:hover {
  background: var(--bg-tertiary);
  transform: translateY(-1px);
}

.chip-spark {
  color: #f59e0b;
  font-size: 0.9rem;
  animation: sparkSpin 4s linear infinite;
}

@keyframes sparkSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
}

.chip-text strong {
  color: var(--accent-light);
  font-weight: 800;
}

.nav-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-cta-note {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.nav-offer-mobile,
.nav-offer-mobile .offer-chip-mobile {
  display: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-radius: 100px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-cta-mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 8px;
}

.nav-cta-mobile .nav-cta-note {
  text-align: center;
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-total);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(76, 175, 125, 0.12), transparent),
    linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 100%);
}

.hero-gradient-ring {
  position: absolute;
  top: 10%;
  right: 5%;
  width: min(520px, 50vw);
  height: min(520px, 50vw);
  border-radius: 50%;
  border: 1px solid rgba(76, 175, 125, 0.15);
  background: radial-gradient(circle, rgba(76, 175, 125, 0.06) 0%, transparent 70%);
  animation: ringSpin 30s linear infinite;
}

@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.badge-tag {
  padding: 4px 12px;
  background: var(--gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-desc strong {
  color: var(--accent-light);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-cta-primary {
  box-shadow: 0 8px 32px var(--accent-glow);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  max-width: 520px;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.hero-trust-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-trust-rating .stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hero-trust-rating span:last-child {
  text-transform: none;
  font-size: 0.72rem;
}

/* Hero Visual / Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 40px 80px rgba(0, 31, 63, 0.12);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mockup-wrap:hover .hero-mockup {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-url {
  flex: 1;
  margin-left: 8px;
  padding: 6px 14px;
  background: var(--bg-card);
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

.mockup-screen {
  height: 280px;
  overflow: hidden;
}

.mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  animation: heroFloat 5s ease-in-out infinite;
  z-index: 2;
}

.hero-float strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-float span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-float-1 {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.hero-float-2 {
  top: 42%;
  right: -12%;
  animation-delay: -1.5s;
}

.hero-float-3 {
  bottom: 6%;
  left: -4%;
  animation-delay: -3s;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76, 175, 125, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 175, 125, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(76, 175, 125, 0.15);
  top: -10%;
  right: -10%;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 31, 63, 0.06);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(126, 212, 168, 0.2);
  top: 40%;
  left: 40%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 125, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(76, 175, 125, 0); }
}

.title-line {
  display: block;
  overflow: hidden;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navy-text {
  color: #001f3f;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CREDIBILITY (Stats + Global + Trust)
   ============================================ */
.credibility {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #ffffff 100%);
}

.credibility-header {
  text-align: center;
  margin-bottom: 48px;
}

.credibility-title {
  margin-top: 4px;
}

.credibility-stats {
  margin-bottom: 28px;
}

.credibility-global {
  margin-bottom: 28px;
}

.credibility-global-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #001f3f 0%, #0a3560 50%, #1a6b4a 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.credibility-global-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 0% 50%, rgba(76, 175, 125, 0.22), transparent 55%);
  pointer-events: none;
}

.credibility-global-inner > * {
  position: relative;
  z-index: 1;
}

.credibility-global {
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-desc {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.services-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(76, 175, 125, 0.1);
  top: -10%;
  right: -5%;
}

.services-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 31, 63, 0.05);
  bottom: 10%;
  left: -5%;
}

.services-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.services-intro-left .section-tag {
  margin-bottom: 16px;
}

.services-title {
  text-align: left;
  margin-bottom: 20px;
}

.services-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 520px;
}

.services-intro-right {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.services-stat-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stat-pill-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-pill-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(76, 175, 125, 0.07);
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition);
}

.service-card:hover .service-num {
  color: rgba(76, 175, 125, 0.12);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(76, 175, 125, 0.15), rgba(76, 175, 125, 0.05));
  border: 1px solid rgba(76, 175, 125, 0.2);
  border-radius: 16px;
  color: var(--accent-light);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px var(--accent-glow);
  transform: scale(1.05);
}

.service-icon-wrap .ui-icon {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  padding-right: 40px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  list-style: none;
}

.service-tags li {
  padding: 5px 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.02em;
}

.service-arrow {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--accent-light);
  transition: var(--transition);
  margin-top: auto;
}

.service-card:hover .service-arrow {
  background: var(--gradient);
  border-color: transparent;
  color: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* Featured AI card — spans full row */
.service-card-featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 40px 44px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(234, 245, 240, 0.6) 100%);
}

.service-card-featured .service-num {
  font-size: 5rem;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}

.service-card-featured .service-card-top {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex: 1;
}

.service-card-featured .service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card-featured .service-icon-wrap .ui-icon {
  width: 32px;
  height: 32px;
}

.service-card-featured h3 {
  font-size: 1.5rem;
  padding-right: 0;
}

.service-card-featured p {
  font-size: 0.95rem;
  max-width: 560px;
}

.service-card-featured .service-tags {
  margin-bottom: 0;
}

.service-card-featured .service-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  align-self: center;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--bg-secondary);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}

.why-center-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  animation: ringPulse 3s ease infinite;
}

.why-center-ring .why-center-icon {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 12px;
}

@keyframes ringPulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 0 40px var(--accent-glow), var(--shadow-lg); }
}

.why-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 { top: 10%; left: 5%; animation-delay: 0s; }
.card-2 { top: 20%; right: 0; animation-delay: -2s; }
.card-3 { bottom: 15%; left: 10%; animation-delay: -4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.why-us-content .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.why-list {
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.why-item:hover {
  color: var(--text-primary);
  padding-left: 8px;
}

.why-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(76, 175, 125, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================================
   SOLUTIONS
   ============================================ */
.solutions-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.solution-item {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.solution-item:first-child {
  border-top: 1px solid var(--border);
}

.solution-item:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, var(--bg-tertiary), transparent);
}

.solution-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.solution-item:hover .solution-num {
  color: var(--accent-light);
}

.solution-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.solution-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   WORK / PORTFOLIO — Alternating showcase
   ============================================ */
.work {
  background: var(--bg-primary);
}

.work-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.work-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.work-row:first-child {
  padding-top: 0;
}

.work-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.work-row-reverse .work-row-media {
  order: 2;
}

.work-row-reverse .work-row-content {
  order: 1;
}

.work-row-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-tertiary);
  aspect-ratio: 16 / 10;
}

.work-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-row:hover .work-row-media img {
  transform: scale(1.03);
}

.work-row-content {
  padding: 8px 0;
}

.work-row-tag {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.work-row-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.work-row-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.work-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.work-row-meta li {
  padding: 6px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.work-footer {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.work-footer p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ============================================
   ICON SYSTEM (Lucide-style SVG)
   ============================================ */
.ui-icon {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(76, 175, 125, 0.1) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--accent-light);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.icon-box-sm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.icon-box-sm .ui-icon {
  width: 22px;
  height: 22px;
}

.industry-card:hover .icon-box,
.trust-item:hover .icon-box {
  background: var(--gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Global reach (inside credibility block) */
.global-reach-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4caf7d, #2d8a5e);
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(76, 175, 125, 0.45);
}

.global-reach-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.global-reach-copy {
  flex: 1;
  min-width: 180px;
}

.global-reach-tag {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 8px;
  background: rgba(76, 175, 125, 0.25);
  border: 1px solid rgba(76, 175, 125, 0.45);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7ed4a8;
}

.global-reach-copy h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.global-reach-copy p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.global-reach-countries {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin-left: auto;
}

.global-reach-countries li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.global-reach-countries li:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(76, 175, 125, 0.6);
  transform: translateY(-2px);
}

.country-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

/* Trust pillars — full-width strip below hero */
.trust-pillars {
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-pillars-grid .trust-item {
  padding: 28px clamp(16px, 3vw, 32px);
  border-radius: 0;
  border-right: 1px solid var(--border);
}

.trust-pillars-grid .trust-item:last-child {
  border-right: none;
}

.trust-pillars-grid .trust-item:hover {
  background: var(--bg-secondary);
}

.trust-item:hover {
  background: var(--bg-secondary);
}

.trust-icon {
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries {
  background: var(--bg-secondary);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

/* ============================================
   PACKAGES (CROSS-SELL)
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.package-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  white-space: nowrap;
}

.package-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.package-price {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.package-features {
  flex: 1;
  margin-bottom: 28px;
}

.package-features li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.packages-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.packages-note a {
  color: var(--accent-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--bg-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-light);
  box-shadow: var(--shadow-sm);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.faq-intro .section-title {
  text-align: left;
}

.faq-intro p {
  color: var(--text-secondary);
  margin: 16px 0 28px;
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  min-height: 300px;
}

.testimonial-card {
  display: none;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}

.testimonial-card.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  margin-bottom: -20px;
}

.testimonial-card blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.dot.active,
.dot:hover {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 0 0 120px;
}

.cta-box {
  position: relative;
  padding: 80px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.cta-box h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  position: relative;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-icon {
  flex-shrink: 0;
}

.contact-details a:hover {
  color: var(--accent-light);
}

.contact-form {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76, 175, 125, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b8494' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1da851);
  border-color: transparent;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee872, #25d366);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-wa-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.form-whatsapp-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-tagline {
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-brand p:not(.footer-tagline) {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-light);
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.scroll-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.scroll-top:hover {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  padding: 8px 14px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: var(--transition-fast);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 64px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-mockup-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-float-1 { left: 0; }
  .hero-float-2 { right: 0; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-pillars-grid .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-pillars-grid .trust-item:nth-child(1),
  .trust-pillars-grid .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    display: flex;
    gap: 20px;
    text-align: left;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }

  .process-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-intro .section-title {
    text-align: center;
  }

  .faq-intro {
    text-align: center;
  }

  .faq-intro .btn {
    width: 100%;
    max-width: 280px;
  }

  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-intro-right {
    justify-content: flex-start;
  }

  .work-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }

  .work-row-reverse .work-row-media,
  .work-row-reverse .work-row-content {
    order: unset;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .logo-img {
    height: 48px;
    max-width: 200px;
  }

  .logo-img-footer {
    height: 46px;
    max-width: 200px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }

  .footer-links h4,
  .footer-contact h4 {
    text-align: center;
  }

  .footer-links ul {
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .offer-phone {
    display: none;
  }

  :root {
    --header-height: 68px;
  }

  .offer-bar {
    height: auto;
    min-height: var(--offer-bar-height);
    overflow: visible;
    flex-shrink: 0;
  }

  .offer-bar-inner {
    height: auto;
    min-height: 40px;
    padding: 10px 44px 10px 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .offer-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .offer-bar-content .offer-flash {
    display: none;
  }

  .offer-bar-content p {
    font-size: 0.72rem;
    text-align: left;
    line-height: 1.45;
  }

  .offer-link {
    display: none;
  }

  .offer-close {
    top: 10px;
    right: 12px;
    transform: none;
  }

  .nav {
    height: auto;
    min-height: var(--header-height);
    padding: 8px 0;
  }

  .nav-offer-mobile {
    display: none;
    list-style: none;
  }

  .nav-links.open .nav-offer-mobile {
    display: block;
    margin-top: 12px;
  }

  .offer-chip-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(76, 175, 125, 0.1));
    border: 1px dashed var(--accent);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
  }

  .offer-chip-mobile strong {
    color: var(--accent-light);
  }

  .nav-cta-mobile {
    display: none;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  .nav-links.open .nav-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-total);
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 32px 24px 40px;
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open .nav-link {
    font-size: 1.1rem;
    padding: 14px 20px;
    width: 100%;
  }

  /* Why Choose Us — content first, clean feature cards */
  .why-us-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .why-us-content {
    order: 1;
    text-align: center;
  }

  .why-us-visual {
    order: 2;
    width: 100%;
  }

  .why-card-stack {
    aspect-ratio: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .why-center-ring {
    display: none;
  }

  .why-float-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    animation: none;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding: 16px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
  }

  .card-1,
  .card-2,
  .card-3 {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .why-us-content .section-title {
    text-align: center;
  }

  .why-us-content .section-tag {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .why-us-content .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero {
    min-height: auto;
  }

  .hero .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-layout {
    padding: 24px 0 56px;
    gap: 28px;
  }

  .hero-visual {
    display: none;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    padding: 14px 12px;
    gap: 8px;
    text-align: center;
  }

  .hero-trust-divider {
    display: none;
  }

  .hero-trust-item {
    align-items: center;
  }

  .hero-trust-item strong {
    font-size: 1.05rem;
  }

  .hero-trust-item span {
    font-size: 0.62rem;
  }

  .hero-trust-rating {
    grid-column: 1 / -1;
    align-items: center;
    padding-top: 10px;
    margin-top: 2px;
    border-top: 1px solid var(--border);
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero-actions {
    margin-bottom: 28px;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .scroll-indicator {
    display: none;
  }

  .whatsapp-float {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-row {
    gap: 20px;
    padding: 32px 0;
  }

  .work-footer {
    margin-top: 40px;
    padding-top: 36px;
  }

  .services-intro {
    margin-bottom: 40px;
  }

  .services-title {
    text-align: center;
  }

  .services-lead {
    text-align: center;
    max-width: none;
  }

  .services-intro-left {
    text-align: center;
  }

  .services-intro-right {
    justify-content: center;
  }

  .credibility {
    padding: 72px 0;
  }

  .credibility-global-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 20px;
  }

  .global-reach-copy {
    min-width: 0;
  }

  .global-reach-countries {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }

  .global-reach-countries li {
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }

  .trust-pillars-grid .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 20px;
  }

  .trust-pillars-grid .trust-item:last-child {
    border-bottom: none;
  }

  .trust-pillars-grid .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-pillars-grid .trust-item:nth-child(1),
  .trust-pillars-grid .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .service-card-featured {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 28px;
    gap: 24px;
  }

  .service-card-featured .service-card-top {
    flex-direction: column;
    gap: 20px;
  }

  .service-card-featured .service-num {
    font-size: 3.5rem;
    top: 16px;
    right: 20px;
    transform: none;
  }

  .service-card-featured .service-arrow {
    align-self: flex-end;
  }

  .solution-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-trust {
    padding: 12px 8px;
    gap: 6px;
  }

  .hero-trust-item strong {
    font-size: 0.95rem;
  }

  .hero-trust-item span {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .stat-card {
    padding: 24px 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-card {
    padding: 28px 20px;
  }

  .services-stat-pill {
    flex: 1;
    padding: 16px 18px;
  }

  .stat-pill-num {
    font-size: 1.5rem;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  --header-total: var(--header-height);
}

.legal-main {
  padding: calc(var(--header-total) + 48px) 0 80px;
  background: var(--bg-secondary);
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin: 16px 0 8px;
}

.legal-subtitle {
  font-size: 1rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.legal-intro {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 1.05rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.legal-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-light);
  margin: 16px 0 10px;
}

.legal-section p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.legal-section ul {
  list-style: none;
  margin: 12px 0;
}

.legal-section li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-section li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
}

.legal-contact-box {
  margin-top: 16px;
  padding: 24px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.legal-contact-box p {
  margin-bottom: 8px;
}

.legal-contact-box a {
  color: var(--accent-light);
  font-weight: 500;
}

.legal-contact-box a:hover {
  text-decoration: underline;
}

.legal-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 28px 20px;
  }

  .legal-nav-links {
    flex-direction: column;
  }

  .legal-nav-links .btn {
    width: 100%;
  }
}
