@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Sans:wght@400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --sky: #0ea5e9;
  --sky-light: #7dd3fc;
  --sky-dark: #0369a1;
  --sky-pale: #e0f2fe;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --gold-dark: #d97706;
  --white: #ffffff;
  --off-white: #f8fafc;
  --slate: #0f172a;
  --slate-mid: #1e3a5f;
  --text-dark: #0c1f3d;
  --text-mid: #334155;
  --text-light: #64748b;
  --glow-sky: 0 0 40px rgba(14,165,233,0.35);
  --glow-gold: 0 0 40px rgba(245,158,11,0.35);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: #04121e;   /* dark navy — the matrix rain sits on top */
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   CODE RAIN BACKGROUND
   Full-page fixed canvas — dark navy matrix
   Sections use semi-opaque white so rain
   bleeds through subtly
══════════════════════════════════════════ */
#code-rain-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* All page content must sit above the rain */
.topbar, header, .mobile-nav, .page-hero, .hero,
section, footer, #chatbot-btn, #chatbot-window {
  position: relative;
  z-index: 1;
}
section.gh, #gh-hero {
  position: relative !important;
  z-index: 10 !important;
  background: #03091a !important;
  isolation: isolate !important;
}

/* Sections get a semi-opaque white backdrop so rain is subtle underneath */
section:not(.gh):not(.hero):not(.section-testimonials) {
  background: rgba(248,250,252,0.94) !important;
}
section.section-testimonials,
section[style*="#0c1f3d"],
section[style*="0c1f3d"] {
  background: rgba(12,31,61,0.96) !important;
}
footer {
  background: rgba(12,31,61,0.98) !important;
  position: relative; z-index: 1;
}
header {
  background: rgba(255,255,255,0.93) !important;
}
.page-hero {
  background: linear-gradient(160deg, rgba(12,31,61,0.97) 0%, rgba(14,47,80,0.97) 60%, rgba(3,105,161,0.97) 100%) !important;
}

/* ══════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, var(--sky-dark), var(--sky), var(--sky-dark));
  color: white;
  font-size: 0.82rem;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 50;
}
.topbar a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  transition: background 0.2s;
}
.topbar a:hover { background: rgba(255,255,255,0.22); }
.topbar .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 1.4s infinite;
  display: inline-block;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(14,165,233,0.15);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark { width: 58px; height: 58px; position: relative; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--sky-dark), var(--sky), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
nav { display: flex; align-items: center; gap: 1.6rem; }
nav a {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  border-radius: 99px;
  transition: width 0.3s;
}
nav a:hover { color: var(--sky-dark); }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--sky-dark); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(14,165,233,0.4); }
.btn-outline {
  background: transparent;
  color: var(--sky-dark);
  border: 2px solid var(--sky);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-outline:hover { background: var(--sky-pale); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.5); }

/* ══════════════════════════════════════════
   HAMBURGER / MOBILE NAV
══════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--sky-dark); border-radius: 99px; transition: all 0.3s; display: block; }
.mobile-nav {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 200;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(14,165,233,0.1);
}
.mobile-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, #0c1f3d 0%, #0e2f50 60%, #0369a1 100%);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(14,165,233,0.15) 0%, transparent 70%);
}
.page-hero .section-inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--sky-light); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }

/* ══════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 40%, #bae6fd 80%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(14,165,233,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,158,11,0.06) 0%, transparent 70%);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1.5px solid var(--sky-light);
  color: var(--sky-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(14,165,233,0.1);
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero h1 .accent-sky { color: var(--sky); }
.hero h1 .accent-gold { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-dark);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.78rem; color: var(--text-light); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
#logoCanvas {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(135deg, #0c1f3d 0%, #0e2f50 50%, #0a1929 100%);
  box-shadow: 0 30px 80px rgba(14,165,233,0.25), 0 0 0 1px rgba(14,165,233,0.15);
}

/* ══════════════════════════════════════════
   SECTIONS COMMON
══════════════════════════════════════════ */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-pale);
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(14,165,233,0.2);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.section-services { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--off-white);
  border: 1.5px solid rgba(14,165,233,0.12);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.04), rgba(245,158,11,0.03));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--sky); box-shadow: 0 20px 50px rgba(14,165,233,0.12); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--sky-pale), #bae6fd);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--sky-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sky-dark);
  background: var(--sky-pale);
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  letter-spacing: 0.03em;
}
.services-cta { margin-top: 3rem; text-align: center; }

