/* ════════════════════════════════════════
       CSS VARIABLES
    ════════════════════════════════════════ */
    /* Remove blue tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

a, button {
  outline: none;
}
:root {
  --primary: #1351d8;
  --primary2: #4f8dff;
  --primary-light: #f3f6fd;
  --dark: #1c1c1c;
  --dark2: #454545;
  --light: #f9f9f9;
  --gray: #909090;
  --logo1: #1c2867;
  --logo2: #1799d8;
  --logo3: #095683;
  --logo4: #20aec1;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 50px;

  --shadow-sm: 0 2px 12px rgba(19, 81, 216, 0.07);
  --shadow-md: 0 8px 32px rgba(19, 81, 216, 0.12);
  --shadow-lg: 0 16px 48px rgba(19, 81, 216, 0.16);

  --transition: 0.28s ease;

  --section-pad: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px);
}

/* ════════════════════════════════════════
         RESET & BASE
      ════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ════════════════════════════════════════
         SKIP LINK (Accessibility)
      ════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}




/* ════════════════════════════════════════
         SHARED UTILITIES
      ════════════════════════════════════════ */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--logo1), var(--logo3));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--logo1);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-main:hover {
  background: var(--white);
  color: var(--logo1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-main:focus-visible {
  outline: 3px solid var(--primary2);
  outline-offset: 3px;
}



/* ====================== PRELOADER ====================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease-in-out;
}

/* Loader */
.loader {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader:before {
  content: '';
  width: 48px;
  height: 5px;
  background: #80a5f050;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadow324 0.5s linear infinite;
}

.loader:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #8096f0;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jump7456 0.5s linear infinite;
}

@keyframes jump7456 {
  15% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, .9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadow324 {

  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
}


/* ════════════════════════════════════════
         HEADER / NAVIGATION
      ════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1.5px solid var(--gray);
  gap: 24px;
}

.site-logo {
  width: clamp(100px, 12vw, 160px);
  flex-shrink: 0;
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.primary-nav a {
  color: var(--logo1);
  font-weight: 500;
  font-family: "poppins", sans-serif;
  font-size: 15px;
  position: relative;
  transition: color var(--transition);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--logo2);
  transition: width var(--transition);
}

.primary-nav a:hover {
  color: var(--logo2);
}

.primary-nav a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--logo1);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 32px clamp(40px, 5vw, 40px);
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--logo1);

}

@media (max-width: 768px) {

  .primary-nav,
  #site-header .btn-main {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-nav .btn-main {
    color: var(--white);
    font-size: 14px;
    padding: 12px 28px;
  }
}

/* Active nav link */
.primary-nav a.active {
  color: var(--logo2);
}

.primary-nav a.active::after {
  width: 100%;
}

/* Mobile active */
.mobile-nav a.active {
  color: var(--logo2);
}

/* ════════════════════════════════════════
         HERO SECTION
      ════════════════════════════════════════ */
#hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  padding: var(--section-pad);
  border-bottom: 1px solid var(--gray);
}

.hero-left {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--logo1);
  text-transform: uppercase;
}

.hero-left h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--dark2);
  line-height: 1.7;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero-right {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
  position: absolute;
  left: 1vw;
  bottom: 2vh;
}

.hero-badge-logo {
  width: 120px !important;
}

.hero-badge-logo img {
  width: 100%;
  height: 100%;
}

.hero-badge-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
}

.hero-badge-label {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  font-size: 13px;
}

.hero-badge-label span:first-child {
  color: var(--logo3);
  font-weight: 600;
}

.hero-badge-label span:last-child {
  color: var(--dark);
}

.hero-meta {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

/* ══ shared card shell ══ */
.hero-meta-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  border: 1px solid #ebebeb;
  display: flex;
  align-items: center;
}

/* ── LEFT card: avatar stack + label ── */
.hero-meta-card.card-experts {
  flex: 1 1 0;
  gap: 14px;
  padding: 13px 18px;
}

.avatars {
  display: flex;
  flex-shrink: 0;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.meta-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark2);
  white-space: nowrap;
}

.meta-label strong {
  color: var(--dark);
  font-weight: 700;
}

