/* ============================================================
   HANU TECHNOLOGIES — LIGHT THEME DESIGN SYSTEM
   Color Palette (matched to logo):
     Navy        #0A1A4E  (dark brand)
     Blue        #1A6FF0  (primary)
     Cyan        #00AADF  (accent)
     Surface     #F4F8FF  (alt bg)
     White       #FFFFFF  (bg)
     Text Dark   #0A1628
     Text Mid    #475569
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ============================================================ */

/* ─── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --bg-primary:    #FFFFFF;
  --bg-surface:    #F4F8FF;
  --bg-alt:        #EDF3FF;
  --bg-card:       #FFFFFF;
  --brand-navy:    #0A1A4E;
  --brand-blue:    #1A6FF0;
  --brand-cyan:    #00AADF;
  --brand-indigo:  #4F46E5;
  --brand-light:   #E8F0FE;
  --text-primary:  #0A1628;
  --text-secondary:#475569;
  --text-muted:    #94A3B8;
  --border:        rgba(10,26,78,0.1);
  --border-blue:   rgba(26,111,240,0.25);
  --gradient-primary:   linear-gradient(135deg, #0A1A4E 0%, #1A6FF0 100%);
  --gradient-secondary: linear-gradient(135deg, #1A6FF0 0%, #00AADF 100%);
  --gradient-accent:    linear-gradient(135deg, #0A1A4E, #1756F0, #00B4E6);
  --gradient-text:      linear-gradient(135deg, #0A1A4E, #1A6FF0, #00AADF);
  --gradient-blue-soft: linear-gradient(135deg, #EDF3FF 0%, #F4F8FF 100%);
  --shadow-sm:  0 2px 8px rgba(10,26,78,0.08);
  --shadow-md:  0 8px 32px rgba(10,26,78,0.12);
  --shadow-lg:  0 20px 60px rgba(10,26,78,0.15);
  --shadow-glow: 0 8px 40px rgba(26,111,240,0.25);
  --shadow-card: 0 4px 24px rgba(10,26,78,0.08);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --font-body:  'Inter', sans-serif;
  --font-head:  'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--transition); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 0.95rem; }
p  { color: var(--text-secondary); font-size: 1rem; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── 4. UTILITIES ─────────────────────────────────────────── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 100px 0; }
.section-sm   { padding: 60px 0; }
.text-center  { text-align: center; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  border: 1px solid var(--border-blue);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title { color: var(--text-primary); margin-bottom: 16px; }
.section-desc  { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.divider {
  width: 60px; height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 16px auto 24px;
}
.divider-left { margin: 16px 0 24px; }

/* ─── 5. NAVIGATION ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0B1739;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,170,223,0.2);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 10px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: #091330;
  border-bottom-color: rgba(0,170,223,0.35);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.nav-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
}
/* Fallback text logo if image not available */
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  display: none;
}
.nav-logo-img.broken + .nav-logo-text { display: block; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover  { color: #00AADF; background: rgba(255,255,255,0.08); }
.nav-link.active { color: #fff; font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px;
  background: linear-gradient(90deg, #00AADF, #1A6FF0);
  border-radius: 1px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 1px; transition: var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── 6. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 18px rgba(26,111,240,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,111,240,0.5); color: white; }
.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  box-shadow: 0 4px 18px rgba(0,170,223,0.3);
}
.btn-secondary:hover { transform: translateY(-2px); color: white; }
.btn-outline {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--border-blue);
}
.btn-outline:hover { background: var(--brand-light); border-color: var(--brand-blue); }
.btn-ghost {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-alt); color: var(--brand-blue); }
.btn-white {
  background: white;
  color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); color: white; }
