﻿/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #1a56db;
  --primary-dark:  #1648c0;
  --primary-light: #eff6ff;
  --secondary:     #0d1f3c;
  --accent:        #06b6d4;
  --accent2:       #a78bfa;
  --text:          #1e293b;
  --text-light:    #64748b;
  --white:         #ffffff;
  --bg:            #f0f6ff;
  --border:        #dbeafe;
  --success:       #10b981;
  --warning:       #f59e0b;

  --gradient:      linear-gradient(135deg, #1a56db 0%, #06b6d4 100%);
  --gradient-dark: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 60%, #0e6a7e 100%);
  --gradient2:     linear-gradient(135deg, #a78bfa 0%, #1a56db 100%);

  --shadow-sm:  0 2px 8px rgba(26,86,219,0.08);
  --shadow:     0 4px 24px rgba(26,86,219,0.12);
  --shadow-lg:  0 12px 48px rgba(26,86,219,0.18);
  --shadow-xl:  0 24px 64px rgba(26,86,219,0.22);

  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --transition: all 0.28s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,86,219,0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,86,219,0.42); }

.btn-glass {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-lg { padding: 15px 36px; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

.pulse-btn { animation: pulse-glow 2.5s infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(26,86,219,0.32); }
  50% { box-shadow: 0 8px 36px rgba(26,86,219,0.55), 0 0 0 8px rgba(26,86,219,0.08); }
}

/* ===========================
   TOP BAR
=========================== */
.topbar {
  background: var(--secondary);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-contacts { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar-contacts span { display: flex; align-items: center; gap: 6px; }
.topbar-contacts .sep { opacity: 0.3; }
.btn-topbar {
  display: flex; align-items: center; gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-topbar:hover { background: var(--primary-dark); }

/* Language Selector */
.lang-selector { position: relative; margin-left: auto; z-index: 2001; }
.lang-btn {
  display: flex; align-items: center; gap: 6px; background: none; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); padding: 10px 14px; border-radius: 6px; font-size: 0.8rem;
  font-family: inherit; cursor: pointer; transition: var(--transition); white-space: nowrap;
  min-height: 44px; min-width: 44px; box-sizing: border-box;
}
.lang-btn:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.lang-btn .lang-arrow { font-size: 0.6rem; transition: transform 0.2s; }
.lang-selector.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  display: none; flex-direction: column;
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 210px; max-height: 320px;
  overflow-y: auto; overflow-x: hidden;
  background: #fff; border-radius: 10px; box-shadow: var(--shadow-lg);
  padding: 6px 0; z-index: 2000;
}
.lang-selector.open .lang-dropdown { display: flex; }
.lang-option {
  display: block !important; width: 100% !important; box-sizing: border-box;
  text-align: left; padding: 8px 16px; border: none; background: none;
  font-size: 0.85rem; color: var(--text); cursor: pointer; font-family: inherit;
  transition: background 0.15s; white-space: nowrap; flex-shrink: 0;
}
.lang-option:hover { background: var(--primary-light); color: var(--primary); }
.lang-divider { height: 1px; background: var(--border); margin: 4px 0; flex-shrink: 0; }
/* Hide Google Translate bar & branding */
.goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame,
.skiptranslate, #google_translate_element,
.goog-te-combo, .goog-te-gadget, .goog-te-gadget-simple {
  display: none !important; height: 0 !important; width: 0 !important;
  overflow: hidden !important; visibility: hidden !important; opacity: 0 !important;
  position: absolute !important; top: -9999px !important; left: -9999px !important;
  pointer-events: none !important; border: 0 !important; margin: 0 !important; padding: 0 !important;
}
body { top: 0 !important; position: static !important; }

/* ===========================
   HEADER
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark { display: flex; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--secondary);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-transform: uppercase;
}
.logo-light .logo-main { -webkit-text-fill-color: white; background: none; color: white; }
.logo-light .logo-sub { color: rgba(255,255,255,0.55); }

/* NAV */
.nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list > li { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active, .nav-link.active-page { background: var(--primary-light); color: var(--primary); }
.nav-link i { font-size: 0.65rem; transition: transform 0.25s; }
.has-dropdown:hover > .nav-link i { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 210px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 13px;
  border-radius: 7px;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--primary-light); color: var(--primary); }
.dropdown li a i { width: 15px; color: var(--primary); font-size: 0.82rem; }

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -80px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  display: flex;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  min-width: 640px;
  padding: 24px 28px;
  gap: 32px;
}
.has-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col { flex: 1; }
.mega-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.mega-col a {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 9px;
  border-radius: 7px;
  font-size: 0.86rem;
  color: var(--text);
  transition: var(--transition);
  margin-bottom: 1px;
}
.mega-col a:hover { background: var(--primary-light); color: var(--primary); }
.mega-col a i { width: 15px; color: var(--primary); font-size: 0.82rem; }

.header-cta { flex-shrink: 0; margin-left: auto; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 88px 0 0;
}
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(26,86,219,0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(6,182,212,0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(167,139,250,0.15) 0%, transparent 40%);
}
.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 80px;
}
.hero-content { flex: 1; }