/* ── RIGHT card: Verified by Google  |  stars + reviews ── */
.hero-meta-card.card-rating {
  flex: 1 1 0;
  padding: 0;
  gap: 0;
  overflow: hidden;
}

.rating-google {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 13px 16px;
  border-right: 1px solid #ebebeb;
}

.rating-google span {
  font-size: 11px;
  color: var(--dark2);
  line-height: 1;
  display: block;
}

.google-logo {
  width: 54px;
  height: auto;
  display: block;
}

.rating-stars {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 13px 16px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #ffca28;
  font-size: 14px;
}

.rating-text {
  font-size: 12px;
  color: var(--dark2);
  white-space: nowrap;
  line-height: 1;
}

.rating-text strong {
  color: var(--dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  #hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
  }

}

@media (max-width: 480px) {
  .hero-meta {
    flex-direction: column;
  }

  .hero-badge {
    position: static;
    margin-top: 12px;
  }
}


/* ════════════════════════════════════════
         BRANDS STRIP
      ════════════════════════════════════════ */
#brands {
  padding: 36px clamp(20px, 5vw, 72px);
}

.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.brand-item {
  flex: 1 1 120px;
  max-width: 160px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  width: 100%;
  max-width: 120px;
  height: 36px;
  object-fit: contain;
}

/* ════════════════════════════════════════
         HOW WE DO (DARK SECTION)
      ════════════════════════════════════════ */
#how-we-do {
  padding: 0 clamp(20px, 5vw, 72px) clamp(40px, 6vw, 80px);
}

.hwd-inner {
  max-width: 980px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 52px);
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

/* Arc decoration */
.hwd-arc {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
  opacity: 0.15;
}

.hwd-left {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: clamp(180px, 22vw, 240px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.hwd-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary2);
  margin-bottom: 14px;
  display: block;
}

.hwd-heading {
  font-family: "Syne", sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hwd-desc {
  font-size: 14px;
  color: #b0b8c9;
  line-height: 1.7;
}

.hwd-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-xl);
  margin-top: auto;
  transition: background var(--transition);
}

.hwd-cta:hover {
  background: var(--primary2);
}

/* Flowchart grid */
.hwd-flow {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 148px 44px 148px 44px 148px;
  grid-template-rows: auto 36px auto 36px auto;
  align-items: center;
}

.hwd-hconn {
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.22);
  position: relative;
}

.hwd-hconn .dot-end {
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary2);
}

.hwd-vconn {
  width: 2px;
  height: 100%;
  border-right: 2px dashed rgba(255, 255, 255, 0.22);
  position: relative;
  justify-self: center;
}

.hwd-vconn .dot-end {
  position: absolute;
  bottom: -4px;
  right: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary2);
}

.hwd-node {
  background: var(--white);
  border-radius: 10px;
  padding: 10px 14px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.hwd-node-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hwd-node-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.hwd-node-label {
  display: block;
  font-size: 11px;
  color: var(--primary2);
  font-weight: 600;
  margin-bottom: 2px;
}

.hwd-node-name {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

/* Stack flow on small screens */
@media (max-width: 900px) {
  .hwd-inner {
    flex-direction: column;
  }

  .hwd-left {
    width: 100%;
    min-height: auto;
  }

  .hwd-flow {
    display: none;
  }

  /* Show simplified flow on mobile */
  .hwd-flow-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 901px) {
  .hwd-flow-mobile {
    display: none;
  }
}

.hwd-flow-mobile .hwd-node {
  flex: 1 1 calc(50% - 10px);
}

/* ════════════════════════════════════════
         SERVICES SECTION
      ════════════════════════════════════════ */
#services {
  padding: var(--section-pad);
  max-width: 1180px;
  margin: 0 auto;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.services-header h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}

.services-header p {
  font-size: 14px;
  color: var(--dark2);
  line-height: 1.75;
  padding-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 20px 24px;
  position: relative;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--primary2);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 12px;
  color: var(--dark2);
  line-height: 1.65;
}

.badge-free {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
         CASE STUDIES (TABS)
      ════════════════════════════════════════ */
#case-studies {
  padding: var(--section-pad);
  max-width: 1100px;
  margin: 0 auto;
}

