/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --navy: #0a0f1e;
  --navy-2: #0f1629;
  --navy-3: #141d35;
  --indigo: #4f46e5;
  --indigo-2: #6366f1;
  --cyan: #06b6d4;
  --cyan-2: #22d3ee;
  --amber: #f59e0b;
  --amber-2: #fcd34d;
  --green: #10b981;
  --white: #ffffff;
  --off-white: #f8fafc;
  --slate-1: #f1f5f9;
  --slate-2: #e2e8f0;
  --slate-3: #cbd5e1;
  --slate-4: #94a3b8;
  --slate-5: #64748b;
  --slate-6: #475569;
  --text: #0f172a;
  --text-2: #1e293b;
  --text-3: #334155;

  --ff: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-mono: "Cascadia Code", "Consolas", monospace;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(79, 70, 229, 0.18);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: var(--ff);
  cursor: pointer;
  border: none;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.18);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.eyebrow-cyan {
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.2);
}

.eyebrow-amber {
  color: var(--amber);
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

.display {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.display-white {
  color: var(--white);
}

.headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.subhead {
  font-size: 1.05rem;
  color: var(--slate-5);
  line-height: 1.7;
}

.accent-indigo {
  color: var(--indigo);
}

.accent-cyan {
  color: var(--cyan);
}

.accent-amber {
  color: var(--amber);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-indigo {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.btn-indigo:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.btn-cyan {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35);
}

.btn-cyan:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-outline-indigo {
  background: transparent;
  border: 2px solid var(--indigo);
  color: var(--indigo);
}

.btn-outline-indigo:hover {
  background: var(--indigo);
  color: #fff;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--indigo);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar span,
.topbar a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--cyan);
}

.topbar i {
  font-size: 0.72rem;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links > li > a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-3);
  transition:
    color 0.15s,
    background 0.15s;
}

.nav-links > li > a:hover {
  color: var(--indigo);
  background: rgba(79, 70, 229, 0.06);
}

.nav-links > li > a.active {
  color: var(--indigo);
  font-weight: 600;
}

.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6rem;
  margin-left: 5px;
  opacity: 0.5;
}

.dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--slate-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 230px;
  z-index: 200;
}

.dropdown:hover .dd-menu {
  display: block;
}

.dd-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-3);
  transition:
    background 0.15s,
    color 0.15s;
}

.dd-menu a:hover {
  background: rgba(79, 70, 229, 0.07);
  color: var(--indigo);
}

.dd-menu a .dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
}

.nav-phone i {
  color: var(--indigo);
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  background: none;
  font-size: 1.3rem;
  color: var(--text-2);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--slate-2);
  padding: 12px 24px 20px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav li a {
  display: block;
  padding: 11px 4px;
  border-bottom: 1px solid var(--slate-1);
  font-weight: 500;
  color: var(--text-3);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   HERO — SIGNATURE ELEMENT
   Dark navy with animated grid mesh + glowing orbs
═══════════════════════════════════════════ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* grid background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 70, 229, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.35) 0%,
    transparent 70%
  );
  top: -150px;
  left: -100px;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.25) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -80px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.15) 0%,
    transparent 70%
  );
  top: 40%;
  right: 25%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(79, 70, 229, 0.3);
  color: var(--indigo-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 490px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
  text-align: left;
}

.hero-trust-item strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}

.hero-trust-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Hero right — tech stack visual */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-dashboard {
  background: rgba(15, 22, 41, 0.85);
  border: 1px solid rgba(79, 70, 229, 0.25);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 60px rgba(79, 70, 229, 0.2),
    0 24px 64px rgba(0, 0, 0, 0.4);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dot:nth-child(1) {
  background: #ff5f57;
}

.dash-dot:nth-child(2) {
  background: #ffbd2e;
}

.dash-dot:nth-child(3) {
  background: #28ca41;
}

.dash-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--ff-mono);
  margin-left: auto;
}

.tech-service-block {
  margin-bottom: 16px;
}

.tech-service-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
}

.tech-tag:hover {
  background: rgba(79, 70, 229, 0.2);
  border-color: rgba(79, 70, 229, 0.4);
}

.tech-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-react {
  background: #61dafb;
}

.dot-vue {
  background: #42b883;
}

.dot-node {
  background: #339933;
}