/* ══════════════════════════════════════════
   TECH STACK
══════════════════════════════════════════ */
.section-tech { background: linear-gradient(160deg, #f0f9ff, #e0f2fe); }
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  border: 1.5px solid rgba(14,165,233,0.2);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  transition: all 0.2s;
  cursor: default;
  box-shadow: 0 2px 8px rgba(14,165,233,0.06);
}
.tech-pill:hover { border-color: var(--sky); background: var(--sky-pale); transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 20px rgba(14,165,233,0.15); }
.tech-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.section-why { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 1rem;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; }
.why-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(14,165,233,0.3);
}
.why-check svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.why-item h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text-dark); }
.why-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.why-visual { display: grid; gap: 1rem; }
.process-card {
  background: var(--off-white);
  border: 1.5px solid rgba(14,165,233,0.15);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.process-card:hover { border-color: var(--sky); background: var(--sky-pale); }
.process-step { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.process-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.3rem; }
.process-card p { font-size: 0.85rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
.section-portfolio { background: var(--off-white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.project-card {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(14,165,233,0.14); border-color: var(--sky); }
.project-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-thumb svg { width: 64px; height: 64px; opacity: 0.6; }
.project-body { padding: 1.5rem; }
.project-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.project-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.section-testimonials { background: linear-gradient(160deg, #0c1f3d, #0e2f50) !important; }
.section-testimonials .section-title { color: white; }
.section-testimonials .section-sub { color: rgba(255,255,255,0.6); }
.section-testimonials .section-label { background: rgba(14,165,233,0.2); color: var(--sky-light); border-color: rgba(14,165,233,0.3); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.testimonial-card:hover { background: rgba(255,255,255,0.14); border-color: rgba(14,165,233,0.5); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(14,165,233,0.15); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; fill: #f59e0b; stroke: none; }
.testimonial-card p { font-size: 0.9rem; color: rgba(255,255,255,0.92); line-height: 1.75; margin-bottom: 1.5rem; font-weight: 400; font-style: italic; }
.testimonial-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
.testimonial-author h4 { font-weight: 700; color: white; font-size: 0.92rem; margin-bottom: 0.2rem; }
.testimonial-author span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.section-contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 1rem;
}
.contact-info { padding-top: 2rem; }
.contact-info h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.contact-info > p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 2.5rem; font-weight: 300; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; }
.contact-item-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14,165,233,0.25);
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item h4 { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 0.1rem; }
.contact-item a, .contact-item p { font-size: 0.88rem; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--sky); }
.contact-form-wrap {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.15);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(14,165,233,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid rgba(14,165,233,0.18);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 0.9rem; border-radius: 12px; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0c1f3d, #0369a1);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-story-img canvas { width: 100%; max-width: 400px; aspect-ratio: 1; }
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.mv-card {
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.mv-card.mission { background: linear-gradient(135deg, var(--sky-pale), #bae6fd); border: 1.5px solid rgba(14,165,233,0.2); }
.mv-card.vision { background: linear-gradient(135deg, #fef3c7, #fde68a); border: 1.5px solid rgba(245,158,11,0.2); }
.mv-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: 0.75rem; }
.mv-card.mission h3 { color: var(--sky-dark); }
.mv-card.vision h3 { color: var(--gold-dark); }
.mv-card p { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--sky); box-shadow: 0 20px 50px rgba(14,165,233,0.1); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}
.team-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.team-card span { font-size: 0.8rem; color: var(--sky); font-weight: 600; }
.team-card p { font-size: 0.82rem; color: var(--text-light); margin-top: 0.5rem; line-height: 1.55; }

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(14,165,233,0.12); border-color: var(--sky); }
.blog-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; }
.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-pale);
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
}
.blog-date { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.blog-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.blog-read-more { font-size: 0.82rem; font-weight: 600; color: var(--sky); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.blog-read-more:hover { gap: 0.6rem; }

/* ══════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--sky); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}
.faq-question h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--sky-pale);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon { background: var(--sky); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--sky); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: stroke 0.2s; }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.8rem 1.4rem; font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }

/* ══════════════════════════════════════════
   COMPANY PAGE (Careers, Tech Stack, Testimonials)
══════════════════════════════════════════ */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.job-card {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s;
}
.job-card:hover { transform: translateY(-4px); border-color: var(--sky); box-shadow: 0 16px 40px rgba(14,165,233,0.1); }
.job-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  display: inline-block;
}
.job-type.full-time { background: #dcfce7; color: #166534; }
.job-type.contract { background: #fef3c7; color: #92400e; }
.job-type.remote { background: var(--sky-pale); color: var(--sky-dark); }
.job-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.job-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1.2rem; }
.job-footer { display: flex; justify-content: space-between; align-items: center; }
.job-loc { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { -webkit-text-fill-color: unset; background: none; color: white; font-size: 1.3rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 0.75rem; }
footer h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: white; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.03em; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
footer ul a { color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
footer ul a:hover { color: var(--sky-light); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.social-link:hover { background: var(--sky); }
.social-link:hover svg { stroke: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sky-light); }

/* ══════════════════════════════════════════
   CHATBOT
══════════════════════════════════════════ */
#chatbot-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  box-shadow: 0 8px 30px rgba(14,165,233,0.4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s;
  animation: chatPulse 2s infinite;
}
@keyframes chatPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(14,165,233,0.4); }
  50% { box-shadow: 0 8px 40px rgba(14,165,233,0.65); }
}
#chatbot-btn:hover { transform: scale(1.1); }
#chatbot-btn svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
#chatbot-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid white;
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
#chatbot-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 370px;
  max-height: 560px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  border: 1.5px solid rgba(14,165,233,0.15);
  z-index: 998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  transform-origin: bottom right;
}
#chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header {
  background: linear-gradient(135deg, var(--sky-dark), var(--sky));
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
}
.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chat-header-info h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.1rem; }
.chat-header-info span { font-size: 0.75rem; opacity: 0.8; display: flex; align-items: center; gap: 0.3rem; }
.chat-online-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse 1.4s infinite; }
.chat-close { margin-left: auto; background: none; border: none; cursor: pointer; color: white; opacity: 0.7; font-size: 1.3rem; transition: opacity 0.2s; }
.chat-close:hover { opacity: 1; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  scroll-behavior: smooth;
}
.chat-msg {
  display: flex;
  gap: 0.5rem;
  max-width: 90%;
  animation: msgIn 0.3s ease;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  margin-top: auto;
}
.chat-msg.bot .chat-msg-avatar { background: var(--sky-pale); color: var(--sky-dark); }
.chat-msg.user .chat-msg-avatar { background: var(--gold); color: white; }
.chat-bubble {
  padding: 0.7rem 1rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble { background: var(--off-white); color: var(--text-dark); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: linear-gradient(135deg, var(--sky), var(--sky-dark)); color: white; border-bottom-right-radius: 4px; }
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 0.7rem 1rem; background: var(--off-white); border-radius: 16px; border-bottom-left-radius: 4px; width: fit-content; }
.chat-typing span { width: 7px; height: 7px; background: var(--sky-light); border-radius: 50%; animation: typingDot 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.2rem 0.8rem;
}
.qr-btn {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--sky-dark);
  background: var(--sky-pale);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.qr-btn:hover { background: var(--sky); color: white; }
.chat-input-row {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(14,165,233,0.1);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
#chat-input {
  flex: 1;
  border: 1.5px solid rgba(14,165,233,0.18);
  border-radius: 99px;
  padding: 0.55rem 1rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  color: var(--text-dark);
  transition: border-color 0.2s;
}
#chat-input:focus { border-color: var(--sky); }
#chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
  flex-shrink: 0;
}
#chat-send:hover { transform: scale(1.1); }
#chat-send svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chat-live-agent-bar {
  padding: 0.7rem 1.2rem;
  background: linear-gradient(90deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid rgba(245,158,11,0.2);
}
.chat-live-agent-bar span { font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; }
.agent-connect-btn {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}
.agent-connect-btn:hover { background: var(--gold-dark); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   MAP PLACEHOLDER
══════════════════════════════════════════ */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, var(--sky-pale), #bae6fd);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(14,165,233,0.15);
  margin-top: 2rem;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--sky-dark), var(--sky), var(--gold));
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 2rem 4rem;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,255,255,0.1), transparent);
}
.cta-banner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: white; margin-bottom: 0.75rem; position: relative; z-index: 2; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; position: relative; z-index: 2; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-white { background: white; color: var(--sky-dark); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.92rem; padding: 0.85rem 2rem; border-radius: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-story { grid-template-columns: 1fr; }
  .about-story-img { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav, .btn-primary { display: none; }
  .hamburger { display: flex; }
  .services-grid, .portfolio-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; text-align: center; }
  .mission-vision { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { margin: 0 1rem 2rem; padding: 2.5rem 1.5rem; }
  #chatbot-window { width: calc(100vw - 2rem); right: 1rem; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Sans:wght@400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --sky: #0ea5e9;
  --sky-light: #7dd3fc;
  --sky-dark: #0369a1;
  --sky-pale: #e0f2fe;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --gold-dark: #d97706;
  --white: #ffffff;
  --off-white: #f8fafc;
  --slate: #0f172a;
  --slate-mid: #1e3a5f;
  --text-dark: #0c1f3d;
  --text-mid: #334155;
  --text-light: #64748b;
  --glow-sky: 0 0 40px rgba(14,165,233,0.35);
  --glow-gold: 0 0 40px rgba(245,158,11,0.35);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', sans-serif;
  background: #04121e;   /* dark navy — the matrix rain sits on top */
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   CODE RAIN BACKGROUND
   Full-page fixed canvas — dark navy matrix
   Sections use semi-opaque white so rain
   bleeds through subtly
══════════════════════════════════════════ */
#code-rain-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* All page content must sit above the rain */
.topbar, header, .mobile-nav, .page-hero, .hero,
section, footer, #chatbot-btn, #chatbot-window {
  position: relative;
  z-index: 1;
}
section.gh, #gh-hero {
  position: relative !important;
  z-index: 10 !important;
  background: #03091a !important;
  isolation: isolate !important;
}