.case-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.tab-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-xl);
  padding: 6px;
  margin: 0 auto clamp(24px, 4vw, 36px);
  width: fit-content;
  max-width: 100%;
}

.tab-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark2);
  background: none;
  border: none;
  border-radius: var(--radius-xl);
  padding: 9px 20px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.tab-btn.active {
  background: var(--dark);
  color: var(--white);
  font-weight: 600;
}

.tab-panel {
  display: none;
  animation: fadeUp 0.32s ease forwards;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.study-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.study-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.study-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid #d3e2fb;
  border-radius: var(--radius-xl);
  padding: 5px 14px;
  display: inline-block;
  margin: 20px 0 0 20px;
  width: fit-content;
}

.study-card-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 170px;
}

.study-card-visual svg,
.study-card-visual>div {
  width: 100%;
  max-width: 210px;
}

/* Info card (3rd col) */
.study-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.study-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.study-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.study-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.study-info-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.study-info-card p {
  font-size: 14px;
  color: var(--dark2);
  line-height: 1.65;
  flex: 1;
}

.info-cta {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.info-cta:hover {
  background: var(--logo1);
  transform: scale(1.1);
}

/* Wireframe */
.wireframe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.wf-block {
  background: #e8edf8;
  border-radius: 4px;
  border: 1px solid #c5d2f0;
}

.wf-block.tall {
  height: 50px;
}

.wf-block.mid {
  height: 34px;
}

.wf-block.short {
  height: 20px;
}

.wf-line {
  height: 6px;
  border-radius: 3px;
  background: #c5d2f0;
  margin-bottom: 5px;
}

.wf-line.dark {
  background: #93aee8;
}

/* Code block */
.code-block {
  background: var(--dark);
  border-radius: 10px;
  padding: 14px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  line-height: 1.7;
  color: #cdd9e5;
}

.c-blue {
  color: #79b8ff;
}

.c-green {
  color: #85e89d;
}

.c-orange {
  color: #ffab70;
}

.c-gray {
  color: #6a737d;
}

/* Browser mockup */
.browser-mock {
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid var(--gray);
  overflow: hidden;
}

.browser-bar {
  background: #f0f0f0;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot.r {
  background: #ff5f57;
}

.browser-dot.y {
  background: #febc2e;
}

.browser-dot.g {
  background: #28c840;
}

.browser-url {
  flex: 1;
  background: var(--white);
  border-radius: 4px;
  height: 12px;
  margin-left: 6px;
}

.browser-body {
  padding: 10px;
}

.b-hero {
  background: linear-gradient(135deg, #e8f0fd, #d5e3fb);
  border-radius: 6px;
  height: 48px;
  margin-bottom: 8px;
}

.b-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.b-card {
  flex: 1;
  background: #f5f7fc;
  border-radius: 5px;
  height: 26px;
}

.b-line {
  height: 6px;
  background: #e0e6f5;
  border-radius: 3px;
  margin-bottom: 5px;
}

/* Cart mockup */
.cart-mock {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--gray);
  padding: 14px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray);
}

.cart-item:last-of-type {
  border-bottom: none;
}

.cart-thumb {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d5e3fb, #a8c0f5);
  flex-shrink: 0;
}

.cart-name {
  font-size: 10px;
  color: var(--dark);
  font-weight: 500;
  flex: 1;
}

.cart-price {
  font-size: 10px;
  color: var(--primary);
  font-weight: 700;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
}

.cart-total span:last-child {
  color: var(--primary);
  font-weight: 700;
}

/* ERP mock */
.erp-mock {
  width: 100%;
}

.erp-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.erp-stat {
  flex: 1;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray);
  padding: 10px;
}

.erp-stat-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.erp-stat-label {
  font-size: 9px;
  color: var(--dark2);
}

.erp-chart {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray);
  padding: 10px;
}

.bar-row {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
}

.bar {
  border-radius: 3px 3px 0 0;
  flex: 1;
}

/* IT mock */
.it-mock {
  width: 100%;
  text-align: center;
}

