/* =====================================================
   CODEXOR — WEBSITE.HTML — COMPLETE STYLESHEET
   ===================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --ink: #0D1117;
  --ink-2: #1C2333;
  --ink-3: #3D4A63;
  --muted: #6B7A96;
  --subtle: #B8C4D8;
  --surface: #F6F8FC;
  --surface-2: #EDF0F7;
  --white: #FFFFFF;
  --blue: #1E6FE8;
  --blue-dk: #1558C7;
  --blue-lt: #EBF2FF;
  --blue-glow: rgba(30, 111, 232, 0.16);
  --indigo: #5E50E6;
  --sky: #0CC4F0;
  --teal: #0D9488;
  --green: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;
  --purple: #7C3AED;
  --border: rgba(13, 17, 23, 0.07);
  --border-md: rgba(13, 17, 23, 0.11);
  --dark-bg: #0D1117;
  --dark-2: #131B2A;
  --dark-border: rgba(255, 255, 255, 0.08);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Fonts */
  --font-d: 'Outfit', sans-serif;
  --font-b: 'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 10px rgba(0, 0, 0, 0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Utilities ── */
.grad-text {
  background: linear-gradient(135deg, #1E6FE8 0%, #5E50E6 60%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--blue-lt);
  color: var(--blue);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid rgba(30, 111, 232, 0.14);
  font-family: var(--font-b);
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  margin: 12px 0 9px;
  letter-spacing: -0.3px;
}

.section-head p {
  color: var(--muted);
  font-size: 13.5px;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.topbar {
  background: var(--dark-bg);
  padding: 0 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}

.tb-left {
  display: flex;
  gap: 20px;
}

.tb-left span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.tb-left i {
  color: var(--sky);
  font-size: 9px;
}

.tb-right {
  display: flex;
  gap: 4px;
}

.tb-right a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9.5px;
  text-decoration: none;
  transition: all .2s;
}

.tb-right a:hover {
  color: var(--sky);
  background: rgba(12, 196, 240, 0.10);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
  transition: top .3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo-text {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.2px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 1px;
  align-items: center;
}

.nav-links>a,
.nav-dd>.dd-trigger {
  color: var(--ink-3);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  transition: all .2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-b);
  white-space: nowrap;
}

.nav-links>a:hover,
.nav-dd:hover>.dd-trigger {
  color: var(--blue);
  background: var(--blue-lt);
}

.nav-links>a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-links>a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.dd-trigger i.fa-chevron-down {
  font-size: 8px;
  transition: transform .25s;
}

.nav-dd:hover .fa-chevron-down {
  transform: rotate(180deg);
}

/* Mega dropdown */
.nav-dd {
  position: relative;
}

.dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 600px;
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .26s cubic-bezier(.23, 1, .32, 1);
  overflow: hidden;
  z-index: 200;
}

/*.nav-dd:hover .dd-menu {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*  pointer-events: auto;*/
/*  transform: translateX(-50%) translateY(0);*/
/*}*/
/* Disable old hover dropdown */
.nav-dd:hover .dd-menu {
  opacity: 0 !important;
  visibility: hidden !important;
}

.dd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.dd-head span {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dd-head span i {
  color: var(--blue);
}

.dd-head a {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}

.dd-head a:hover {
  gap: 7px;
}

.dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 7px 9px;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all .2s;
}

.dd-item:hover {
  background: var(--surface);
  transform: translateX(2px);
}

.dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
  transition: transform .2s;
}

.dd-item:hover .dd-icon {
  transform: scale(1.08);
}