/* Sections get a semi-opaque white backdrop so rain is subtle underneath */
section:not(.gh):not(.hero):not(.section-testimonials) {
  background: rgba(248,250,252,0.94) !important;
}
section.section-testimonials,
section[style*="#0c1f3d"],
section[style*="0c1f3d"] {
  background: rgba(12,31,61,0.96) !important;
}
footer {
  background: rgba(12,31,61,0.98) !important;
  position: relative; z-index: 1;
}
header {
  background: rgba(255,255,255,0.93) !important;
}
.page-hero {
  background: linear-gradient(160deg, rgba(12,31,61,0.97) 0%, rgba(14,47,80,0.97) 60%, rgba(3,105,161,0.97) 100%) !important;
}

/* ══════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, var(--sky-dark), var(--sky), var(--sky-dark));
  color: white;
  font-size: 0.82rem;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 50;
}
.topbar a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  transition: background 0.2s;
}
.topbar a:hover { background: rgba(255,255,255,0.22); }
.topbar .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 1.4s infinite;
  display: inline-block;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(14,165,233,0.15);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-mark { width: 58px; height: 58px; position: relative; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--sky-dark), var(--sky), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
nav { display: flex; align-items: center; gap: 1.6rem; }
nav a {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  border-radius: 99px;
  transition: width 0.3s;
}
nav a:hover { color: var(--sky-dark); }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--sky-dark); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(14,165,233,0.4); }
.btn-outline {
  background: transparent;
  color: var(--sky-dark);
  border: 2px solid var(--sky);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-outline:hover { background: var(--sky-pale); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.5); }

/* ══════════════════════════════════════════
   HAMBURGER / MOBILE NAV
══════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--sky-dark); border-radius: 99px; transition: all 0.3s; display: block; }
.mobile-nav {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 200;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  display: flex;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(14,165,233,0.1);
}
.mobile-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, #0c1f3d 0%, #0e2f50 60%, #0369a1 100%);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(14,165,233,0.15) 0%, transparent 70%);
}
.page-hero .section-inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: var(--sky-light); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }

/* ══════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 40%, #bae6fd 80%, #f0fdf4 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(14,165,233,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,158,11,0.06) 0%, transparent 70%);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1.5px solid var(--sky-light);
  color: var(--sky-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(14,165,233,0.1);
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero h1 .accent-sky { color: var(--sky); }
.hero h1 .accent-gold { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-dark);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.78rem; color: var(--text-light); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
#logoCanvas {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(135deg, #0c1f3d 0%, #0e2f50 50%, #0a1929 100%);
  box-shadow: 0 30px 80px rgba(14,165,233,0.25), 0 0 0 1px rgba(14,165,233,0.15);
}

/* ══════════════════════════════════════════
   SECTIONS COMMON
══════════════════════════════════════════ */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-pale);
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(14,165,233,0.2);
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.section-services { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--off-white);
  border: 1.5px solid rgba(14,165,233,0.12);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,0.04), rgba(245,158,11,0.03));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--sky); box-shadow: 0 20px 50px rgba(14,165,233,0.12); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--sky-pale), #bae6fd);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--sky-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sky-dark);
  background: var(--sky-pale);
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  letter-spacing: 0.03em;
}
.services-cta { margin-top: 3rem; text-align: center; }

