/* ===== TOKENS ===== */
:root {
  --bg:           #07080f;
  --bg-2:         #0c0e1a;
  --bg-card:      rgba(255,255,255,0.04);
  --bg-card-h:    rgba(255,255,255,0.07);
  --border:       rgba(255,255,255,0.08);
  --border-h:     rgba(64,224,208,0.35);
  --accent:       #40E0D0;
  --accent-2:     #2DB5A0;
  --text:         #e8eeff;
  --text-muted:   #8892ac;
  --text-dim:     #454d66;
  --white:        #ffffff;
  --grad:         linear-gradient(135deg,#40E0D0 0%,#2DB5A0 100%);
  --grad-card:    linear-gradient(145deg,rgba(64,224,208,.07),rgba(45,181,160,.03));
  --shadow:       0 8px 40px rgba(0,0,0,.5);
  --fh: 'Montserrat', sans-serif;
  --fb: 'Montserrat', sans-serif;
  --r:            16px;
  --r-sm:         10px;
  --ease:         cubic-bezier(.4,0,.2,1);
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 48px; --s7: 64px; --s8: 80px; --s9: 96px;

  --glow-rgb: 64, 224, 208;
  --glow-color: rgba(var(--glow-rgb), 1);
  --glow-glow: rgba(var(--glow-rgb), 0.2);
  --glow-border: rgba(var(--glow-rgb), 0.8);
  --glow-bg: #0F1716;
  --glow-border-static: #2A3B38;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-width: 320px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(var(--s3), 4vw, var(--s6));
}
.section     { padding-block: clamp(var(--s7), 8vw, var(--s9)); }
.section-sm  { padding-block: clamp(var(--s5), 5vw, var(--s7)); }

/* ===== TYPE ===== */
.hl { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* Hero heading uses Space Grotesk */
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
}
.badge {
  display: inline-flex; align-items: center; gap: var(--s1);
  background: rgba(64,224,208,.09); border: 1px solid rgba(64,224,208,.2);
  color: var(--accent); font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: var(--s3);
}
.badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--accent); flex-shrink:0; }

h1 {
  font-family: var(--fh);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.07; letter-spacing: -.025em;
  color: var(--white);
}
h2.section-title {
  font-family: var(--fh);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 700; line-height: 1.15; color: var(--white);
  margin-bottom: var(--s2);
}
.section-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-muted);
  line-height: 1.75; max-width: 540px;
}
.section-header { margin-bottom: clamp(var(--s5), 5vw, var(--s7)); }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-inline: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s1); font-weight: 500;
  font-size: clamp(14px, 1.3vw, 15px);
  padding: 13px clamp(20px, 2.5vw, 28px);
  border-radius: 100px; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease);
  border: none; outline: none; white-space: nowrap;
  min-height: 44px;
}
.btn-primary {
  background: var(--grad); color: var(--white);
  box-shadow: 0 4px 24px rgba(64,224,208,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(64,224,208,.44); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(64,224,208,0.4);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-block { width: 100%; }

/* ===== LOGO ===== */
.logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: transparent; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 1000;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
}
nav.scrolled {
  background: rgba(7,8,15,.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin-inline: auto;
  padding-inline: clamp(var(--s3), 4vw, var(--s6));
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
/* CHANGE 3: Vihanga logo text uses Montserrat font */
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2vw, 22px); font-weight: 800;
  color: var(--white); display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: clamp(20px, 3vw, 36px); }
.nav-links a { font-size: 13.5px; font-weight: 400; color: var(--text-muted); transition: color .2s; padding-block: 4px; }
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-cta .btn-ghost {
  background: rgba(64,224,208,0.08);
  border-color: rgba(64,224,208,0.25);
  color: var(--accent);
  font-weight: 600;
}
.nav-cta .btn-ghost:hover {
  background: rgba(64,224,208,0.15);
  border-color: rgba(64,224,208,0.5);
  color: var(--white);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border-radius: 6px;
  background: transparent; border: none;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-muted); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(7,8,15,.97); backdrop-filter: blur(24px);
  align-items: center; justify-content: center; gap: var(--s5);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--fh); font-size: clamp(26px, 7vw, 36px); font-weight: 700;
  color: var(--text-muted); transition: color .2s;
}
.mobile-menu a:hover { color: var(--white); }