.dot-php {
  background: #777bb4;
}

.dot-laravel {
  background: #ff2d20;
}

.dot-wp {
  background: #21759b;
}

.dot-python {
  background: #3776ab;
}

.dot-flutter {
  background: #02569b;
}

.dot-android {
  background: #3ddc84;
}

.dot-ios {
  background: #555;
}

.dot-mysql {
  background: #4479a1;
}

.dot-aws {
  background: #ff9900;
}

.dot-seo {
  background: #34a853;
}

.dot-gads {
  background: #ea4335;
}

.dot-fb {
  background: #1877f2;
}

.dot-figma {
  background: #f24e1e;
}

.tech-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 14px 0;
}

/* ═══════════════════════════════════════════
   CLIENTS / TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--slate-1);
  border-top: 1px solid var(--slate-2);
  border-bottom: 1px solid var(--slate-2);
  padding: 22px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.trust-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-5);
}

.trust-badge i {
  color: var(--indigo);
  font-size: 0.9rem;
}

.trust-star {
  color: var(--amber);
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-section {
  background: var(--off-white);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head .headline {
  margin-bottom: 14px;
}

.section-head .subhead {
  max-width: 580px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.04),
    rgba(6, 182, 212, 0.04)
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.25);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.si-indigo {
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo);
}

.si-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
}

.si-amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}

.si-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.si-pink {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.si-violet {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.service-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--slate-3);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card > p {
  font-size: 0.88rem;
  color: var(--slate-5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tech-stack-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-4);
  margin-bottom: 10px;
}

.service-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--slate-1);
  border: 1px solid var(--slate-2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
}

.s-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--indigo);
  transition: gap 0.2s;
}

.service-card:hover .service-link {
  gap: 10px;
}

/* ═══════════════════════════════════════════
   TECH STACK SECTION
═══════════════════════════════════════════ */
.tech-section {
  background: var(--navy-2);
  padding: 80px 0;
}

.tech-section .section-head .headline {
  color: #fff;
}

.tech-section .section-head .subhead {
  color: rgba(255, 255, 255, 0.55);
}

.tech-category {
  margin-bottom: 40px;
}

.tech-category:last-child {
  margin-bottom: 0;
}

.tech-cat-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-cat-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
  cursor: default;
}

.tech-pill:hover {
  background: rgba(79, 70, 229, 0.2);
  border-color: rgba(79, 70, 229, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.tech-pill i {
  font-size: 1rem;
}

.tp-react i {
  color: #61dafb;
}

.tp-vue i {
  color: #42b883;
}

.tp-next i {
  color: #fff;
}

.tp-node i {
  color: #339933;
}

.tp-php i {
  color: #777bb4;
}

.tp-laravel i {
  color: #ff2d20;
}

.tp-wp i {
  color: #21759b;
}

.tp-flutter i {
  color: #02569b;
}

.tp-android i {
  color: #3ddc84;
}

.tp-ios i {
  color: #aaa;
}

.tp-python i {
  color: #3776ab;
}

.tp-mysql i {
  color: #4479a1;
}

.tp-mongo i {
  color: #47a248;
}

.tp-aws i {
  color: #ff9900;
}

.tp-gcp i {
  color: #4285f4;
}

.tp-docker i {
  color: #2496ed;
}

.tp-seo i {
  color: #34a853;
}

.tp-gads i {
  color: #ea4335;
}

.tp-figma i {
  color: #f24e1e;
}

.tp-ps i {
  color: #31a8ff;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.about-stat-card {
  background: var(--slate-1);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}

.about-stat-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--indigo);
  margin-bottom: 4px;
}

.about-stat-card span {
  font-size: 0.78rem;
  color: var(--slate-5);
  font-weight: 500;
}

.about-features {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--slate-1);
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-2);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.afi-indigo {
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo);
}

.afi-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
}

.afi-amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}

.afi-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.about-feature h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--slate-5);
  margin: 0;
}

.about-img-block {
  position: relative;
  padding: 24px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.06),
    rgba(6, 182, 212, 0.06)
  );
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: var(--radius-xl);
}

.about-inner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  display: grid;
  gap: 16px;
}

.about-val {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  border: 1px solid var(--slate-2);
}