.btn-sm  { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg  { padding: 15px 34px; font-size: 1rem; }
.btn-xl  { padding: 17px 40px; font-size: 1.05rem; }

/* ─── 7. HERO (HOME) ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.5;
}
.hero-grid-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(26,111,240,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,111,240,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-blob-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,240,0.1) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,223,0.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-light);
  border: 1px solid var(--border-blue);
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease forwards;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--brand-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--text-primary);
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 38px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat-number {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Page Hero (inner pages) — blue gradient */
.page-hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
  background: var(--gradient-accent);
}
.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  top: -150px; right: -50px;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 { color: #FFFFFF; }
.page-hero-content .section-title { color: #FFFFFF; }
.page-hero-content p  { color: rgba(255,255,255,0.8); }
.page-hero-content .gradient-text {
  background: linear-gradient(135deg, #FFFFFF, #A5C8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }
.page-hero-content .section-label {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: white;
  margin: 0 auto 20px;
  display: inline-flex;
}
.page-hero-desc { color: rgba(255,255,255,0.8) !important; max-width: 600px; margin: 0 auto; }

/* ─── 8. CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-blue);
}
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ─── 9. SERVICE CARDS ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: var(--border-blue); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.service-icon.indigo  { background: #EEF2FF; color: #4F46E5; }
.service-icon.cyan    { background: #E0F7FF; color: #0284C7; }
.service-icon.purple  { background: #F3E8FF; color: #7C3AED; }
.service-icon.pink    { background: #FDF2F8; color: #BE185D; }
.service-icon.green   { background: #ECFDF5; color: #059669; }
.service-icon.orange  { background: #FFF7ED; color: #D97706; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text-primary); }
.service-card p  { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 18px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-surface);
  color: var(--brand-blue);
  border: 1px solid var(--border-blue);
  letter-spacing: 0.03em;
}
.tag.cyan   { background: #E0F7FF; color: #0284C7; border-color: rgba(2,132,199,0.2); }
.tag.purple { background: #F3E8FF; color: #7C3AED; border-color: rgba(124,58,237,0.2); }
.tag.green  { background: #ECFDF5; color: #059669; border-color: rgba(5,150,105,0.2); }
.tag.pink   { background: #FDF2F8; color: #BE185D; border-color: rgba(190,24,93,0.2); }
.tag.orange { background: #FFF7ED; color: #D97706; border-color: rgba(217,119,6,0.2); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-blue);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 18px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ─── 10. STATS SECTION ─────────────────────────────────────── */
.stats-section {
  background: var(--gradient-primary);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* ─── 11. FEATURES / WHY US ─────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--border-blue); box-shadow: var(--shadow-glow); }
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--brand-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  font-size: 1.1rem;
}
.feature-content h4 { margin-bottom: 6px; font-size: 0.95rem; }
.feature-content p  { font-size: 0.82rem; }

/* ─── 12. PORTFOLIO CARDS ───────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.portfolio-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: var(--border-blue); }
.portfolio-mockup {
  position: relative;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: white;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot.red    { background: #FF5F57; }
.browser-dot.yellow { background: #FEBC2E; }
.browser-dot.green  { background: #28C840; }
.browser-url {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-content {
  height: 190px;
  position: relative;
  overflow: hidden;
}
.browser-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .browser-content img { transform: translateY(-5%); }
.browser-content::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8));
  pointer-events: none;
}
.portfolio-info { padding: 22px; }
.portfolio-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 6px;
}
.portfolio-info h3 { font-size: 1rem; margin-bottom: 6px; }
.portfolio-info p  { font-size: 0.82rem; margin-bottom: 14px; }
.portfolio-tags    { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.portfolio-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.portfolio-result {
  font-size: 0.72rem;
  color: #059669;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.filter-tab {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-glow);
}

/* ─── 13. TECH STACK ────────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.tech-item:hover { border-color: var(--border-blue); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.tech-item img { width: 36px; height: 36px; object-fit: contain; }
.tech-item span { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }

/* ─── 14. TESTIMONIALS ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-glow); border-color: var(--border-blue); }
.testimonial-quote { font-size: 2.5rem; color: var(--brand-blue); opacity: 0.3; line-height: 1; margin-bottom: 14px; font-family: Georgia, serif; }
.testimonial-text { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.8; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-blue); }
.testimonial-name   { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.testimonial-role   { font-size: 0.73rem; color: var(--text-muted); }
.testimonial-stars  { color: #F59E0B; font-size: 0.78rem; margin-top: 3px; }

/* ─── 15. TEAM CARDS ────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: var(--border-blue); }
.team-avatar-wrap { padding: 28px 28px 0; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border-blue); box-shadow: var(--shadow-glow); margin: 0 auto; }
.team-card-body { padding: 18px 22px 26px; }
.team-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.team-role { font-size: 0.74rem; color: var(--brand-blue); font-weight: 600; margin-bottom: 8px; }
.team-bio  { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 14px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.72rem;
  transition: var(--transition);
}
.team-social a:hover { background: var(--brand-blue); color: white; border-color: var(--brand-blue); }

/* ─── 16. PROCESS STEPS ─────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), var(--brand-cyan), transparent);
}
.process-step { text-align: center; padding: 0 20px; }
.process-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-glow);
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.process-step p  { font-size: 0.82rem; }

/* ─── 17. VALUES CARDS ──────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  padding: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--border-blue); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.value-card h4 { margin-bottom: 10px; }
.value-card p  { font-size: 0.82rem; }

/* ─── 18. CTA SECTION ───────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
  padding: 100px 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; color: white; }
.cta-desc  { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 34px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-section .gradient-text {
  background: linear-gradient(135deg, #fff, #A5C8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── 19. CONTACT ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-blue);
  font-size: 1.1rem;
}
.contact-text h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-text p, .contact-text a { font-size: 0.88rem; color: var(--text-secondary); }
.contact-text a:hover { color: var(--brand-blue); }
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-primary); margin-bottom: 7px; }
.form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--brand-blue); background: white; box-shadow: 0 0 0 3px rgba(26,111,240,0.1); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control option { background: white; }

/* ─── 20. FOOTER ────────────────────────────────────────────── */
.footer { background: var(--brand-navy); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.55); margin: 14px 0 22px; max-width: 280px; }
.footer-logo-img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--brand-blue); color: white; border-color: var(--brand-blue); }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; }
.footer-contact-item i { color: var(--brand-cyan); margin-top: 3px; font-size: 0.82rem; }
.footer-contact-item span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: white; }