.cloud-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.it-nodes {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.it-node {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: var(--white);
  border: 1.5px solid var(--gray);
}

.it-connector {
  width: 2px;
  height: 22px;
  background: linear-gradient(to bottom, var(--primary2), var(--gray));
  margin: 0 auto 10px;
}

@media (max-width: 768px) {
  .tab-panel.active {
    grid-template-columns: 1fr;
  }

  .tab-nav {
    gap: 2px;
    padding: 7px 31px;
  }

  .tab-btn {
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* ════════════════════════════════════════
         CONSULTING SECTION
      ════════════════════════════════════════ */
#consulting {
  padding: var(--section-pad);
}

.consulting-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.consulting-left h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
}

.consulting-left p {
  font-size: 14px;
  color: var(--dark2);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.feature-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
}

/* Timeline */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 2px dashed var(--gray);
  z-index: 0;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  min-height: 110px;
  position: relative;
  z-index: 1;
}

.timeline-num {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 0;
  z-index: 2;
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.timeline-card h5 {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.timeline-card p {
  font-size: 12px;
  color: var(--dark2);
  line-height: 1.6;
}

.timeline-card-right {
  grid-column: 3;
  margin-left: 14px;
}

.timeline-card-left {
  grid-column: 1;
  margin-right: 14px;
}

@media (max-width: 768px) {
  .consulting-inner {
    grid-template-columns: 1fr;
  }

  .consulting-left p {
    max-width: 100%;
  }

  .timeline::before {
    display: none;
  }

  .timeline-row {
    grid-template-columns: 32px 1fr;
    gap: 12px;
    min-height: auto;
    margin-bottom: 16px;
  }

  .timeline-num {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-card-right,
  .timeline-card-left {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
}

/* ════════════════════════════════════════
         TESTIMONIAL SECTION
      ════════════════════════════════════════ */
#testimonials {
  padding: 0 clamp(20px, 5vw, 72px) clamp(40px, 6vw, 80px);
}

.testimonial-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 52px) clamp(28px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 30px rgba(255, 255, 255, 0.04),
    0 0 0 60px rgba(255, 255, 255, 0.03),
    0 0 0 90px rgba(255, 255, 255, 0.025),
    0 0 0 120px rgba(255, 255, 255, 0.015);
  pointer-events: none;
}

.linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  transition: background var(--transition);
}

.linkedin-badge:hover {
  background: var(--primary2);
}

.linkedin-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}

.testimonial-quote {
  font-family: "Syne", sans-serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 18px;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.testimonial-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: var(--dark2);
  flex-shrink: 0;
}

.avatar-initials {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary2), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.author-name {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.author-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ════════════════════════════════════════
         PROJECTS SECTION
      ════════════════════════════════════════ */
#projects {
  padding: var(--section-pad);
}

.projects-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(40px, 6vw, 72px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.projects-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.projects-info h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.projects-info>p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark2);
}

.projects-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.projects-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.projects-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary2);
  flex-shrink: 0;
}

/* Slider */
.slider-wrap {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.slider-track:active {
  cursor: grabbing;
}

.project-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-card-img {
  position: relative;
  height: 170px;
  background: linear-gradient(135deg, #e8f0fd 0%, #d5e3fb 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.project-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(19, 81, 216, 0.1) 0%, rgba(19, 81, 216, 0.5) 100%);
}

.wip-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  line-height: 1;
  color: var(--white);
}

.wip-top {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wip-bottom {
  font-family: "Syne", sans-serif;
  font-size: 22px;
  margin-top: -2px;
}

.project-card-body {
  padding: 14px 16px 18px;
}

.project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-xl);
  padding: 3px 10px;
  margin-bottom: 7px;
}

.project-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.project-card-body p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--dark2);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
}

.arrow-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.arrow-btn:disabled {
  border-color: var(--gray);
  color: var(--gray);
  pointer-events: none;
}

@media (max-width: 860px) {
  .projects-inner {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }
}

@media (max-width: 520px) {
  .project-card {
    flex: 0 0 82%;
  }
}

/* ════════════════════════════════════════
         TEAM / AUTHORITIES SECTION
      ════════════════════════════════════════ */