.about-val i {
  color: var(--indigo);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-val p {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-2);
  margin: 0;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════════════ */
.why-section {
  background: var(--slate-1);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: attr(data-n);
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(79, 70, 229, 0.06);
  line-height: 1;
  letter-spacing: -0.03em;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}

.wi-indigo {
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo);
}

.wi-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
}

.wi-amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}

.wi-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.why-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--slate-5);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   SPECIALTIES
═══════════════════════════════════════════ */
.spec-section {
  background: var(--white);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--slate-2);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-3);
  background: var(--off-white);
  transition: all 0.2s;
}

.spec-item:hover {
  background: rgba(79, 70, 229, 0.06);
  border-color: rgba(79, 70, 229, 0.3);
  color: var(--indigo);
  transform: translateX(4px);
}

.spec-item i {
  color: var(--indigo);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-section {
  background: var(--navy);
  padding: 90px 0;
}

.process-section .headline {
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
}

.process-section .subhead {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 56px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(79, 70, 229, 0.3);
}

.process-step {
  text-align: center;
  padding: 0 12px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.15);
  border: 2px solid rgba(79, 70, 229, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--indigo-2);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.step-num.active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #fff;
  box-shadow: 0 0 24px rgba(79, 70, 229, 0.6);
}

.process-step h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.25s;
  position: relative;
}

.testi-card:hover {
  box-shadow: var(--shadow-lg);
}

.testi-stars {
  color: var(--amber);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.testi-card blockquote {
  font-size: 0.87rem;
  color: var(--slate-6);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  border-left: 3px solid var(--indigo);
  padding-left: 14px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.ta-1 {
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
}

.ta-2 {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.ta-3 {
  background: linear-gradient(135deg, var(--amber), #f97316);
}

.testi-author h5 {
  font-size: 0.87rem;
  font-weight: 700;
  margin-bottom: 1px;
}

.testi-author span {
  font-size: 0.76rem;
  color: var(--slate-4);
}

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(
    135deg,
    #3730a3 0%,
    var(--indigo) 50%,
    #0891b2 100%
  );
  padding: 84px 0;
}

.cta-band-inner {
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info-side h2 {
  margin-bottom: 16px;
}

.contact-info-side p {
  font-size: 0.93rem;
  color: var(--slate-5);
  margin-bottom: 32px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.cinfo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.cinfo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-indigo {
  background: rgba(79, 70, 229, 0.1);
  color: var(--indigo);
}

.ci-cyan {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
}

.ci-amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}

.ci-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.cinfo-card h4 {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--slate-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.cinfo-card p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  margin: 0;
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--slate-2);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
}

.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg {
  margin-bottom: 18px;
}

.fg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--slate-5);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--slate-2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--ff);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.fg textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.35);
}

.form-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--slate-4);
  margin-top: 10px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  /*height: 44px;*/
  width: 175px;
  height: auto;
  margin-bottom: 16px;
  /*filter: brightness(0) invert(1);*/
}

.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  transition: all 0.2s;
}

.soc-btn:hover {
  background: var(--indigo);
  color: #fff;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: grid;
  gap: 9px;
}

.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a::before {
  content: "—";
  font-size: 0.6rem;
  color: rgba(79, 70, 229, 0.5);
}

.footer-col ul a:hover {
  color: var(--cyan);
}

.footer-contact-row {
  display: grid;
  gap: 11px;
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.fc-item i {
  color: var(--indigo-2);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: var(--indigo-2);
}

/* ═══════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════ */
.fab-wa {
  position: fixed;
  bottom: 82px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  animation: pulseWA 2.2s infinite;
  transition: transform 0.2s;
}

.fab-wa:hover {
  transform: scale(1.1);
}

@keyframes pulseWA {
  0%,
  100% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7);
  }
}

.fab-top {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 999;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s;
}

.fab-top:hover {
  background: #4338ca;
}

/* ═══════════════════════════════════════════
   ANIMATION
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .process-steps::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-right .btn,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .trust-bar-inner {
    justify-content: center;
  }

  .trust-label {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-box {
    padding: 28px 22px;
  }
}

@media (max-width: 540px) {
  .wrap {
    padding: 0 15px;
  }

  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .topbar-right {
    display: none;
  }

  .about-img-block {
  padding: 8px;
}
}