/* ─── 21. WHATSAPP FLOAT ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 13px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 36px rgba(37,211,102,0.65); color: white; }
.whatsapp-float i { font-size: 1.2rem; }

/* ─── 22. AI / SPECIAL ELEMENTS ─────────────────────────────── */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--brand-light);
  color: var(--brand-blue);
  border: 1px solid var(--border-blue);
}
.ai-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--brand-cyan);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.ai-card {
  background: linear-gradient(135deg, #F0F6FF, #EEF3FF);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 32px;
}
.code-snippet {
  background: var(--brand-navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: #94A3B8;
}
.code-snippet .c-purple { color: #C084FC; }
.code-snippet .c-cyan   { color: #67E8F9; }
.code-snippet .c-green  { color: #86EFAC; }
.code-snippet .c-yellow { color: #FDE68A; }
.code-snippet .c-orange { color: #FDBA74; }

.metric-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.metric-label { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.metric-value { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--text-primary); }
.metric-change { display: inline-flex; align-items: center; gap: 3px; font-size: 0.7rem; font-weight: 600; color: #059669; margin-top: 3px; }

.ai-scan { position: relative; overflow: hidden; }
.ai-scan::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-cyan), transparent);
  animation: scanLine 3s ease-in-out infinite;
  opacity: 0.5;
}

/* ─── 23. ABOUT / TIMELINE ──────────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-blue), var(--brand-cyan));
}
.timeline-item { position: relative; padding-bottom: 38px; }
.timeline-dot {
  position: absolute;
  left: -34px; top: 4px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--brand-blue);
  border: 3px solid white;
  box-shadow: 0 0 12px rgba(26,111,240,0.4);
}
.timeline-year  { font-size: 0.72rem; font-weight: 700; color: var(--brand-blue); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.timeline-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 5px; }
.timeline-text  { font-size: 0.82rem; color: var(--text-secondary); }

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv-card { padding: 34px; border-radius: var(--radius-md); border: 1px solid var(--border); background: white; box-shadow: var(--shadow-card); }
.mv-card.mission { border-left: 4px solid var(--brand-blue); }
.mv-card.vision  { border-left: 4px solid var(--brand-cyan); }
.mv-icon { font-size: 2rem; margin-bottom: 14px; }
.mv-card h3 { margin-bottom: 10px; }
.mv-card p  { font-size: 0.88rem; }

/* ─── 24. SERVICES DETAIL PAGE ──────────────────────────────── */
.service-full-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-glow); border-color: var(--border-blue); }
.service-full-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 36px 36px 26px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.service-full-icon {
  width: 68px; height: 68px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  flex-shrink: 0;
}
.service-full-meta h2 { font-size: 1.55rem; margin-bottom: 7px; }
.service-full-meta p  { font-size: 0.9rem; max-width: 700px; }
.service-full-body { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.service-full-col { padding: 28px 32px; border-right: 1px solid var(--border); }
.service-full-col:last-child { border-right: none; }
.service-full-col h4 { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.service-checklist li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.83rem; color: var(--text-secondary); margin-bottom: 9px;
}
.service-checklist li i { color: var(--brand-blue); margin-top: 2px; font-size: 0.72rem; flex-shrink: 0; }
.service-result-item {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.service-result-item:last-child { border-bottom: none; }
.result-icon { font-size: 1.1rem; }
.result-text  { font-size: 0.78rem; color: var(--text-secondary); }
.result-value { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }

/* ─── 25. CASE STUDY FEATURED ───────────────────────────────── */
.case-featured-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.case-featured-wrap:hover { box-shadow: var(--shadow-glow); border-color: var(--border-blue); }
.case-featured-screen { position: relative; min-height: 320px; display: flex; flex-direction: column; }
.case-featured-screen .browser-bar { flex-shrink: 0; }
.case-featured-screen-content { flex: 1; overflow: hidden; }
.case-featured-screen-content img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.case-featured-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.case-featured-body h3 { font-size: 1.6rem; margin-bottom: 10px; }
.case-featured-body p  { font-size: 0.88rem; margin-bottom: 14px; }
.case-results-row { display: flex; gap: 22px; margin: 18px 0; flex-wrap: wrap; }
.case-result-number { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.case-result-label  { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

/* ─── 26. ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse  { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes scanLine { 0% { top:0%; opacity:0; } 10% { opacity:0.5; } 90% { opacity:0.5; } 100% { top:100%; opacity:0; } }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 20px rgba(26,111,240,0.25); } 50% { box-shadow: 0 0 40px rgba(26,111,240,0.5); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"]    { transform: translateY(28px); }
[data-aos="fade-down"]  { transform: translateY(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="zoom-in"]    { transform: scale(0.92); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ─── 27. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .team-grid          { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tech-grid          { grid-template-columns: repeat(4, 1fr); }
  .contact-grid       { grid-template-columns: 1fr; }
  .case-featured-wrap { grid-template-columns: 1fr; }
  .service-full-body  { grid-template-columns: 1fr; }
  .service-full-col   { border-right: none; border-bottom: 1px solid var(--border); }
  .service-full-col:last-child { border-bottom: none; }
  .mission-vision-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .services-grid     { grid-template-columns: 1fr; }
  .portfolio-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .process-grid      { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .values-grid       { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .tech-grid         { grid-template-columns: repeat(3, 1fr); }
  .form-row          { grid-template-columns: 1fr; }
  .hero-stats        { gap: 20px; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11,23,57,0.98);
    backdrop-filter: blur(20px);
    align-items: center; justify-content: center;
    gap: 12px; z-index: 999;
  }
  .nav-menu.open .nav-link { font-size: 1.3rem; padding: 12px 24px; color: rgba(255,255,255,0.9); }
  .nav-hamburger { display: flex; z-index: 1000; }
  .nav-cta .btn:not(.btn-whatsapp) { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-full-header { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid    { grid-template-columns: 1fr; }
  .tech-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-buttons  { flex-direction: column; align-items: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: var(--border-blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-blue); }

/* ─── Section alternating backgrounds ──────────────────────── */
.bg-surface { background: var(--bg-surface); }
.bg-white   { background: var(--bg-primary); }
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