.di1 {
  background: linear-gradient(135deg, #1E6FE8, #06B6D4);
}

.di2 {
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
}

.di3 {
  background: linear-gradient(135deg, #EF4444, #F97316);
}

.di4 {
  background: linear-gradient(135deg, #0EA5E9, #22D3EE);
}

.di5 {
  background: linear-gradient(135deg, #10B981, #84CC16);
}

.di6 {
  background: linear-gradient(135deg, #F59E0B, #FCD34D);
}

.di7 {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.di8 {
  background: linear-gradient(135deg, #E11D48, #FB7185);
}

.di9 {
  background: linear-gradient(135deg, #0D9488, #2DD4BF);
}

.di10 {
  background: linear-gradient(135deg, #EA580C, #FB923C);
}

.di11 {
  background: linear-gradient(135deg, #65A30D, #A3E635);
}

.di12 {
  background: linear-gradient(135deg, #0891B2, #38BDF8);
}

.dd-text h4 {
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
  margin: 0 0 1px;
  transition: color .2s;
}

.dd-item:hover .dd-text h4 {
  color: var(--blue);
}

.dd-text span {
  color: var(--muted);
  font-size: 10px;
}

.dd-arrow {
  font-size: 8px;
  color: var(--subtle);
  margin-left: auto;
  opacity: 0;
  transition: all .2s;
  transform: translateX(-4px);
}

.dd-item:hover .dd-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--blue);
}

.dd-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  background: var(--dark-bg);
}

.ddf-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ddf-left i {
  font-size: 17px;
  color: var(--sky);
}

.ddf-left strong {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: #fff;
}

.ddf-left span {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.36);
}

.ddf-cta {
  padding: 7px 14px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .2s;
  white-space: nowrap;
}

.ddf-cta:hover {
  box-shadow: 0 4px 14px rgba(30, 111, 232, 0.4);
  color: #fff;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.btn-quote {
  padding: 7px 16px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .2s;
  font-family: var(--font-b);
}

.btn-quote:hover {
  background: var(--blue-lt);
  color: var(--blue);
}

.btn-login {
  padding: 7px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .2s;
  font-family: var(--font-b);
}

.btn-login:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 111, 232, 0.30);
}

/* Fix padding on small screens */
@media (max-width: 991px) {

  .topbar {
    display: none; /* hide top bar on mobile */
  }

  .nav {
    top: 0;
    padding: 0 15px;
  }

  .nav-inner {
    height: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .btn-quote,
  .btn-login {
    width: 100%;
    justify-content: center;
  }

  .dd-menu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
  }
}

.dd-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 600px;
    background: var(--white);
    border: 1px solid var(--border-md);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    opacity: 1;
    vibility: hidden;
    pointer-events: none;
    transition: all .26s cubic-bezier(.23, 1, .32, 1);
    overflow: hidden;
    z-index: 200;
}

/*new header css */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #fff;
    padding: 15px;
  }

  .nav-links {
    display: block !important;   /* 🔥 FIX */
    width: 100%;
  }

  .nav-links .nav-item {
    width: 100%;
  }

  .nav-links .nav-link {
    display: block;
    padding: 10px 0;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .btn-quote,
  .btn-login {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #EBF2FF 0%, #F6F8FC 45%, #F0EDFF 100%);
  padding: 138px 48px 100px;
}

/* Mesh blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.16;
}

.hb1 {
  width: 480px;
  height: 480px;
  background: var(--blue);
  top: -130px;
  right: -80px;
  animation: h-float 10s ease-in-out infinite;
}

.hb2 {
  width: 380px;
  height: 380px;
  background: var(--purple);
  bottom: -90px;
  left: -70px;
  animation: h-float 12s ease-in-out infinite reverse;
}

@keyframes h-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-26px);
  }
}

/* Grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid rgba(30, 111, 232, 0.12);
  border-radius: 50px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge i {
  font-size: 10px;
}

.hero h1 {
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.7px;
}

.hero p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  margin: 0 auto 32px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-p {
  padding: 13px 30px;
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 22px rgba(30, 111, 232, 0.32);
  transition: all .25s;
  font-family: var(--font-b);
}

.btn-hero-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(30, 111, 232, 0.45);
  color: #fff;
  background: var(--blue-dk);
}

.btn-hero-o {
  padding: 13px 26px;
  border: 1.5px solid var(--border-md);
  color: var(--ink-3);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  font-family: var(--font-b);
}

.btn-hero-o:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-lt);
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  padding: 0 48px;
  position: relative;
  z-index: 5;
  margin-top: -52px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.stat-item {
  padding: 26px 14px 22px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .2s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--surface);
}

.stat-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  margin: 0 auto 10px;
}

.si1 {
  background: linear-gradient(135deg, var(--blue), var(--sky));
}

.si2 {
  background: linear-gradient(135deg, var(--green), #84CC16);
}

.si3 {
  background: linear-gradient(135deg, var(--amber), #FCD34D);
}

.si4 {
  background: linear-gradient(135deg, var(--red), #F97316);
}

.si5 {
  background: linear-gradient(135deg, var(--purple), #A78BFA);
}

.si6 {
  background: linear-gradient(135deg, #EC4899, #F472B6);
}

.stat-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  margin-bottom: 3px;
}

.stat-n {
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.stat-s {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-d);
}

.stat-l {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 500;
}

/* =====================================================
   PROJECTS
   ===================================================== */
.projects {
  padding: 96px 48px 88px;
  background: var(--surface);
}

.proj-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.proj-tab {
  padding: 8px 20px;
  border: 1.5px solid var(--border-md);
  background: var(--white);
  color: var(--ink-3);
  border-radius: 50px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.proj-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.proj-tab.active {
  background: var(--blue);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(30, 111, 232, 0.30);
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.proj-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-sm);
}

.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.proj-thumb {
  height: 178px;
  position: relative;
  overflow: hidden;
}

.pt1 {
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
}

.pt2 {
  background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
}

.pt3 {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
}

.pt4 {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.pt5 {
  background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
}

.pt6 {
  background: linear-gradient(135deg, #CFFAFE, #A5F3FC);
}

.pt7 {
  background: linear-gradient(135deg, #FFEDD5, #FED7AA);
}

.pt8 {
  background: linear-gradient(135deg, #F3E8FF, #E9D5FF);
}

.pt9 {
  background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
}

.pt10 {
  background: linear-gradient(135deg, #FEF9C3, #FEF08A);
}

.pt11 {
  background: linear-gradient(135deg, #CCFBF1, #99F6E4);
}

.pt12 {
  background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
}

.proj-thumb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border-radius: 16px;
  border: 2.5px solid rgba(0, 0, 0, 0.07);
  transition: transform .3s;
}

.proj-card:hover .proj-thumb::before {
  transform: translate(-50%, -50%) rotate(12deg) scale(1.12);
}

.proj-thumb::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.proj-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 9px 13px;
  display: flex;
  justify-content: flex-end;
}

.proj-cat {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 5px;
}

.proj-info {
  padding: 18px 20px 20px;
}

.proj-info h4 {
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px;
}

.proj-info p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 13px;
}

.proj-meta {
  display: flex;
  gap: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--border);
}

.proj-meta span {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.proj-meta i {
  color: var(--blue);
  font-size: 9px;
}

/* =====================================================
   COMPANY OVERVIEW
   ===================================================== */
.company {
  padding: 96px 48px 88px;
  background: var(--white);
}

.company-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: center;
}

.company-left h2 {
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  margin: 12px 0 16px;
  letter-spacing: -0.3px;
}

.company-left p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.78;
  margin-bottom: 13px;
}

.co-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.cs-box {
  text-align: center;
  padding: 16px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all .25s;
}

.cs-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cs-box strong {
  display: block;
  font-family: var(--font-d);
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
}

.cs-box span {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 500;
}

.co-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  width: 268px;
  margin: 0 auto;
}

.co-block {
  width: 124px;
  height: 124px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: all .28s;
}

.co-block:hover {
  transform: translateY(-5px) rotate(4deg);
}

.cb1 {
  background: linear-gradient(135deg, var(--blue), var(--sky));
}

.cb2 {
  background: linear-gradient(135deg, var(--purple), #A78BFA);
}

.cb3 {
  background: linear-gradient(135deg, #EC4899, #F472B6);
}

.cb4 {
  background: linear-gradient(135deg, var(--green), #84CC16);
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.about {
  padding: 88px 48px;
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 22px;
  text-align: center;
  transition: all .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--r-md) var(--r-md) 0 0;
  opacity: 0;
  transition: opacity .28s;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--blue), var(--sky));
}

.about-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--purple), #A78BFA);
}

.about-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--green), #84CC16);
}

.about-card:nth-child(4)::before {
  background: linear-gradient(90deg, #EC4899, #F472B6);
}

.about-card:nth-child(5)::before {
  background: linear-gradient(90deg, var(--amber), #FCD34D);
}

.about-card:nth-child(6)::before {
  background: linear-gradient(90deg, var(--red), #F97316);
}

.ac-ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #fff;
  margin: 0 auto 14px;
  transition: transform .28s;
}

.about-card:hover .ac-ico {
  transform: scale(1.1);
}

.aci1 {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 4px 13px rgba(30, 111, 232, 0.22);
}

.aci2 {
  background: linear-gradient(135deg, var(--purple), #A78BFA);
  box-shadow: 0 4px 13px rgba(124, 58, 237, 0.22);
}

.aci3 {
  background: linear-gradient(135deg, var(--green), #84CC16);
  box-shadow: 0 4px 13px rgba(16, 185, 129, 0.22);
}

.aci4 {
  background: linear-gradient(135deg, #EC4899, #F472B6);
  box-shadow: 0 4px 13px rgba(236, 72, 153, 0.22);
}

.aci5 {
  background: linear-gradient(135deg, var(--amber), #FCD34D);
  box-shadow: 0 4px 13px rgba(245, 158, 11, 0.22);
}

.aci6 {
  background: linear-gradient(135deg, var(--red), #F97316);
  box-shadow: 0 4px 13px rgba(239, 68, 68, 0.22);
}

.about-card h4 {
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.67;
  margin: 0;
}

/* =====================================================
   PROMO BANNER
   ===================================================== */
.promo {
  padding: 76px 48px;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.promo::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(30, 111, 232, 0.09);
  border-radius: 50%;
  top: -110px;
  right: -70px;
  filter: blur(60px);
}

.promo::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(94, 80, 230, 0.07);
  border-radius: 50%;
  bottom: -70px;
  left: -50px;
  filter: blur(60px);
}

.promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(30, 111, 232, 0.12);
  border: 1px solid rgba(30, 111, 232, 0.20);
  border-radius: 50px;
  color: var(--sky);
  font-size: 10.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.promo-content h2 {
  font-family: var(--font-d);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.promo-hl {
  color: var(--amber);
  font-weight: 800;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 13.5px;
  line-height: 1.72;
  margin-bottom: 20px;
  max-width: 500px;
}

.promo-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-bottom: 26px;
}

.promo-feats span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.promo-feats i {
  color: var(--green);
  font-size: 10px;
}

.promo-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-promo-p {
  padding: 12px 26px;
  background: var(--blue);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 18px rgba(30, 111, 232, 0.38);
  transition: all .25s;
  font-family: var(--font-b);
}

.btn-promo-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(30, 111, 232, 0.5);
  color: #fff;
  background: var(--blue-dk);
}

.btn-promo-o {
  padding: 12px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .25s;
  font-family: var(--font-b);
}

.btn-promo-o:hover {
  border-color: rgba(30, 111, 232, 0.55);
  color: var(--sky);
}

/* Discount disc */
.promo-disc {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: rgba(30, 111, 232, 0.10);
  border: 2px solid rgba(30, 111, 232, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: disc-pulse 3s ease-in-out infinite;
}

@keyframes disc-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(30, 111, 232, 0.10);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 16px rgba(30, 111, 232, 0);
  }
}

.pd-n {
  font-family: var(--font-d);
  color: var(--amber);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.pd-l {
  color: rgba(255, 255, 255, 0.52);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  font-family: var(--font-d);
}

/* =====================================================
   PROCESS
   ===================================================== */
.process {
  padding: 88px 48px;
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.proc-card {
  text-align: center;
  padding: 28px 20px;
  position: relative;
  flex: 1;
  transition: all .28s;
}

.proc-card:hover {
  transform: translateY(-5px);
}

.pc-n {
  font-family: var(--font-d);
  color: rgba(30, 111, 232, 0.08);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 9px;
}

.pc-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(30, 111, 232, 0.26);
  transition: transform .28s;
}

.proc-card:hover .pc-ico {
  transform: scale(1.1);
}

.proc-card h4 {
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.proc-card p {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
  margin: 0;
}

.proc-line {
  width: 48px;
  height: 2px;
  flex-shrink: 0;
  margin-top: -22px;
  background: linear-gradient(90deg, transparent, rgba(30, 111, 232, 0.25), transparent);
  border-radius: 2px;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding: 88px 48px;
  background: linear-gradient(160deg, #EBF2FF 0%, #F6F8FC 50%, #F0EDFF 100%);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 42px;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  margin: 12px 0 11px;
  letter-spacing: -0.2px;
}

.contact-left>p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.74;
  margin-bottom: 26px;
}

.ct-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.ct-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}

.ct-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 111, 232, 0.14);
}

.ct-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.cti1 {
  background: linear-gradient(135deg, var(--blue), var(--sky));
}

.cti2 {
  background: linear-gradient(135deg, var(--green), #84CC16);
}

.cti3 {
  background: linear-gradient(135deg, var(--purple), #A78BFA);
}

.ct-lbl {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 2px;
}

.ct-card a,
.ct-val {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.ct-card a:hover {
  color: var(--blue);
}

.ct-socials {
  display: flex;
  gap: 7px;
}

.ct-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-md);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: all .25s;
}

.ct-socials a:hover {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 16px rgba(30, 111, 232, 0.26);
}

/* Contact form */
.ct-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.ct-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--indigo), var(--purple));
}

.ct-form-card h3 {
  font-family: var(--font-d);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.ct-form-card>p {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 22px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cf-group label {
  color: var(--ink-3);
  font-size: 11.5px;
  font-weight: 600;
}

.ct-form input,
.ct-form textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--surface);
  border: 1.5px solid var(--border-md);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 12.5px;
  outline: none;
  transition: all .25s;
  resize: none;
}

.ct-form input::placeholder,
.ct-form textarea::placeholder {
  color: var(--subtle);
}

.ct-form input:focus,
.ct-form textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30, 111, 232, 0.08);
}