/* ===== HERO (RESTORED TO ORIGINAL) ===== */
#hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-block-start: 68px;
}
/* Shift hero content slightly to the right on desktop */
@media (min-width: 900px) {
  .hero-content {
    padding-right: clamp(40px, 1vw, 0px);
  }
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(64,224,208,.13) 0%, transparent 68%),
    radial-gradient(ellipse 45% 35% at 85% 65%, rgba(45,181,160,.08) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 80%);
}
.hero-layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(var(--s5), 5vw, var(--s8));
  align-items: center;
  padding-block: clamp(var(--s7), 8vw, var(--s9));
}
@media (min-width: 900px) { .hero-layout { grid-template-columns: 1fr 420px; } }
@media (min-width: 1100px) { .hero-layout { grid-template-columns: 1fr 500px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(11px, 1.2vw, 13px); font-weight: 500; letter-spacing: .07em;
  color: var(--accent); text-transform: uppercase; margin-bottom: var(--s4);
}
.hero-eyebrow::before {
  content:''; width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(64,224,208,.6));
}
h1 { margin-bottom: var(--s3); }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px); color: var(--text-muted);
  max-width: 510px; line-height: 1.78; margin-bottom: var(--s5);
}
.hero-actions { display: flex; gap: var(--s2); flex-wrap: wrap; }
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: var(--s5) var(--s6);
  margin-top: clamp(var(--s5), 5vw, var(--s7));
  padding-top: clamp(var(--s4), 4vw, var(--s5));
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-num {
  font-family: var(--fh); font-size: clamp(26px, 3vw, 34px); font-weight: 800;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.stat-label { font-size: 12.5px; color: var(--text-muted); }

.hero-visual { display: none; position: relative; }
@media (min-width: 900px) { .hero-visual { display: block; } }
.orbit-wrap {
  position: relative; width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.045); }
.orbit-1 { width: 55%; height: 55%; animation: spin 20s linear infinite; }
.orbit-2 { width: 78%; height: 78%; animation: spin 32s linear infinite reverse; }
.orbit-3 { width: 100%; height: 100%; animation: spin 48s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-dot { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); width: 9px; height: 9px; border-radius: 50%; }
.od-b { background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.od-p { background: var(--accent-2); box-shadow: 0 0 14px var(--accent-2); }
.center-orb {
  width: clamp(100px, 12vw, 140px); height: clamp(100px, 12vw, 140px);
  border-radius: 50%; background: rgba(7,8,15,.6);
  border: 1.5px solid rgba(64,224,208,.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 80px rgba(64,224,208,.18), inset 0 0 30px rgba(64,224,208,.06);
  animation: pulse-orb 3.5s ease-in-out infinite; padding: 18px;
}
.center-orb img { width: 100%; height: 100%; object-fit: contain; display: block; }
@keyframes pulse-orb {
  0%,100% { box-shadow: 0 0 60px rgba(64,224,208,.15), inset 0 0 30px rgba(64,224,208,.04); border-color: rgba(64,224,208,.2); }
  50%      { box-shadow: 0 0 100px rgba(64,224,208,.32), inset 0 0 40px rgba(64,224,208,.08); border-color: rgba(64,224,208,.45); }
}
.float-chip {
  position: absolute; background: rgba(13,14,26,.92);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 9px 14px; backdrop-filter: blur(20px);
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 500; color: var(--white);
  box-shadow: var(--shadow); white-space: nowrap;
}
.chip-1 { top: 19%; right: 4%; animation: floatY 4.2s ease-in-out infinite; }
.chip-2 { bottom: 18%; left: -2%; animation: floatY 4.8s ease-in-out -1.5s infinite; }
.chip-3 { top: 46%; left: -6%; animation: floatY 3.9s ease-in-out -3s infinite; }
.chip-4 { top: 11%; left: -3%; animation: floatY 2.9s ease-in-out -3s infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.chip-icon { width: 38px; height: 38px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 15px; }

/* ===== MARQUEE — GLOWING TEXT ===== */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 18px; background: rgba(255,255,255,.01);
}
.marquee-track {
  display: flex; gap: clamp(32px, 5vw, 64px);
  white-space: nowrap; animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
/* CHANGE 2: Marquee items glow */
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--accent);
  flex-shrink: 0;
  /* text-shadow:
    0 0 6px rgba(166, 149, 149, 0.6),
    0 0 18px rgba(160, 149, 149, 0.35),
    0 0 40px rgba(255, 255, 255, 0.15); */
}
.marquee-item span {
  font-size: 18px; opacity: 1;
  filter: drop-shadow(0 0 6px rgba(110, 116, 115, 0.5));
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ====================================================================
   MAGIC BENTO
   ==================================================================== */
.bento-grid {
  display: grid; gap: 0.5em; padding: 0.75em;
  max-width: 100%; font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  position: relative; user-select: none;
}
.magic-card {
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; min-height: 200px; width: 100%; max-width: 100%;
  padding: 1.25em; border-radius: 20px;
  border: 1px solid var(--glow-border-static); background: var(--glow-bg);
  font-weight: 200; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  --glow-x: 50%; --glow-y: 50%; --glow-intensity: 0; --glow-radius: 200px;
}
.magic-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.magic-card--glow::after {
  content: ''; position: absolute; inset: 0; padding: 6px;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(var(--glow-rgb), calc(var(--glow-intensity) * 0.3)) 0%,
    rgba(var(--glow-rgb), calc(var(--glow-intensity) * 0.15)) 30%,
    transparent 60%
  );
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none; opacity: 1; transition: opacity .3s ease; z-index: 1;
}
.magic-card--glow:hover::after { opacity: 1; }
.magic-card--glow:hover { box-shadow: 0 4px 20px rgba(15,50,46,.15), 0 0 15px var(--glow-glow); }
.bento-particle {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: rgba(var(--glow-rgb), 1); box-shadow: 0 0 6px rgba(var(--glow-rgb), 0.6);
  pointer-events: none; z-index: 100;
}
.bento-ripple {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.4) 0%, rgba(var(--glow-rgb), 0.2) 30%, transparent 70%);
  pointer-events: none; z-index: 1000;
}
.global-spotlight {
  position: fixed; width: 800px; height: 800px; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(var(--glow-rgb), 0.06) 0%, rgba(var(--glow-rgb), 0.03) 15%,
    rgba(var(--glow-rgb), 0.015) 25%, rgba(var(--glow-rgb), 0.008) 40%,
    rgba(var(--glow-rgb), 0.004) 65%, transparent 70%
  );
  z-index: 200; opacity: 0; transform: translate(-50%, -50%);
  mix-blend-mode: screen; will-change: transform, opacity;
}

