/* ===== LOCADIGIT — PREMIUM REDESIGN ===== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --primary: #4171e6;
  --primary-dark: #3460cc;
  --primary-light: #6b93ee;
  --primary-pale: #ebf0fd;
  --secondary: #2952b8;
  --accent: #06b6d4;
  --accent2: #10b981;
  --dark: #0f172a;
  --dark2: #1e293b;
  --dark3: #334155;
  --bg: #ffffff;
  --bg2: #f8fafc;
  --bg3: #f1f5f9;
  --bg4: #e2e8f0;
  --white: #ffffff;
  --text: #475569;
  --text-dark: #1e293b;
  --text-light: #94a3b8;
  --gradient: linear-gradient(135deg, #4171e6, #6b93ee);
  --gradient2: linear-gradient(135deg, #4171e6, #06b6d4);
  --shadow: 0 10px 40px rgba(65, 113, 230, 0.1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 60px rgba(65, 113, 230, 0.12);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 6px 16px rgba(0, 0, 0, 0.04);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  display: block;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
  background: transparent;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(65, 113, 230, 0.08);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.logo img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}
.logo span {
  display: inline;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding: 5px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(65, 113, 230, 0.3);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Hero page header overrides */
.hero-page header:not(.scrolled) .logo {
  color: #fff;
}
.hero-page header:not(.scrolled) .logo span {
  display: inline;
}
.hero-page header:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}
.hero-page header:not(.scrolled) .nav-links a:hover,
.hero-page header:not(.scrolled) .nav-links a.active {
  color: #fff;
}
.hero-page header:not(.scrolled) .mobile-menu-btn {
  color: #fff;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--white);
  z-index: 1500;
  padding: 2rem;
  transition: var(--transition);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--bg4);
}
.mobile-nav-links {
  list-style: none;
}
.mobile-nav-links li {
  margin-bottom: 0.3rem;
}
.mobile-nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  display: block;
  padding: 0.8rem 0;
  font-size: 1.05rem;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.mobile-nav-links a:hover {
  color: var(--primary);
  padding-left: 12px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
  background: linear-gradient(160deg, #070d1a 0%, #0c1a30 40%, #101d38 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(65, 113, 230, 0.15) 0%,
    transparent 65%
  );
  top: -200px;
  right: -200px;
  z-index: 0;
  animation: heroOrb1 12s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.1) 0%,
    transparent 65%
  );
  bottom: -150px;
  left: -150px;
  z-index: 0;
  animation: heroOrb2 10s ease-in-out infinite alternate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 13, 26, 0.5) 0%,
    rgba(12, 26, 48, 0.3) 50%,
    rgba(7, 13, 26, 0.6) 100%
  );
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(65, 113, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 113, 230, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}
.hero-shapes {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(65, 113, 230, 0.1);
  border: 1px solid rgba(65, 113, 230, 0.2);
  color: #93b4f5;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  letter-spacing: 0.03em;
  animation: slideDown 0.6s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-badge i {
  font-size: 0.45rem;
  color: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  animation: slideUp 0.7s ease 0.1s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #6b93ee 0%, #93b4f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: slideUp 0.7s ease 0.2s both;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  animation: slideUp 0.7s ease 0.3s both;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideUp 0.7s ease 0.5s both;
}
.hero-stat h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}
.hero-stat p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.hero-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  z-index: 5;
  animation: slideInRight 0.8s ease 0.3s both;
}
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: slideUp 0.7s ease 0.6s both;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
.scroll-indicator span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Buttons */
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(65, 113, 230, 0.3);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 1.5px solid var(--bg4);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-pale);
}
.hero .btn-outline {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.hero .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.btn-secondary {
  background: var(--primary-pale);
  color: var(--primary);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(65, 113, 230, 0.12);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(65, 113, 230, 0.25);
}

/* Page hero sub-pages */
.page-hero {
  min-height: 45vh;
  padding: 9rem 0 4rem;
  background: linear-gradient(160deg, #070d1a 0%, #0c1a30 40%, #101d38 100%);
}
.page-hero .hero-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}
.section-white {
  background: var(--bg);
}
.section-light {
  background: var(--bg2);
}
.section-blue {
  background: linear-gradient(135deg, #4171e6 0%, #2952b8 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.section-blue .section-header h2,
.section-blue h2 {
  color: var(--white);
}
.section-blue .section-header p,
.section-blue p {
  color: rgba(255, 255, 255, 0.8);
}
.section-blue .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.section-blue .btn-primary {
  background: #fff;
  color: var(--primary);
}
.section-blue .btn-primary:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(65, 113, 230, 0.1);
}
.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ===== CLIENTS ===== */
.clients-section {
  padding: 3.5rem 0;
  background: var(--bg);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.clients-label {
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}
.client-logo {
  background: var(--bg2);
  border: 1px solid var(--bg4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  width: 150px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.client-logo:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.client-logo img {
  max-height: 55px;
  max-width: 110px;
  object-fit: contain;
  opacity: 1;
  filter: grayscale(0%);
  transition: var(--transition);
}
.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===== TRUST BADGES ===== */
.trust-badges-section {
  padding: 3rem 0;
  background: var(--bg2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.trust-badges-label {
  text-align: center;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--bg4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.6rem;
  transition: var(--transition);
  text-decoration: none;
}
.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(65, 113, 230, 0.2);
}
.trust-badge img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.trust-badge-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-stars {
  color: #f59e0b;
  font-size: 0.7rem;
  display: flex;
  gap: 1px;
}
.trust-badge-info span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}
.msme-badge {
  border-color: rgba(26, 35, 126, 0.15);
  background: linear-gradient(135deg, #fafbff 0%, #f0f3ff 100%);
}
.msme-badge:hover {
  border-color: rgba(26, 35, 126, 0.3);
}
.msme-title {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #1a237e !important;
}
@media (max-width: 768px) {
  .trust-badges {
    gap: 1rem;
  }
  .trust-badge {
    padding: 0.8rem 1.2rem;
  }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--bg4);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(65, 113, 230, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.3rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient);
  color: var(--white);
  transform: scale(1.08);
}
.service-card h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.service-card p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, #4171e6 0%, #2952b8 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 1rem;
}
.stat-item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ===== PROJECT CARDS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--bg4);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.project-card:hover {
  border-color: rgba(65, 113, 230, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg3);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.project-card:hover .project-image img {
  transform: scale(1.05);
}
.project-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.project-content {
  padding: 1.5rem;
}
.project-content h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.project-content p {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.project-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.project-link:hover {
  gap: 10px;
}
.project-link i {
  font-size: 0.75rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--bg4);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.testimonial-stars i {
  margin-right: 2px;
}
.testimonial-content p {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.client {
  display: flex;
  align-items: center;
  gap: 12px;
}
.client img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg4);
}
.client-info h4 {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
}
.client-info p {
  color: var(--text-light);
  font-size: 0.78rem;
  font-style: normal;
}

/* ===== VIDEO ===== */
.video-showcase {
  padding: 5rem 0;
}
.video-wrapper {
  max-width: 850px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bg4);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gradient);
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(65, 113, 230, 0.35);
}
.about-badge span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 2px;
}
.about-text h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.about-text > p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.highlight-item:hover {
  background: var(--bg2);
}
.highlight-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.highlight-item h4 {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.highlight-item p {
  color: var(--text);
  font-size: 0.8rem;
}

/* ===== PORTFOLIO SHOWCASE ===== */
.portfolio-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.portfolio-item {
  background: var(--white);
  border: 1px solid var(--bg4);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(65, 113, 230, 0.2);
}
.portfolio-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-icon {
  background: var(--gradient);
  color: #fff;
}
.portfolio-item h3 {
  font-size: 1.08rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.portfolio-item p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

/* ===== FOUNDER ===== */
.founder-card {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--bg4);
  border-radius: var(--radius);
  padding: 2.5rem;
  border-left: 4px solid var(--primary);
}
.founder-photo {
  flex-shrink: 0;
}
.founder-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg4);
}
.founder-label {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.founder-info h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
.founder-info p {
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}
.founder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1rem;
}
.founder-meta-item {
  color: var(--text);
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.founder-meta-item i {
  color: var(--primary);
  font-size: 0.85rem;
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--bg4);
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}
.step-card h3 {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.step-card p {
  color: var(--text);
  font-size: 0.85rem;
}

/* ===== TECH ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 1rem;
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 1.2rem 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--bg4);
  transition: var(--transition);
}
.tech-item:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tech-item i {
  font-size: 1.8rem;
  color: var(--primary);
}
.tech-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--bg4);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(65, 113, 230, 0.2);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gradient);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.why-card h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  color: var(--text);
  font-size: 0.88rem;
}

/* ===== CONTACT ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item p {
  color: var(--text);
  font-size: 0.88rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--bg4);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--bg4);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(65, 113, 230, 0.08);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* Form feedback messages */
.form-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
  animation: slideUp 0.3s ease;
}
.form-success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #059669;
}
.form-success i {
  color: #10b981;
  font-size: 1.1rem;
}
.form-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #dc2626;
}
.form-error i {
  color: #ef4444;
  font-size: 1.1rem;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border: 1px solid var(--bg4);
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-question {
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.faq-question i {
  transition: var(--transition);
  color: var(--primary);
  font-size: 0.8rem;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 1.4rem 1.2rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== CAREERS ===== */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.career-card {
  background: var(--white);
  border: 1px solid var(--bg4);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.career-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.career-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.career-card h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.career-card p {
  color: var(--text);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.career-reqs {
  list-style: none;
  margin-bottom: 1.2rem;
}
.career-reqs li {
  color: var(--text);
  font-size: 0.82rem;
  padding: 0.3rem 0;
  padding-left: 16px;
  position: relative;
}
.career-reqs li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-grid.reverse {
  direction: rtl;
}
.feature-grid.reverse > * {
  direction: ltr;
}
.feature-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.feature-text h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.feature-text p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}
.feature-list li {
  color: var(--text);
  font-size: 0.92rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list li i {
  color: var(--accent2);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 4rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
  font-weight: 600;
}
.footer-col p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-links li i {
  margin-right: 8px;
  color: var(--primary-light);
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

/* ===== WELCOME POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.popup-overlay.active .popup {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  transition: var(--transition);
  z-index: 2;
}
.popup-close:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.popup-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #4171e6 100%);
  padding: 2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.popup-logo {
  height: 52px;
  width: 52px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.popup-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.popup h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  padding: 1.5rem 2rem 0;
}
.popup > p {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  padding: 0 2rem;
}
.popup-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}
.popup-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.popup-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}
.popup-stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.popup-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--bg4);
}
.popup-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 2rem;
}
.popup-btns .btn-primary {
  justify-content: center;
  width: 100%;
}
.popup-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  background: #dcfce7;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.popup-whatsapp:hover {
  background: #bbf7d0;
  color: #15803d;
}
.popup-whatsapp i {
  font-size: 1.1rem;
}
.popup-skip {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 1rem 2rem 1.5rem;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
}
.popup-skip:hover {
  color: var(--text-dark);
}

/* ===== FLOATERS ===== */
.contact-floaters {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.floater {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}
.floater:hover {
  transform: translateY(-3px) scale(1.05);
}
.whatsapp {
  background: #25d366;
}
.phone-float {
  background: var(--primary);
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes heroOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-60px, 40px) scale(1.1);
  }
}
@keyframes heroOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, -30px) scale(1.15);
  }
}
@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}
.slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.slide-left.appear {
  opacity: 1;
  transform: translateX(0);
}
.slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.slide-right.appear {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.scale-in.appear {
  opacity: 1;
  transform: scale(1);
}

.stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.stagger > *:nth-child(2) {
  transition-delay: 0.08s;
}
.stagger > *:nth-child(3) {
  transition-delay: 0.08s;
}
.stagger > *:nth-child(4) {
  transition-delay: 0.16s;
}
.stagger > *:nth-child(5) {
  transition-delay: 0.24s;
}
.stagger > *:nth-child(6) {
  transition-delay: 0.32s;
}
.stagger > *:nth-child(7) {
  transition-delay: 0.4s;
}
.stagger > *:nth-child(8) {
  transition-delay: 0.48s;
}
.stagger > *:nth-child(9) {
  transition-delay: 0.56s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero-image {
    display: none;
  }
  .hero-stats {
    gap: 2rem;
  }
  .about-grid,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-grid.reverse {
    direction: ltr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .founder-card {
    flex-direction: column;
    text-align: center;
  }
  .founder-meta {
    justify-content: center;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero {
    padding: 7rem 0 4rem;
    min-height: auto;
  }
  .scroll-indicator {
    display: none;
  }
  .section {
    padding: 4rem 0;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-showcase {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-floaters {
    bottom: 20px;
    right: 20px;
  }
  .floater {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .stat-item h3 {
    font-size: 2.2rem;
  }
  .clients-grid {
    gap: 0.8rem;
  }
  .client-logo {
    width: 130px;
    height: 72px;
    padding: 0.8rem 1rem;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