/* tagline pills */
.hero-tagline-wrap {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tagline-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.tagline-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

.hero-content h1 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 22px;
}
.gradient-text {
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  width: 100%;
  max-width: 760px;
  overflow: visible;
  gap: 10px;
}
.stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-right: none;
}
.stat-icon {
  width: 40px; height: 40px;
  background: linear-gradient(145deg, rgba(111, 236, 255, 0.24), rgba(111, 236, 255, 0.12));
  border-radius: 11px;
  border: 1px solid rgba(111, 236, 255, 0.34);
  display: flex; align-items: center; justify-content: center;
  color: #6fe3ff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: inset 0 1px 8px rgba(255,255,255,0.12), 0 4px 12px rgba(111,236,255,0.16);
}
.stat-info {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "num suffix"
    "label label";
  align-items: end;
  justify-items: start;
  column-gap: 4px;
  row-gap: 1px;
  text-align: left;
}
.stat-num {
  grid-area: num;
  display: block;
  font-size: 1.78rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(111,236,255,0.18);
}
.stat-suffix {
  grid-area: suffix;
  font-size: 1rem;
  font-weight: 700;
  color: #6fe3ff;
  line-height: 1;
  align-self: end;
  margin-bottom: 2px;
}
.stat-suffix:empty { display: none; }
.stat-label {
  grid-area: label;
  font-size: 0.72rem;
  color: rgba(227,243,255,0.88);
  line-height: 1.28;
  max-width: 114px;
  white-space: normal;
}
.stat-divider { display: none; }