#team {
  padding: var(--section-pad);
  display: flex;
  justify-content: center;
}

.team-slider-container {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
}

.team-rail {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.team-panel {
  min-width: 100%;
  background: #eef2f8;
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
}

.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

.team-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 8px;
  display: block;
}

.team-panel[data-pos="1"] .team-eyebrow {
  color: #f97316;
}

.team-name {
  font-family: "Syne", sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.team-tagline {
  font-size: 13px;
  color: #64748b;
  line-height: 1.75;
  padding-top: 6px;
}

.team-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.team-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  background: #d1dce8;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.photo-note {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  pointer-events: none;
}

.team-info {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.traffic-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.td {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.td--red {
  background: #ef4444;
}

.td--yellow {
  background: #f59e0b;
}

.td--green {
  background: #22c55e;
}

.chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.chip {
  background: #f1f5f9;
  border-radius: 9px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: #1e293b;
}

.chip svg {
  flex-shrink: 0;
  opacity: 0.5;
}

.chip--blue {
  color: #2563eb;
  background: #eff6ff;
  font-weight: 600;
}

.chip--blue svg {
  opacity: 1;
}

.chip--orange {
  color: #f97316;
  background: #fff7ed;
  font-weight: 600;
}

.chip--orange svg {
  opacity: 1;
}

.team-bio {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 14px;
  flex: 1;
}

.team-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-group {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  color: #64748b;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.team-panel[data-pos="0"] .social-btn:hover {
  background: #2563eb;
  color: var(--white);
}

.team-panel[data-pos="1"] .social-btn:hover {
  background: #f97316;
  color: var(--white);
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform var(--transition);
}

.nav-btn:hover {
  transform: scale(1.1);
}

.team-panel[data-pos="0"] .nav-btn {
  background: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.team-panel[data-pos="1"] .nav-btn {
  background: #f97316;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.pager {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 16px;
}

.pager-pip {
  height: 7px;
  width: 7px;
  border-radius: 99px;
  background: #cbd5e1;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.pager-pip.active {
  width: 24px;
  background: #2563eb;
}

@media (max-width: 600px) {

  .team-header,
  .team-body {
    grid-template-columns: 1fr;
  }

  .team-photo {
    min-height: 200px;
  }

  .chips-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
         CONTACT SECTION
      ════════════════════════════════════════ */
#contact {
  padding: var(--section-pad);
}

.contact-inner {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2.5vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
}

/* Shared col styles */
.col-form,
.col-stats,
.col-info {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 30px);
  box-shadow: var(--shadow-sm);
}

/* Form */
.col-form {
  flex: 1.15;
  min-width: 0;
}

.form-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.form-heading {
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--gray);
  margin: 0 0 18px;
}

.field-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.field-row .field-group {
  flex: 1;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.field-group:last-child {
  margin-bottom: 0;
}

.field-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  background: var(--primary-light);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: #aaa;
}

.field-input:focus,
.field-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19, 81, 216, 0.1);
  background: var(--white);
}

.field-textarea {
  resize: none;
  height: 108px;
  overflow-y: auto;
}

.terms-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 18px;
}