/* --- CHANGE 4: SERVICES bento layout — UNIFORM GRID --- */
@media (max-width: 599px) { .bento-grid { grid-template-columns: 1fr; width: 100%; padding: 0.5em; } }
@media (min-width: 600px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .bento-grid--services { grid-template-columns: repeat(3, 1fr); }
  /* Center the 7th card in the last row */
  .bento-grid--services .magic-card:nth-child(7) {
    grid-column: 2;
  }
}

/* Uniform service card sizing */
.bento-grid--services .magic-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.bento-grid--services .magic-card > div {
  flex: 1 1 auto;
}
.bento-grid--services .magic-card .svc-desc {
  hyphens: auto;
}

.svc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s2); margin-bottom: var(--s3); }
.svc-icon {
  width: clamp(40px, 5vw, 52px); height: clamp(40px, 5vw, 52px);
  border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.svc-icon svg { width: 22px; height: 22px; }
.si-turq   { background: rgba(64,224,208,.14); }
.si-teal   { background: rgba(45,181,160,.14); }
.si-green  { background: rgba(52,211,153,.14); }
.si-orange { background: rgba(251,146,60,.14); }
.si-pink   { background: rgba(236,72,153,.14); }
.svc-pill {
  font-size: 11px; font-weight: 500; letter-spacing: .04em;
  color: var(--text-dim); padding: 4px 12px; border-radius: 100px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  white-space: nowrap; flex-shrink: 0;
}
.svc-title {
  font-family: var(--fh); font-size: clamp(16px, 1.8vw, 19px); font-weight: 700;
  color: var(--white); line-height: 1.3; margin-bottom: var(--s1);
}
.svc-desc { font-size: clamp(13px, 1.2vw, 14px); color: var(--text-muted); line-height: 1.68; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--accent);
  margin-top: var(--s3); transition: gap .2s, color .2s;
  position: relative; z-index: 2;
}
.svc-link:hover { gap: 10px; color: var(--white); }
.svc-link svg { width: 14px; height: 14px; }