/* HERO VISUAL */
.hero-visual {
  flex: 0 0 440px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* floating cards */
.hv-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  min-width: 200px;
  align-self: flex-start;
}
.hv-card-top { margin-left: 20px; }
.hv-card-bottom { align-self: flex-end; margin-right: 20px; }
.hvc-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.hvc-icon.green { background: linear-gradient(135deg, #10b981, #059669); color: white; }
.hvc-icon.blue  { background: var(--gradient); color: white; }
.hvc-text strong { display: block; font-size: 0.82rem; color: var(--secondary); }
.badge-green { display: inline-block; font-size: 0.75rem; color: #10b981; font-weight: 700; margin-top: 2px; }
.badge-blue  { display: inline-block; font-size: 0.75rem; color: var(--primary); font-weight: 700; margin-top: 2px; }

/* ORB */
.hero-orb {
  position: relative;
  width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.r1 { width: 300px; height: 300px; animation: spin 22s linear infinite; }
.r2 { width: 220px; height: 220px; animation: spin 16s linear infinite reverse; border-style: dashed; border-color: rgba(6,182,212,0.2); }
.r3 { width: 140px; height: 140px; background: rgba(26,86,219,0.18); border-color: rgba(26,86,219,0.3); }
.orb-center {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 0 40px rgba(26,86,219,0.4), inset 0 0 20px rgba(255,255,255,0.1);
}
.orb-dot {
  position: absolute;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.orb-dot:hover { background: rgba(26,86,219,0.4); transform: scale(1.15); }
.od1 { top: 0;   left: 50%; transform: translateX(-50%); }
.od2 { top: 18%; right: 5%; }
.od3 { bottom: 18%; right: 5%; }
.od4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.od5 { bottom: 18%; left: 5%; }
.od6 { top: 18%; left: 5%; }

/* clutch badge */
.clutch-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  align-self: center;
}
.cb-stars { color: #fbbf24; font-size: 0.8rem; display: flex; gap: 2px; }
.cb-text strong { color: var(--secondary); }
.cb-text span { color: var(--text-light); }

.floating { animation: float 4.5s ease-in-out infinite; }
.delay { animation-delay: -2.2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes spin  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.hero-wave {
  position: relative;
  margin-top: -1px;
}
.hero-wave svg { display: block; width: 100%; height: 90px; }

/* ===========================
   PARTNERS / LOGO SCROLL
=========================== */
.partners-section {
  background: var(--bg);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.partners-track { overflow: hidden; position: relative; }
.partners-track::before,
.partners-track::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-track::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.partners-track::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.partners-inner {
  display: flex;
  gap: 0;
  animation: scroll-logos 22s linear infinite;
  width: max-content;
}
.partner-logo {
  display: flex; align-items: center; gap: 8px;
  padding: 0 36px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #94a3b8;
  transition: var(--transition);
  white-space: nowrap;
}
.partner-logo i { font-size: 1.4rem; }
.partner-logo:hover { color: var(--primary); }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   SECTION BASE
=========================== */
.section { padding: 92px 0; }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ===========================
   VALUE PROPS
=========================== */
.value-props { background: var(--white); }

.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.pillar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.pillar-featured {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}
.pillar-icon-wrap { margin: 0 auto 20px; width: 56px; }
.pillar-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.pillar-featured h3, .pillar-featured p { color: white; }
.pillar-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #c7d7f8; }
.service-card:hover::after { transform: scaleX(1); }

.sc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.s-purple { background: rgba(139,92,246,0.1); color: #7c3aed; }
.s-blue   { background: rgba(26,86,219,0.1); color: var(--primary); }
.s-teal   { background: rgba(6,182,212,0.1); color: #0891b2; }
.s-orange { background: rgba(249,115,22,0.1); color: #ea580c; }
.s-pink   { background: rgba(236,72,153,0.1); color: #db2777; }
.s-indigo { background: rgba(99,102,241,0.1); color: #4f46e5; }
.s-green  { background: rgba(16,185,129,0.1); color: #059669; }
.s-yellow { background: rgba(234,179,8,0.1); color: #ca8a04; }

.sc-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sc-badge-new { background: rgba(16,185,129,0.1); color: var(--success); }

.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.service-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; margin-bottom: 14px; }
.sc-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.sc-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: var(--text);
}
.sc-list li i { color: var(--success); font-size: 0.75rem; width: 12px; }
.sc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap 0.2s;
}
.sc-link:hover { gap: 10px; }

/* ===========================
   ABOUT
=========================== */
.about-section { background: var(--bg); }
.about-inner { display: flex; align-items: center; gap: 72px; }

.about-visual { flex: 0 0 420px; position: relative; }
.av-main-card {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.av-bg-gradient {
  position: absolute; inset: 0;
  background: var(--gradient);
}
.av-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.av-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 52px);
  grid-template-rows: repeat(3, 52px);
  gap: 12px;
  position: relative;
}
.av-ig-item {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.av-ig-item:hover { background: rgba(255,255,255,0.22); transform: scale(1.05); }
.av-ig-center {
  background: rgba(255,255,255,0.95);
  grid-column: 2;
  grid-row: 2;
}

.av-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.ac-top { top: -16px; right: -16px; }
.ac-bottom { bottom: -16px; left: -16px; }
.avsc-val { font-size: 0.95rem; font-weight: 700; color: var(--secondary); }
.avsc-val span { color: var(--primary); font-size: 1.4rem; font-weight: 900; }
.avsc-flags { display: flex; gap: 8px; font-size: 1.5rem; }
.avsc-sub { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }

.about-content { flex: 1; }
.about-content h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.3rem);
  font-weight: 800; color: var(--secondary);
  line-height: 1.2; margin: 14px 0 18px;
}
.about-lead { font-size: 1.05rem; color: var(--text); line-height: 1.75; margin-bottom: 14px; font-weight: 500; }
.about-content > p { color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }

.about-3p { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.p3-item { display: flex; align-items: flex-start; gap: 14px; }
.p3-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.p3-item strong { display: block; font-weight: 700; color: var(--secondary); font-size: 0.95rem; }
.p3-item span { font-size: 0.88rem; color: var(--text-light); }

/* ===========================
   WHY
=========================== */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); background: var(--white); }
.wc-icon {
  width: 60px; height: 60px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(26,86,219,0.28);
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }

/* ===========================
   PROCESS
=========================== */
.process-section { background: var(--bg); }
.process-row { display: flex; align-items: flex-start; }
.proc-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.proc-step:hover, .proc-step.active { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.proc-step.active { border-color: var(--primary); background: var(--primary-light); }
.ps-number {
  position: absolute; top: 12px; right: 16px;
  font-size: 2.8rem; font-weight: 900;
  color: var(--primary); opacity: 0.1; line-height: 1;
}
.ps-icon {
  width: 60px; height: 60px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(26,86,219,0.28);
}
.proc-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.proc-step p { color: var(--text-light); font-size: 0.87rem; line-height: 1.65; }
.proc-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 0 10px; color: var(--primary); opacity: 0.35;
  font-size: 1.1rem; flex-shrink: 0;
  margin-top: 50px;
}

/* ===========================
   TEAM
=========================== */
.team-section { background: #edf2f7; }
.team-header { margin-bottom: 42px; }
.team-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}
.team-header h2::after {
  content: '';
  width: 52px;
  height: 3px;
  display: block;
  margin: 12px auto 0;
  border-radius: 999px;
  background: var(--primary);
}
.team-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #42526e;
}

.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5eaf2;
  box-shadow: 0 12px 24px rgba(15, 37, 64, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 37, 64, 0.12);
}

.tc-media {
  position: relative;
  height: 248px;
  overflow: hidden;
  background: #f3f6fb;
}
.tc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tc-media.has-social::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(26,86,219,0) 0%, rgba(26,86,219,.42) 100%);
}

.tc-socials {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.tc-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: #6d7e96;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: var(--transition);
}
.tc-socials a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.tc-info {
  padding: 18px 20px 20px;
  text-align: center;
}
.tc-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 11px;
  font-size: 0.72rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 700;
  background: #d8e9ff;
  color: #2e7fd4;
}
.tc-info h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  color: #12284a;
  margin-bottom: 6px;
}
.tc-info p {
  margin: 0;
  font-size: 0.94rem;
  color: #6d7e96;
}

.team-card.is-featured .tc-info {
  background: #49a0e1;
}
.team-card.is-featured .tc-role {
  background: rgba(255,255,255,.24);
  color: #fff;
}
.team-card.is-featured .tc-info h3,
.team-card.is-featured .tc-info p {
  color: #fff;
}

/* ===========================
   INDUSTRIES
=========================== */
.industries-section { background: var(--bg); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ind-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition);
}
.ind-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.ind-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.ind-card:hover .ind-icon-wrap { background: var(--gradient); color: white; }
.ind-blue   { background: rgba(6,182,212,0.1); color: #0891b2; }
.ind-red    { background: rgba(239,68,68,0.1); color: #dc2626; }
.ind-green  { background: rgba(16,185,129,0.1); color: #059669; }
.ind-purple { background: rgba(139,92,246,0.1); color: #7c3aed; }
.ind-teal   { background: rgba(20,184,166,0.1); color: #0d9488; }
.ind-pink   { background: rgba(236,72,153,0.1); color: #db2777; }
.ind-orange { background: rgba(249,115,22,0.1); color: #ea580c; }
.ind-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--secondary); margin-bottom: 5px; }
.ind-info p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.55; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { background: var(--white); }
.clutch-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  margin-bottom: 48px;
}
.cs-rating { display: flex; align-items: center; gap: 12px; }
.cs-score { font-size: 2.8rem; font-weight: 900; color: var(--secondary); line-height: 1; }
.cs-stars { display: flex; gap: 3px; color: #f59e0b; font-size: 1rem; }
.cs-platform { font-size: 0.8rem; font-weight: 600; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.cs-platform i { color: var(--primary); }
.cs-divider { width: 1px; height: 48px; background: var(--border); }
.cs-count { text-align: center; }
.cs-count span { display: block; font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.cs-count { font-size: 0.85rem; color: var(--text-light); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-featured { background: var(--gradient); border-color: transparent; }
.testi-quote { font-size: 2rem; color: var(--primary); opacity: 0.2; line-height: 1; margin-bottom: 4px; }
.testi-featured .testi-quote { color: white; opacity: 0.3; }
.testi-stars { display: flex; gap: 3px; color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.testi-featured .testi-stars { color: rgba(255,255,255,0.9); }
.testi-card > p { font-size: 0.93rem; color: var(--text-light); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.testi-featured > p { color: rgba(255,255,255,0.88); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.ta-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white;
}
.ta-a1 { background: linear-gradient(135deg, #1a56db, #06b6d4); }
.ta-a2 { background: linear-gradient(135deg, #10b981, #059669); }
.ta-a3 { background: linear-gradient(135deg, #7c3aed, #1a56db); }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--secondary); }
.testi-featured .testi-author strong { color: white; }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }
.testi-featured .testi-author span { color: rgba(255,255,255,0.7); }

/* ===========================
   BLOG
=========================== */
.blog-section { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-featured { grid-column: span 1; }

.bc-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.bc-ai    { background: linear-gradient(135deg, #7c3aed, #1a56db); }
.bc-cyber { background: linear-gradient(135deg, #dc2626, #b91c1c); }
.bc-cloud { background: linear-gradient(135deg, #1a56db, #06b6d4); }
.bc-img-icon { font-size: 3.5rem; color: rgba(255,255,255,0.3); z-index: 1; }
.bc-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}
.bc-body { padding: 22px 24px 24px; }
.bc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 0.78rem; color: var(--text-light); flex-wrap: wrap; }
.bc-cat {
  display: flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 100px;
  font-weight: 600; font-size: 0.75rem;
}
.ai-cat    { background: rgba(124,58,237,0.1); color: #7c3aed; }
.cyber-cat { background: rgba(220,38,38,0.1);  color: #dc2626; }
.cloud-cat { background: rgba(26,86,219,0.1);  color: var(--primary); }
.bc-body h3 { font-size: 1rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; line-height: 1.4; }
.bc-body p  { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; }
.bc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 0.87rem;
  transition: gap 0.2s;
}
.bc-link:hover { gap: 10px; }

/* ===========================
   FAQ
=========================== */
.faq-section { background: var(--white); }
.faq-inner { display: flex; gap: 72px; align-items: flex-start; }
.faq-header { flex: 0 0 320px; }
.faq-header h2 { font-size: clamp(1.6rem, 2.2vw, 2rem); font-weight: 800; color: var(--secondary); margin: 12px 0 14px; line-height: 1.2; }
.faq-header p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.faq-list { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  font-weight: 600; font-size: 0.95rem; color: var(--secondary);
  background: var(--white);
  border: none; cursor: pointer;
  gap: 12px; transition: var(--transition);
}
.faq-q:hover { background: var(--primary-light); color: var(--primary); }
.faq-q i { flex-shrink: 0; font-size: 0.85rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.open .faq-q { background: var(--primary-light); color: var(--primary); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: var(--bg);
}
.faq-a p { padding: 16px 22px 20px; font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: var(--gradient-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.s1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.s2 { width: 300px; height: 300px; bottom: -80px; right: 10%; }
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  margin-bottom: 14px;
}
.cta-left h2 { font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 800; color: white; margin-bottom: 12px; }
.cta-left p { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 520px; line-height: 1.75; }
.cta-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; flex-shrink: 0; }
.cta-phones { display: flex; flex-direction: column; gap: 8px; }
.cta-phones a {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500;
  transition: var(--transition);
}
.cta-phones a:hover { color: white; }
.cta-phones i { color: var(--accent); }

/* ===========================
   CONTACT
=========================== */
.contact-section { background: var(--bg); }
.contact-wrap { display: flex; gap: 72px; align-items: flex-start; }
.contact-left { flex: 0 0 380px; }
.contact-left h2 { font-size: clamp(1.7rem, 2.3vw, 2.2rem); font-weight: 800; color: var(--secondary); margin: 12px 0 16px; line-height: 1.2; }
.contact-left > p { color: var(--text-light); line-height: 1.75; margin-bottom: 28px; }

.office-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.office-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.oc-flag { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.office-card strong { display: block; font-size: 0.9rem; color: var(--secondary); margin-bottom: 2px; }
.office-card span { display: block; font-size: 0.82rem; color: var(--text-light); margin-bottom: 4px; }
.office-card a { font-size: 0.88rem; color: var(--primary); font-weight: 600; }
.office-card a:hover { text-decoration: underline; }

.contact-email-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; margin-bottom: 22px;
}
.contact-email-row i { color: var(--primary); }
.contact-email-row a { color: var(--primary); font-weight: 600; }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.95rem;
  transition: var(--transition);
}
.social-row a:hover { background: var(--primary); color: white; border-color: var(--primary); }

.contact-right { flex: 1; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.cf-title { font-size: 1.15rem; font-weight: 700; color: var(--secondary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none; align-items: center; gap: 10px;
  background: rgba(16,185,129,0.08);
  color: var(--success);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.9rem; font-weight: 500;
  margin-top: 14px;
}
.form-success.show { display: flex; }
.form-error {
  display: none; align-items: center; gap: 10px;
  background: rgba(220,38,38,0.08);
  color: #b91c1c;
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.9rem; font-weight: 500;
  margin-top: 14px;
}
.form-error.show { display: flex; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--secondary); color: rgba(255,255,255,0.65); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 72px 24px 48px;
}
.footer-desc { font-size: 0.88rem; line-height: 1.75; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: white; }

.footer-col h4 {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: white; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.86rem; transition: var(--transition); }
.footer-col a:hover { color: white; padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.85rem;
}
.footer-contact-list span { font-size: 1rem; }
.footer-contact-list i { color: var(--accent); width: 14px; }
.footer-contact-list a:hover { color: white; }

.footer-offices { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.footer-offices div { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-offices i { color: var(--accent); font-size: 0.75rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  padding: 0 24px;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a:hover { color: white; }

/* ===========================
   BACK TO TOP
=========================== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--gradient);
  color: white; border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,86,219,0.4);
  transition: var(--transition);
  opacity: 0; visibility: hidden; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .about-inner { gap: 48px; }
  .about-visual { flex: 0 0 360px; }
  
  /* Team responsive 1100px */
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .tc-media { height: 220px; }
  .team-header h2 { font-size: clamp(1.75rem, 2.8vw, 2.2rem); }
}

@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-inner { justify-content: center; }
  .hero-content { max-width: 640px; }
  .pillars-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .tc-media { height: 200px; }
  .tc-info { padding: 16px 18px 18px; }
  .tc-role { font-size: 0.68rem; padding: 4px 10px; margin-bottom: 9px; }
  .tc-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
  .tc-info p { font-size: 0.88rem; }
  .team-header h2 { font-size: clamp(1.65rem, 2.4vw, 2rem); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .about-inner { flex-direction: column; }
  .about-visual { width: 100%; flex: none; }
  .contact-wrap { flex-direction: column; }
  .contact-left { flex: none; width: 100%; }
  .cta-inner { flex-direction: column; }
  .faq-inner { flex-direction: column; gap: 36px; }
  .faq-header { flex: none; }
  .process-row { flex-direction: column; gap: 16px; }
  .proc-connector { display: none; }
}

@media (max-width: 768px) {
  .topbar-contacts .sep { display: none; }
  .topbar-contacts span:nth-child(3),
  .topbar-contacts span:nth-child(5) { display: none; }
  .lang-selector { margin-left: 0; }
  .lang-btn { padding: 8px 12px; font-size: 0.75rem; min-height: 44px; }
  .lang-dropdown { right: auto; left: 0; }
  .header-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .nav {
    position: fixed;
    top: 61px; left: 0; right: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 16px;
    max-height: calc(100vh - 61px);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
    z-index: 999;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: 4px; align-items: stretch; }
  .nav-link { justify-content: space-between; }
  .mega-menu, .dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg);
    border-radius: 8px;
    display: none;
    padding: 12px;
    margin-top: 4px;
    flex-direction: column;
    gap: 0;
    min-width: auto;
  }
  .mega-menu.open, .dropdown.open { display: flex; }
  .mega-menu { flex-direction: column; }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 12px; }
  .tc-media { height: 180px; }
  .tc-info { padding: 14px 16px 16px; }
  .tc-role { font-size: 0.65rem; padding: 3px 9px; margin-bottom: 8px; }
  .tc-info h3 { font-size: 1rem; margin-bottom: 3px; }
  .tc-info p { font-size: 0.85rem; }
  .team-header { margin-bottom: 32px; }
  .team-header h2 { font-size: clamp(1.5rem, 2vw, 1.85rem); }
  .team-header h2::after { width: 40px; margin-top: 10px; }
  .team-header p { font-size: 0.95rem; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 540px;
    gap: 8px;
  }
  .stat {
    padding: 12px 10px;
    border-right: none;
    border-bottom: none;
    justify-content: flex-start;
  }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .clutch-summary { flex-direction: column; gap: 16px; }
  .cs-divider { display: none; }
  .section { padding: 64px 0; }
}

@media (max-width: 540px) {
  .topbar-inner { flex-direction: column; gap: 6px; align-items: flex-start; }
  .hero-content h1 { font-size: 1.85rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  
  /* Team responsive 540px (mobile) */
  .team-section { padding: 48px 0; background: #edf2f7; }
  .team-grid { grid-template-columns: 1fr; gap: 10px; }
  .team-card { border-radius: 12px; }
  .tc-media { height: 160px; }
  .tc-socials { gap: 8px; bottom: 14px; }
  .tc-socials a { width: 28px; height: 28px; font-size: 0.75rem; }
  .tc-info { padding: 12px 14px 14px; }
  .tc-role { font-size: 0.62rem; padding: 3px 8px; margin-bottom: 7px; letter-spacing: 0.6px; }
  .tc-info h3 { font-size: 0.95rem; margin-bottom: 2px; }
  .tc-info p { font-size: 0.82rem; }
  .team-header { margin-bottom: 24px; }
  .team-header h2 { font-size: 1.4rem; }
  .team-header h2::after { width: 36px; height: 2px; margin-top: 8px; }
  .team-header p { font-size: 0.9rem; line-height: 1.5; }
}