/* ══════════════════════════════════════════
   TECH STACK
══════════════════════════════════════════ */
.section-tech { background: linear-gradient(160deg, #f0f9ff, #e0f2fe); }
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  justify-content: center;
}
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  border: 1.5px solid rgba(14,165,233,0.2);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: 99px;
  transition: all 0.2s;
  cursor: default;
  box-shadow: 0 2px 8px rgba(14,165,233,0.06);
}
.tech-pill:hover { border-color: var(--sky); background: var(--sky-pale); transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 20px rgba(14,165,233,0.15); }
.tech-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }

/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */
.section-why { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 1rem;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; }
.why-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(14,165,233,0.3);
}
.why-check svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.why-item h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text-dark); }
.why-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.why-visual { display: grid; gap: 1rem; }
.process-card {
  background: var(--off-white);
  border: 1.5px solid rgba(14,165,233,0.15);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.process-card:hover { border-color: var(--sky); background: var(--sky-pale); }
.process-step { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.process-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.3rem; }
.process-card p { font-size: 0.85rem; color: var(--text-light); }

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
.section-portfolio { background: var(--off-white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.project-card {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(14,165,233,0.14); border-color: var(--sky); }
.project-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-thumb svg { width: 64px; height: 64px; opacity: 0.6; }
.project-body { padding: 1.5rem; }
.project-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.project-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.section-testimonials { background: linear-gradient(160deg, #0c1f3d, #0e2f50) !important; }
.section-testimonials .section-title { color: white; }
.section-testimonials .section-sub { color: rgba(255,255,255,0.6); }
.section-testimonials .section-label { background: rgba(14,165,233,0.2); color: var(--sky-light); border-color: rgba(14,165,233,0.3); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.testimonial-card:hover { background: rgba(255,255,255,0.14); border-color: rgba(14,165,233,0.5); transform: translateY(-4px); box-shadow: 0 8px 40px rgba(14,165,233,0.15); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; fill: #f59e0b; stroke: none; }
.testimonial-card p { font-size: 0.9rem; color: rgba(255,255,255,0.92); line-height: 1.75; margin-bottom: 1.5rem; font-weight: 400; font-style: italic; }
.testimonial-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
.testimonial-author h4 { font-weight: 700; color: white; font-size: 0.92rem; margin-bottom: 0.2rem; }
.testimonial-author span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.section-contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 1rem;
}
.contact-info { padding-top: 2rem; }
.contact-info h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.contact-info > p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 2.5rem; font-weight: 300; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; }
.contact-item-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14,165,233,0.25);
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item h4 { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 0.1rem; }
.contact-item a, .contact-item p { font-size: 0.88rem; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--sky); }
.contact-form-wrap {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.15);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(14,165,233,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid rgba(14,165,233,0.18);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 0.9rem; border-radius: 12px; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0c1f3d, #0369a1);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-story-img canvas { width: 100%; max-width: 400px; aspect-ratio: 1; }
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.mv-card {
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.mv-card.mission { background: linear-gradient(135deg, var(--sky-pale), #bae6fd); border: 1.5px solid rgba(14,165,233,0.2); }
.mv-card.vision { background: linear-gradient(135deg, #fef3c7, #fde68a); border: 1.5px solid rgba(245,158,11,0.2); }
.mv-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: 0.75rem; }
.mv-card.mission h3 { color: var(--sky-dark); }
.mv-card.vision h3 { color: var(--gold-dark); }
.mv-card p { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--sky); box-shadow: 0 20px 50px rgba(14,165,233,0.1); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}
.team-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.team-card span { font-size: 0.8rem; color: var(--sky); font-weight: 600; }
.team-card p { font-size: 0.82rem; color: var(--text-light); margin-top: 0.5rem; line-height: 1.55; }

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(14,165,233,0.12); border-color: var(--sky); }
.blog-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; }
.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  background: var(--sky-pale);
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
}
.blog-date { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.blog-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; line-height: 1.35; }
.blog-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.blog-read-more { font-size: 0.82rem; font-weight: 600; color: var(--sky); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.blog-read-more:hover { gap: 0.6rem; }

/* ══════════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--sky); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}
.faq-question h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--sky-pale);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon { background: var(--sky); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--sky); fill: none; stroke-width: 2.5; stroke-linecap: round; transition: stroke 0.2s; }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.8rem 1.4rem; font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }

/* ══════════════════════════════════════════
   COMPANY PAGE (Careers, Tech Stack, Testimonials)
══════════════════════════════════════════ */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.job-card {
  background: white;
  border: 1.5px solid rgba(14,165,233,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s;
}
.job-card:hover { transform: translateY(-4px); border-color: var(--sky); box-shadow: 0 16px 40px rgba(14,165,233,0.1); }
.job-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  display: inline-block;
}
.job-type.full-time { background: #dcfce7; color: #166534; }
.job-type.contract { background: #fef3c7; color: #92400e; }
.job-type.remote { background: var(--sky-pale); color: var(--sky-dark); }
.job-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.job-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1.2rem; }
.job-footer { display: flex; justify-content: space-between; align-items: center; }
.job-loc { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { -webkit-text-fill-color: unset; background: none; color: white; font-size: 1.3rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 0.75rem; }
footer h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: white; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.03em; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
footer ul a { color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
footer ul a:hover { color: var(--sky-light); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.social-link:hover { background: var(--sky); }
.social-link:hover svg { stroke: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sky-light); }

/* ══════════════════════════════════════════
   CHATBOT
══════════════════════════════════════════ */
#chatbot-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  box-shadow: 0 8px 30px rgba(14,165,233,0.4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s;
  animation: chatPulse 2s infinite;
}
@keyframes chatPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(14,165,233,0.4); }
  50% { box-shadow: 0 8px 40px rgba(14,165,233,0.65); }
}
#chatbot-btn:hover { transform: scale(1.1); }
#chatbot-btn svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
#chatbot-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid white;
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
#chatbot-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 370px;
  max-height: 560px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  border: 1.5px solid rgba(14,165,233,0.15);
  z-index: 998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  transform-origin: bottom right;
}
#chatbot-window.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header {
  background: linear-gradient(135deg, var(--sky-dark), var(--sky));
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
}
.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chat-header-info h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.1rem; }
.chat-header-info span { font-size: 0.75rem; opacity: 0.8; display: flex; align-items: center; gap: 0.3rem; }
.chat-online-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse 1.4s infinite; }
.chat-close { margin-left: auto; background: none; border: none; cursor: pointer; color: white; opacity: 0.7; font-size: 1.3rem; transition: opacity 0.2s; }
.chat-close:hover { opacity: 1; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  scroll-behavior: smooth;
}
.chat-msg {
  display: flex;
  gap: 0.5rem;
  max-width: 90%;
  animation: msgIn 0.3s ease;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  margin-top: auto;
}
.chat-msg.bot .chat-msg-avatar { background: var(--sky-pale); color: var(--sky-dark); }
.chat-msg.user .chat-msg-avatar { background: var(--gold); color: white; }
.chat-bubble {
  padding: 0.7rem 1rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble { background: var(--off-white); color: var(--text-dark); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: linear-gradient(135deg, var(--sky), var(--sky-dark)); color: white; border-bottom-right-radius: 4px; }
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 0.7rem 1rem; background: var(--off-white); border-radius: 16px; border-bottom-left-radius: 4px; width: fit-content; }
.chat-typing span { width: 7px; height: 7px; background: var(--sky-light); border-radius: 50%; animation: typingDot 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.2rem 0.8rem;
}
.qr-btn {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--sky-dark);
  background: var(--sky-pale);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.qr-btn:hover { background: var(--sky); color: white; }
.chat-input-row {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(14,165,233,0.1);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
#chat-input {
  flex: 1;
  border: 1.5px solid rgba(14,165,233,0.18);
  border-radius: 99px;
  padding: 0.55rem 1rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  color: var(--text-dark);
  transition: border-color 0.2s;
}
#chat-input:focus { border-color: var(--sky); }
#chat-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
  flex-shrink: 0;
}
#chat-send:hover { transform: scale(1.1); }
#chat-send svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chat-live-agent-bar {
  padding: 0.7rem 1.2rem;
  background: linear-gradient(90deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid rgba(245,158,11,0.2);
}
.chat-live-agent-bar span { font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; }
.agent-connect-btn {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}
.agent-connect-btn:hover { background: var(--gold-dark); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   MAP PLACEHOLDER
══════════════════════════════════════════ */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, var(--sky-pale), #bae6fd);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(14,165,233,0.15);
  margin-top: 2rem;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--sky-dark), var(--sky), var(--gold));
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 2rem 4rem;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,255,255,0.1), transparent);
}
.cta-banner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: white; margin-bottom: 0.75rem; position: relative; z-index: 2; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; position: relative; z-index: 2; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.btn-white { background: white; color: var(--sky-dark); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.92rem; padding: 0.85rem 2rem; border-radius: 12px; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-story { grid-template-columns: 1fr; }
  .about-story-img { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav, .btn-primary { display: none; }
  .hamburger { display: flex; }
  .services-grid, .portfolio-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; text-align: center; }
  .mission-vision { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { margin: 0 1rem 2rem; padding: 2.5rem 1.5rem; }
  #chatbot-window { width: calc(100vw - 2rem); right: 1rem; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
/* ══════════════════════════════════════════
   CHATBOT WIDGET
══════════════════════════════════════════ */
#chatbot-btn {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg,#0ea5e9,#0369a1);
  box-shadow: 0 8px 30px rgba(14,165,233,0.45); display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
#chatbot-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(14,165,233,0.6); }
#chatbot-btn svg { width:26px; height:26px; stroke:white; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
#chatbot-badge {
  position: absolute; top:-4px; right:-4px; background:#ef4444; color:white;
  font-size:0.65rem; font-weight:800; width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; border:2px solid white;
}
#chatbot-window {
  position: fixed; bottom:5.5rem; right:1.8rem; z-index:9998;
  width:360px; max-height:520px; border-radius:20px;
  background:#0d1117; border:1px solid rgba(14,165,233,0.2);
  box-shadow:0 30px 80px rgba(0,0,0,0.5); display:flex; flex-direction:column;
  transform:scale(0.9) translateY(20px); opacity:0; pointer-events:none;
  transition:all 0.25s cubic-bezier(0.34,1.56,0.64,1); transform-origin:bottom right;
}
#chatbot-window.open { transform:scale(1) translateY(0); opacity:1; pointer-events:all; }
.chat-header {
  display:flex; align-items:center; gap:0.75rem; padding:1rem 1.2rem;
  background:linear-gradient(135deg,rgba(14,165,233,0.15),rgba(3,105,161,0.15));
  border-bottom:1px solid rgba(255,255,255,0.06); border-radius:20px 20px 0 0;
}
.chat-avatar { font-size:1.6rem; }
.chat-header-info h4 { font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; color:white; font-size:0.9rem; }
.chat-header-info span { font-size:0.72rem; color:rgba(255,255,255,0.45); display:flex; align-items:center; gap:0.3rem; }
.chat-online-dot { width:6px; height:6px; border-radius:50%; background:#4ade80; display:inline-block; animation:pulse 1.4s infinite; }
.chat-close { margin-left:auto; background:none; border:none; color:rgba(255,255,255,0.4); font-size:1.1rem; cursor:pointer; padding:0.2rem; transition:color 0.2s; }
.chat-close:hover { color:white; }
.chat-messages { flex:1; overflow-y:auto; padding:1rem; display:flex; flex-direction:column; gap:0.75rem; max-height:300px; }
.chat-messages::-webkit-scrollbar { width:4px; }
.chat-messages::-webkit-scrollbar-track { background:transparent; }
.chat-messages::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.1); border-radius:2px; }
.chat-msg { display:flex; gap:0.5rem; align-items:flex-start; }
.chat-msg.user { flex-direction:row-reverse; }
.chat-msg-avatar { font-size:0.65rem; font-weight:700; color:rgba(255,255,255,0.4); min-width:28px; text-align:center; padding-top:0.4rem; }
.chat-bubble {
  max-width:80%; padding:0.65rem 0.9rem; border-radius:14px;
  font-size:0.84rem; line-height:1.55; color:rgba(255,255,255,0.88);
}
.chat-msg.bot .chat-bubble { background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.08); border-radius:4px 14px 14px 14px; }
.chat-msg.user .chat-bubble { background:linear-gradient(135deg,#0ea5e9,#0369a1); color:white; border-radius:14px 4px 14px 14px; }
.chat-typing { display:flex; gap:4px; align-items:center; padding:0.5rem 0.9rem; }
.chat-typing span { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.4); animation:typingDot 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay:0.2s; }
.chat-typing span:nth-child(3) { animation-delay:0.4s; }
@keyframes typingDot { 0%,80%,100%{transform:scale(0.8);opacity:0.4} 40%{transform:scale(1.1);opacity:1} }
.chat-quick-replies { padding:0.5rem 0.8rem; display:flex; flex-wrap:wrap; gap:0.4rem; }
.qr-btn {
  background:rgba(14,165,233,0.1); border:1px solid rgba(14,165,233,0.25); color:#7dd3fc;
  border-radius:99px; padding:0.3rem 0.75rem; font-size:0.75rem; cursor:pointer; transition:all 0.15s;
  font-family:'Instrument Sans',sans-serif;
}
.qr-btn:hover { background:rgba(14,165,233,0.25); border-color:#0ea5e9; }
.chat-live-agent-bar {
  display:flex; align-items:center; justify-content:space-between; gap:0.5rem;
  padding:0.6rem 0.9rem; border-top:1px solid rgba(255,255,255,0.06);
  font-size:0.75rem; color:rgba(255,255,255,0.35);
}
.agent-connect-btn {
  background:linear-gradient(135deg,#22c55e,#16a34a); border:none; border-radius:99px;
  color:white; font-size:0.72rem; font-weight:700; padding:0.3rem 0.85rem; cursor:pointer; transition:opacity 0.2s;
}
.agent-connect-btn:hover { opacity:0.85; }
.agent-connect-btn:disabled { opacity:0.5; cursor:default; }
.chat-input-row {
  display:flex; gap:0.5rem; padding:0.8rem; border-top:1px solid rgba(255,255,255,0.06); border-radius:0 0 20px 20px;
}
#chat-input {
  flex:1; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
  border-radius:10px; padding:0.6rem 0.9rem; color:white; font-size:0.86rem;
  font-family:'Instrument Sans',sans-serif; outline:none; transition:border-color 0.2s;
}
#chat-input:focus { border-color:rgba(14,165,233,0.5); }
#chat-input::placeholder { color:rgba(255,255,255,0.25); }
#chat-send {
  width:38px; height:38px; border-radius:10px; background:linear-gradient(135deg,#0ea5e9,#0369a1);
  border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:opacity 0.2s;
}
#chat-send:hover { opacity:0.85; }
#chat-send svg { width:16px; height:16px; stroke:white; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
@media(max-width:420px){ #chatbot-window{width:calc(100vw - 2rem);right:1rem;} }