/* ===== ABOUT SECTION ===== */
.about-layout {
  display: grid; gap: clamp(var(--s5), 5vw, var(--s8));
  align-items: start;
}
@media (min-width: 860px) { .about-layout { grid-template-columns: 1.2fr 1fr; } }
.about-desc {
  font-size: clamp(14px, 1.4vw, 16px); color: var(--text-muted);
  line-height: 1.78; margin-bottom: var(--s2);
}
.about-values { display: flex; flex-direction: column; gap: var(--s2); margin-top: var(--s5); }
.about-value {
  display: flex; align-items: flex-start; gap: var(--s2);
  padding: clamp(var(--s2), 2.5vw, var(--s3)); border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.03);
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.about-value:hover {
  border-color: rgba(var(--glow-rgb), 0.35);
  background: rgba(var(--glow-rgb), 0.05);
  transform: translateX(4px);
}
.av-icon {
  width: 40px; height: 40px; border-radius: 11px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.av-icon svg { width: 19px; height: 19px; stroke: white; fill: none; }
.av-title {
  font-family: var(--fh); font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 3px;
}
.av-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.about-visual { display: flex; flex-direction: column; gap: var(--s3); }
.about-stat-card {
  background: var(--grad-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: clamp(var(--s4), 4vw, var(--s6));
  text-align: center;
}
.about-stat-big {
  font-family: var(--fh); font-size: clamp(48px, 7vw, 72px); font-weight: 800;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.about-stat-label {
  font-family: var(--fh); font-size: clamp(14px, 1.5vw, 17px); font-weight: 700;
  color: var(--white); margin-top: var(--s1);
}
.about-stat-desc {
  font-size: 13px; color: var(--text-muted); margin-top: var(--s1); line-height: 1.6;
}
.about-stat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2);
}
.about-stat-mini {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: clamp(var(--s2), 2vw, var(--s3));
  text-align: center;
  transition: border-color .25s, transform .25s var(--ease);
}
.about-stat-mini:hover {
  border-color: rgba(var(--glow-rgb), 0.35);
  transform: translateY(-2px);
}
.asm-num {
  font-family: var(--fh); font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.asm-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.about-location {
  display: flex; align-items: center; gap: var(--s2);
  padding: clamp(var(--s2), 2vw, var(--s3));
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.about-location svg {
  width: 20px; height: 20px; stroke: var(--accent); fill: none; flex-shrink: 0;
}
.al-title { font-size: 13.5px; font-weight: 600; color: var(--white); }
.al-sub { font-size: 12px; color: var(--text-muted); }

/* ===== HOW WE WORK ===== */
.process-timeline {
  position: relative;
  display: flex; flex-direction: column; gap: 0;
}
.process-line {
  position: absolute; left: 27px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, rgba(64,224,208,.3), rgba(64,224,208,.08));
  border-radius: 2px;
}
@media (min-width: 768px) {
  .process-timeline {
    flex-direction: row; gap: 0;
    padding-top: 60px;
  }
  .process-line {
    left: 10%; right: 10%; top: 60px; bottom: auto;
    width: auto; height: 2px;
    background: linear-gradient(90deg, rgba(64,224,208,.3), rgba(64,224,208,.08));
  }
}
.process-step {
  position: relative;
  padding-left: 64px;
  padding-bottom: clamp(var(--s4), 4vw, var(--s6));
  flex: 1;
}
@media (min-width: 768px) {
  .process-step { padding-left: 0; padding-bottom: 0; padding-top: 20px; }
}
.process-step:last-child { padding-bottom: 0; }
.step-marker { position: relative; display: flex; align-items: center; gap: 12px; }
@media (min-width: 768px) {
  .step-marker { flex-direction: column; gap: 8px; align-items: center; }
}
.step-num {
  font-family: var(--fh); font-size: 13px; font-weight: 800; color: var(--accent);
  letter-spacing: .04em;
}
@media (min-width: 768px) {
  .step-num { order: 1; }
}
.step-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg); border: 2.5px solid var(--accent);
  flex-shrink: 0; position: relative; z-index: 2;
  box-shadow: 0 0 12px rgba(64,224,208,.25);
}
@media (max-width: 767px) {
  .step-marker { position: absolute; left: 0; top: 4px; }
}
@media (min-width: 768px) {
  .step-dot { order: 0; width: 16px; height: 16px; }
}
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: clamp(var(--s3), 3vw, var(--s4));
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step-card:hover {
  border-color: rgba(var(--glow-rgb), 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
@media (min-width: 768px) { .step-card { text-align: center; } }
.step-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(64,224,208,.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: var(--s2);
}
@media (min-width: 768px) { .step-icon { margin-inline: auto; margin-bottom: var(--s2); } }
.step-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; }
.step-card h3 {
  font-family: var(--fh); font-size: clamp(15px, 1.6vw, 18px); font-weight: 700;
  color: var(--white); margin-bottom: var(--s1); line-height: 1.3;
}
.step-card p {
  font-size: clamp(12.5px, 1.2vw, 14px); color: var(--text-muted); line-height: 1.7;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s6);
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

.pf-card {
  background: var(--glow-bg);
  border: 1px solid var(--glow-border-static);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  border-color: rgba(var(--glow-rgb), .3);
}
.pf-card-more { opacity: .65; }
.pf-card-more:hover { opacity: 1; }

.pf-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pf-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.15) 0%, transparent 60%);
  pointer-events: none;
}
.pf-icon {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}