.ct-form button {
  padding: 13px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all .25s;
  margin-top: 3px;
}

.ct-form button:hover {
  background: var(--blue);
  box-shadow: 0 6px 20px rgba(30, 111, 232, 0.28);
  transform: translateY(-2px);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 22px 48px;
  background: var(--dark-bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-inner span {
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}

.footer-inner a:hover {
  color: var(--sky);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
  .topbar {
    display: none;
  }

  .nav {
    top: 0;
    padding: 0 22px;
  }

  .nav-inner {
    height: 58px;
  }

  .nav-links,
  .btn-quote {
    display: none;
  }

  .hero {
    padding: 96px 26px 68px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .stats-bar {
    margin-top: -34px;
    padding: 0 20px;
  }

  .stats-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3) {
    border-right: none;
  }

  .projects,
  .company,
  .about,
  .promo,
  .process,
  .contact {
    padding: 58px 26px;
  }

  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-inner {
    grid-template-columns: 1fr;
  }

  .co-blocks {
    order: -1;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promo-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .promo-feats {
    justify-content: center;
  }

  .promo-btns {
    justify-content: center;
  }

  .promo-disc {
    margin: 0 auto;
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .proc-line {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0 14px;
  }

  .hero {
    padding: 76px 14px 58px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 13px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .stats-bar {
    padding: 0 14px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(4) {
    border-right: none;
  }

  .projects,
  .company,
  .about,
  .promo,
  .process,
  .contact {
    padding: 46px 14px;
  }

  .section-head h2 {
    font-size: 22px;
  }

  .proj-grid {
    grid-template-columns: 1fr;
  }

  .co-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .co-blocks {
    width: 210px;
  }

  .co-block {
    width: 96px;
    height: 96px;
    font-size: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .promo-content h2 {
    font-size: 22px;
  }

  .promo-btns {
    flex-direction: column;
    align-items: center;
  }

  .ct-form-card {
    padding: 24px 18px;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 16px 14px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .btn-hero-p,
  .btn-hero-o {
    width: 100%;
    justify-content: center;
  }
}

/*@media(max-width:600px){*/
/*    .dd-menu {*/
/*    position: absolute;*/
/*    top: calc(100% + 6px);*/
/*    left: 50%;*/
/*    transform: translateX(-50%) translateY(8px);*/
/*    width: 600px;*/
/*    background: var(--white);*/
/*    border: 1px solid var(--border-md);*/
/*    border-radius: var(--r-lg);*/
/*    box-shadow: var(--shadow-lg);*/
/*    opacity: 1;*/
/*    vibility: visible !important;*/
/*    pointer-events: none;*/
/*    transition: all .26s cubic-bezier(.23, 1, .32, 1);*/
/*    overflow: hidden;*/
/*    z-index: 200;*/
/*}*/
}