.terms-row input {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.terms-row label {
  font-size: 12px;
  color: var(--dark2);
}

.submit-btn {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.submit-btn:hover {
  background: var(--primary2);
  transform: translateY(-1px);
}

/* Stats col */
.col-stats {
  flex: 0.78;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray);
}

.stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-item:first-child {
  padding-top: 0;
}

.stat-number {
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.stat-suffix {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.stat-label {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin-top: 3px;
}

/* Info col */
.col-info {
  flex: 0.82;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.info-block {
  padding: 18px 0;
  border-bottom: 1px solid var(--gray);
}

.info-block:first-child {
  padding-top: 0;
}

.info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-block-title {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}

.info-link {
  display: block;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.info-link:hover {
  color: var(--primary2);
  text-decoration: underline;
}

.info-address {
  font-size: 14px;
  color: var(--primary);
  line-height: 1.6;
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition), transform var(--transition);
}

.social-link:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-inner {
    flex-direction: column;
  }

  .field-row {
    flex-direction: column;
  }
}

/* ════════════════════════════════════════
         FOOTER
      ════════════════════════════════════════ */
#site-footer {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: 300px;
  opacity: 0.1;
  pointer-events: none;
}

/* CTA Band */
.footer-cta {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.cta-divider {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  justify-self: center;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: clamp(32px, 5vw, 64px);
}

.footer-logo-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo-wrap img {
  width: 130px;
  height: 40px;
  object-fit: contain;
}

.cta-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 300px;
}

.email-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.email-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  width: clamp(160px, 18vw, 210px);
  outline: none;
  transition: border-color var(--transition);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.email-input:focus {
  border-color: var(--primary2);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform 0.15s;
}

.btn-primary:hover {
  background: var(--primary2);
  transform: translateY(-1px);
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.6;
  transition: opacity var(--transition);
  cursor: pointer;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo span {
  font-size: 13px;
  font-weight: 600;
}

.yt-text {
  color: var(--white);
}

.upwork-text {
  color: #6fda44;
}

.shopify-text {
  color: #96bf48;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: clamp(32px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-family: "Syne", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 340px;
}

.cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 320px;
  margin-top: -10px;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary2);
  color: var(--primary2);
  border-radius: 6px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.footer-stats {
  display: flex;
  gap: clamp(24px, 4vw, 44px);
}

.footer-stat-val {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}

.footer-stat-unit {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.5;
  margin-left: 2px;
}

.footer-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

/* Nav links */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 0.2fr 1.3fr;
  gap: 20px;
  padding: clamp(36px, 5vw, 52px) clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

.nav-col-title {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-col a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color var(--transition);
}

.nav-col a:hover {
  color: var(--primary2);
}

.address-entry {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addr-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3px;
}

.addr-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 72px) 24px;
  position: relative;
  z-index: 1;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer-social-btn:hover {
  border-color: var(--primary2);
  background: rgba(79, 141, 255, 0.1);
  color: var(--primary2);
  transform: translateY(-2px);
}

.footer-social-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1024px) {
  .footer-cta {
    padding: 40px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
  }

  .nav-col.address-col {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 18px 40px 24px;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 36px;
  }

  .cta-divider {
    display: none;
  }

  .cta-left,
  .cta-right {
    padding: 0;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    padding: 16px 24px 20px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
}





/* ════════════════════════════════════════
        scroller imge css
      ════════════════════════════════════════ */
.scroll-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0;
  background: var(--color-background-primary);
  border-top: 0.5px solid var(--color-border-tertiary);
  border-bottom: 0.5px solid var(--color-border-tertiary);
}

.scroll-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.scroll-track:hover {
  animation-play-state: paused;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 70px;
}

.icon-item span {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--color-border-tertiary);
  background: var(--color-background-secondary);
  transition: transform 0.2s;
  overflow: hidden;
}

.icon-box:hover {
  transform: translateY(-3px);
}

.icon-box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* ════════════════════════════════════════
        scroller imge css
      ════════════════════════════════════════ */
.study-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.study-icon img {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  object-fit: contain;
  display: block;
}


/* Contact Us Button Css */

/* =========================
    FLOATING CONTACT BUTTON
========================= */

/* SIDE CONTACT */
.side-contact {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
}

/* SMALL CONTACT TAB */
.contact-tab {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: #ff1e1e;
  color: #fff;
  border: none;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 0 10px 10px 0;
  box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.contact-tab i {
  font-size: 16px;
  background: #000;
  padding: 5px;
  border-radius: 6px;
}

.contact-tab:hover {
  background: #e60000;
}

/* MENU */
.contact-menu {
  position: absolute;
  right: 65px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: 0.3s ease;
}

.contact-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* SMALL ICON BUTTONS */
.menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.menu-btn:hover {
  transform: scale(1.08);
}

.whatsapp {
  background: #25D366;
}

.call {
  background: #2563eb;
}

.email {
  background: #ef4444;
}

@media (max-width: 768px) {

  .contact-tab {
    transform: none;
    padding: 8px 4px;
    font-size: 9px;
    font-weight: 600;
      border-radius: 10px 0 0 10px;
    letter-spacing: 1px;
  }
}