.pf-body {
  padding: clamp(var(--s3), 2.5vw, var(--s4));
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pf-name {
  font-family: var(--fh);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: var(--s1);
}
.pf-desc {
  font-size: clamp(12.5px, 1.2vw, 13.5px);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--s2);
  flex: 1;
}
.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--s3);
}
.pf-tags span {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: .02em;
}
.pf-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1.5px solid rgba(var(--glow-rgb), .35);
  border-radius: 8px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
  align-self: flex-start;
  font-family: inherit;
}
.pf-view-btn:hover {
  background: rgba(var(--glow-rgb), .1);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

/* Portfolio Footer */
.portfolio-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
}
.pf-result-count {
  font-size: 13px;
  color: var(--text-dim);
}
.pf-pagination {
  display: flex;
  gap: 6px;
}
.pf-page {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.pf-page:hover { border-color: var(--border-h); color: var(--white); }
.pf-page.active {
  background: var(--grad);
  color: white;
  border-color: transparent;
}

/* ===== PROJECT DETAIL MODAL ===== */
.pf-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  padding: var(--s3);
  overflow-y: auto;
}
.pf-modal-overlay.open { opacity: 1; pointer-events: all; }

.pf-modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateY(30px) scale(.96);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  margin: auto;
}
.pf-modal-overlay.open .pf-modal { transform: translateY(0) scale(1); }

.pf-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s;
}
.pf-modal-close:hover { background: rgba(255,255,255,.15); }

.pf-modal-header {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pf-modal-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.pf-modal-icon {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}

.pf-modal-body {
  padding: clamp(var(--s4), 4vw, var(--s6));
}
.pf-modal-body h2 {
  font-family: var(--fh);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s2);
  line-height: 1.3;
}
.pf-modal-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--s4);
}
.pf-modal-tech span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(64,224,208,.08);
  border: 1px solid rgba(64,224,208,.2);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .03em;
}
.pf-modal-section {
  margin-bottom: var(--s4);
}
.pf-modal-section h4 {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s1);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pf-modal-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.pf-modal-section ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 480px) { .pf-modal-section ul { grid-template-columns: 1fr; } }
.pf-modal-section ul li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.pf-modal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pf-modal-result-box {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: var(--s3);
  background: rgba(64,224,208,.06);
  border: 1px solid rgba(64,224,208,.15);
  border-radius: var(--r-sm);
  margin-top: var(--s3);
}
.pf-modal-result-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}
.pf-modal-result-box p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* --- WHY US bento layout (SECOND CARD REMOVED, CENTERED) --- */
.bento-grid--why { grid-template-columns: 1fr !important; max-width: 100%; }
@media (min-width: 900px) {
  .bento-grid--why {
    grid-template-columns: 1fr !important;
    max-width: 900px;
    margin-inline: auto;
    align-items: start;
  }
}
.why-pt-icon {
  width: 40px; height: 40px; border-radius: 11px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-pt-icon svg { width: 19px; height: 19px; fill: white; }
.why-pt-title {
  font-family: var(--fh); font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 3px;
}
.why-pt-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.why-points { display: flex; flex-direction: column; gap: var(--s2); margin-top: var(--s5); }
.why-point {
  display: flex; align-items: flex-start; gap: var(--s2);
  padding: clamp(var(--s2), 2.5vw, var(--s3)); border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.03);
  transition: border-color .25s, background .25s, transform .25s var(--ease);
  position: relative; z-index: 2;
}
.why-point:hover {
  border-color: rgba(var(--glow-rgb), 0.35);
  background: rgba(var(--glow-rgb), 0.05);
  transform: translateX(4px);
}
.why-big-num {
  font-family: var(--fh); font-size: clamp(56px, 8vw, 80px); font-weight: 800;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 6px; position: relative; z-index: 2;
}
.why-big-label { font-size: 14px; color: var(--text-muted); margin-bottom: var(--s4); position: relative; z-index: 2; }
.why-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); position: relative; z-index: 2; }
.why-mini {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-sm); padding: var(--s2);
}
.why-mini-emoji { font-size: 22px; margin-bottom: 6px; }
.why-mini-lbl { font-size: 12px; font-weight: 500; color: var(--text-muted); }
/* ===== WHY US ACCORDION ===== */
.why-accordion {
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.why-accordion:hover {
  border-color: rgba(var(--glow-rgb), 0.35);
  background: rgba(var(--glow-rgb), 0.04);
}
.why-accordion.open {
  border-color: rgba(var(--glow-rgb), 0.45);
  background: rgba(var(--glow-rgb), 0.06);
  box-shadow: 0 4px 24px rgba(var(--glow-rgb), .08);
}

.why-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.why-acc-header:hover {
  background: rgba(255,255,255,.02);
}

.why-acc-left {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.why-acc-chevron {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease), background .25s;
}
.why-acc-chevron svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-dim);
  transition: stroke .25s;
}
.why-accordion.open .why-acc-chevron {
  transform: rotate(180deg);
  background: rgba(var(--glow-rgb), .12);
}
.why-accordion.open .why-acc-chevron svg {
  stroke: var(--accent);
}

.why-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), padding .35s var(--ease);
  padding: 0 clamp(16px, 2.5vw, 24px);
  padding-left: calc(56px + clamp(16px, 2.5vw, 24px));
}
.why-accordion.open .why-acc-body {
  max-height: 200px;
  padding-bottom: clamp(14px, 2vw, 20px);
}
.why-acc-body .why-pt-desc {
  font-size: clamp(13px, 1.2vw, 14.5px);
  color: var(--text-muted);
  line-height: 1.75;
}
/* --- TESTIMONIALS bento layout --- */
.bento-grid--testi { grid-template-columns: 1fr !important; max-width: 100%; }
@media (min-width: 640px) { .bento-grid--testi { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 1024px) { .bento-grid--testi { grid-template-columns: repeat(3, 1fr) !important; } }

.testi-stars { display: flex; gap: 2px; margin-bottom: var(--s2); }
.testi-stars span { color: #fbbf24; font-size: 15px; }
.testi-text {
  font-size: clamp(13px, 1.2vw, 14.5px);
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s4);
  padding-top: var(--s3);
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 2;
}
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white; flex-shrink: 0;
}
.av-t { background: linear-gradient(135deg, #40E0D0, #2DB5A0); }
.av-te { background: linear-gradient(135deg, #2DB5A0, #059669); }
.av-g { background: linear-gradient(135deg, #34d399, #16a34a); }
.av-o { background: linear-gradient(135deg, #fb923c, #ea580c); }
.av-pk { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.testi-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testi-role { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* ===== INTERNSHIP ===== */
.intern-wrap {
  display: grid; gap: clamp(var(--s5), 5vw, var(--s8));
  align-items: start;
}
@media (min-width: 860px) { .intern-wrap { grid-template-columns: 1fr 1fr; } }
.intern-title {
  font-family: var(--fh);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--s2);
}
.intern-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: var(--s4);
}
.intern-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: var(--s5);
}
.intern-tag {
  font-size: 12px; font-weight: 500;
  color: var(--accent);
  background: rgba(64,224,208,.08);
  border: 1px solid rgba(64,224,208,.2);
  padding: 5px 14px; border-radius: 100px;
}
.intern-benefits {
  display: flex; flex-direction: column; gap: var(--s2);
}
.intern-benefit {
  display: flex; align-items: flex-start; gap: var(--s2);
  padding: clamp(var(--s2), 2vw, var(--s3));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .25s, transform .25s var(--ease);
}
.intern-benefit:hover {
  border-color: rgba(var(--glow-rgb), 0.3);
  transform: translateX(4px);
}
.ib-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.intern-benefit span { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ===== BOOKING FORM ===== */
.form-layout {
  display: grid; gap: clamp(var(--s5), 5vw, var(--s8));
  align-items: start;
}
@media (min-width: 860px) { .form-layout { grid-template-columns: 1fr 1fr; } }

.form-info-title {
  font-family: var(--fh);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--s2);
}
.form-info-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: var(--s5);
}

.contact-chips {
  display: flex; flex-direction: column; gap: var(--s2);
}
.c-chip {
  display: flex; align-items: center; gap: var(--s2);
  padding: clamp(var(--s2), 2vw, var(--s3));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .25s;
}
.c-chip:hover { border-color: rgba(var(--glow-rgb), 0.3); }
.c-chip-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(64,224,208,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-chip-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; }
.c-chip-lbl { font-size: 12px; color: var(--text-dim); }
.c-chip-val { font-size: 14px; font-weight: 500; color: var(--white); }

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(var(--s4), 4vw, var(--s6));
}
.form-row {
  display: grid; gap: var(--s3);
}
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: var(--s3);
}
.form-group label {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.form-group label span { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: 14px;
  transition: border-color .25s, background .25s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(var(--glow-rgb), 0.5);
  background: rgba(255,255,255,.06);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238892ac' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option {
  background: var(--bg-2);
  color: var(--text);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.field-error {
  font-size: 12px;
  color: #f87171;
  display: none;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: rgba(248, 113, 113, 0.5);
}
.form-group.error .field-error {
  display: block;
}
/* -------quick responce---- */
.urgent-banner {
  text-align: center;
  padding: clamp(var(--s5), 5vw, var(--s7));
  background: var(--grad-card);
  border: 1px solid rgba(64,224,208,.15);
  border-radius: var(--r);
}
.urgent-banner h2 {
  font-family: var(--fh);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s2);
}
.urgent-banner p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-muted);
  margin-bottom: var(--s5);
}
.urgent-actions {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 14px 28px;
  background: var(--grad);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 24px rgba(64,224,208,.28);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(64,224,208,.44);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 14px 28px;
  background: #25D366;
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 24px rgba(37, 211, 102,.28);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102,.44);
}
.cta-final {
  text-align: center;
  padding: clamp(var(--s5), 5vw, var(--s7));
  background: var(--grad-card);
  border: 1px solid rgba(64,224,208,.15);
  border-radius: var(--r);
}
.cta-final h2 {
  font-family: var(--fh);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s2);
}
.cta-final p {
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-muted);
  margin-bottom: var(--s5);
}

/* ===== FOOTER ===== */
footer {
  padding-block: clamp(var(--s6), 6vw, var(--s8));
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  gap: clamp(var(--s5), 4vw, var(--s7));
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand { max-width: 300px; }
.footer-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: var(--s2);
  margin-bottom: var(--s4);
}
.footer-socials {
  display: flex; gap: 8px;
}
.soc-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-muted);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease);
}
.soc-btn:hover {
  background: rgba(64,224,208,.1);
  border-color: rgba(64,224,208,.3);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: clamp(var(--s5), 5vw, var(--s7));
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  padding: var(--s3);
}
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(var(--s5), 5vw, var(--s7));
  text-align: center;
  max-width: 440px;
  width: 100%;
  transform: scale(.9);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.popup-overlay.open .popup { transform: scale(1); }
.popup-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white;
  margin: 0 auto var(--s4);
  box-shadow: 0 4px 30px rgba(64,224,208,.35);
}
.popup h3 {
  font-family: var(--fh);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s2);
}
.popup p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FLOATING BUTTONS ===== */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37, 211, 102,.4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-fab svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102,.55);
}

.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .25s var(--ease), background .25s;
  cursor: pointer;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top-btn:hover {
  background: rgba(64,224,208,.15);
  border-color: rgba(64,224,208,.3);
  transform: translateY(-2px);
}
.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  fill: none;
}

/* ===== FADE UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,.2);
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(64,224,208,0.3);
  color: var(--white);
}