/* Welwin Infotech – Redesigned 2025 */

:root {
  /* ── Brand palette ── */
  --brand-50:  #fff1f0;
  --brand-100: #ffe0de;
  --brand-400: #f4645f;
  --brand-500: #e8423c;
  --brand-600: #c73530;

  /* ── Neutrals ── */
  --ink-900: #0d1117;
  --ink-800: #161b27;
  --ink-700: #1e2535;
  --ink-600: #2d3650;
  --ink-400: #64748b;
  --ink-300: #94a3b8;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --ink-50:  #f8fafc;

  /* ── Semantic tokens ── */
  --bg:           #ffffff;
  --bg-elevated:  #f8fafc;
  --bg-card:      #ffffff;
  --border:       #e2e8f0;
  --text:         #0d1117;
  --muted:        #64748b;
  --accent:       #e8423c;
  --accent-hover: #c73530;
  --accent-soft:  #fff1f0;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(13,17,23,0.06), 0 1px 2px rgba(13,17,23,0.04);
  --shadow-md: 0 4px 16px rgba(13,17,23,0.08), 0 2px 6px rgba(13,17,23,0.05);
  --shadow-lg: 0 20px 60px rgba(13,17,23,0.10), 0 4px 16px rgba(13,17,23,0.06);

  /* ── Typography ── */
  --font-sans:    "Inter", system-ui, sans-serif;
  --font-display: "Montserrat", "Inter", system-ui, sans-serif;

  /* ── Layout ── */
  --radius:    10px;
  --radius-lg: 16px;
  --container: min(1160px, calc(100% - 2.5rem));
  --header-h:  72px;

  /* ── Nav ── */
  --nav-link:  #0d1117;
  --nav-hover: var(--brand-500);
  --search-input-bg: #f1f5f9;
  --search-red: var(--brand-500);
}

/* ── Scroll animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
[data-animate="slide-left"] { transform: translateX(-32px); }
[data-animate="slide-right"] { transform: translateX(32px); }
[data-animate="scale"] { transform: scale(0.94); }
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

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

a:hover {
  color: var(--accent-hover);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Top bar ── */
.top-bar {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  background: var(--ink-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar a {
  color: rgba(255,255,255,0.8);
}

.top-bar a:hover {
  color: #fff;
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  min-height: 40px;
}

.top-bar__social {
  display: inline-flex;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.top-bar__social li {
  display: flex;
  margin: 0;
  padding: 0;
}

.top-bar__social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.top-bar__social li:last-child .top-bar__social-link {
  border-right: none;
}

.top-bar__social-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
}

.top-bar__social-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.top-bar__contact {
  display: inline-flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.top-bar__contact-item {
  display: flex;
  margin: 0;
  padding: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.top-bar__contact-item:last-child {
  border-right: none;
}

.top-bar__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.top-bar__contact-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
}

.top-bar__contact-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.95;
}

.top-bar__contact-link span {
  white-space: nowrap;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 201;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.site-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

@media (min-width: 901px) {
  .site-header__tools .nav {
    transform: translateX(-14px);
  }
}

/* Header search */
.search-wrap {
  position: relative;
  flex-shrink: 0;
}

.search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.25rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--nav-link);
  cursor: pointer;
  transition: color 0.15s ease;
}

.search-trigger:hover,
.search-trigger:focus-visible {
  color: var(--nav-hover);
  background: transparent;
}

.search-trigger:focus-visible {
  outline: 2px solid rgba(20, 29, 56, 0.35);
  outline-offset: 2px;
}

/* Open state: show X in navy; hover still turns red */
.search-trigger[aria-expanded="true"] {
  color: var(--nav-link);
}

.search-trigger[aria-expanded="true"]:hover,
.search-trigger[aria-expanded="true"]:focus-visible {
  color: var(--nav-hover);
}

.search-trigger__icon {
  display: block;
}

.search-trigger__icon--close {
  display: none;
}

.search-trigger[aria-expanded="true"] .search-trigger__icon--search {
  display: none;
}

.search-trigger[aria-expanded="true"] .search-trigger__icon--close {
  display: block;
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(300px, calc(100vw - 2.5rem));
  z-index: 120;
}

.search-panel__card {
  position: relative;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.search-bar__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  box-sizing: border-box;
  padding: 0 0.75rem;
  border: none;
  border-radius: 0;
  background: var(--search-input-bg);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
}

.search-bar__input::placeholder {
  color: var(--muted);
}

.search-bar__input:focus {
  outline: 2px solid rgba(249,115,22,0.35);
  outline-offset: 0;
  z-index: 1;
}

.search-bar__submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  padding: 0;
  border: none;
  border-radius: 0;
  background: var(--search-red);
  color: #fff;
  line-height: 0;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.search-bar__submit:hover,
.search-bar__submit:focus-visible {
  filter: brightness(0.95);
}

.search-bar__submit-icon {
  display: block;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .search-panel {
    position: fixed;
    top: calc(40px + var(--header-h) + 8px);
    right: 1rem;
    left: auto;
    width: min(300px, calc(100vw - 2rem));
    max-height: calc(100vh - 40px - var(--header-h) - 2rem);
    overflow: auto;
  }
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  display: block;
  height: auto;
  max-height: 64px;
  width: auto;
  max-width: min(240px, 55vw);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 202;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animate to X when open */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list > li > a {
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  color: var(--nav-link);
  transition: color 0.15s ease, background 0.15s ease;
  letter-spacing: 0.01em;
}

.nav__list > li > a:hover,
.nav__list > li > a:focus-visible {
  color: var(--nav-hover);
  background: var(--brand-50);
}

.nav__item--has-sub {
  position: relative;
}

/* Invisible hover bridge so the pointer can cross the gap into the dropdown */
.nav__item--has-sub::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  height: 14px;
  z-index: 101;
}

.nav__link--has-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__chevron {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  opacity: 0.9;
  transition: transform 0.2s ease, color 0.15s ease;
}

.nav__sub {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 260px;
  z-index: 102;
  background: #f4f6f9;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: var(--shadow-md);
}

/* Open via click (JS adds is-expanded) — desktop */
.nav__item--has-sub.is-expanded .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__item--has-sub.is-expanded .nav__chevron {
  transform: rotate(180deg);
  color: var(--nav-hover);
}

.nav__sub a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.nav__sub a:hover,
.nav__sub a:focus-visible {
  color: var(--nav-hover);
  background: rgba(15, 23, 42, 0.05);
}

@media (max-width: 900px) {
  .nav__item--has-sub::before {
    display: none;
  }

  .nav__item--has-sub.is-expanded .nav__chevron {
    transform: rotate(180deg);
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--bg);
    padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__list > li {
    border-bottom: 1px solid var(--border);
  }

  .nav__list > li > a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
  }

  .nav__sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    background: var(--ink-50);
    border-radius: var(--radius);
    padding: 0.25rem 0 0.75rem 1rem;
    margin-bottom: 0.5rem;
    display: none;
    min-width: unset;
  }

  .nav__sub a {
    padding: 0.6rem 0.75rem;
    font-size: 0.9375rem;
  }

  .nav__item--has-sub.is-expanded .nav__sub {
    display: block;
  }

  /* Close button inside mobile nav */
  .nav::before {
    content: "✕";
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 1.25rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    pointer-events: none;
  }
}

/* ── Hero carousel ── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: min(700px, 90vh);
  overflow: hidden;
  background: #0a0d1a;
}

/* Multi-layer atmospheric background */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at -5% 55%, rgba(232,66,60,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 105% 15%, rgba(99,102,241,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 45% 45% at 55% 105%, rgba(232,66,60,0.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Animated dot grid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  animation: hero-grid-drift 20s linear infinite;
}

@keyframes hero-grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 32px 32px; }
}

/* ── Left panel ── */
.hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
}

.hero__left::after { display: none; }

/* ── Slides ── */
.hero__slides {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide { display: none; }
.hero-slide.is-active { display: block; }

/* ── Eyebrow ── */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
  padding: 0.4rem 1rem 0.4rem 0.6rem;
  background: rgba(232,66,60,0.12);
  border: 1px solid rgba(232,66,60,0.35);
  border-radius: 999px;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff8a85;
  animation: hero-eyebrow-in 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes hero-eyebrow-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-500);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--brand-500), 0 0 16px rgba(232,66,60,0.4);
  animation: hero-dot-pulse 2s ease-in-out infinite;
}

@keyframes hero-dot-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--brand-500), 0 0 12px rgba(232,66,60,0.3); }
  50%       { box-shadow: 0 0 12px var(--brand-500), 0 0 24px rgba(232,66,60,0.5); }
}

/* ── Title lines ── */
.hero .hero-slide__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #fff;
}

.hero__title-line { display: block; }

.hero__title-line--accent {
  background: linear-gradient(90deg, var(--brand-500) 0%, #ff8a85 50%, var(--brand-400) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-gradient-shift 4s linear infinite;
}

@keyframes hero-gradient-shift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Lead ── */
.hero__lead {
  margin: 0 0 2rem;
  max-width: 38ch;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

/* ── CTA row ── */
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--brand-500);
  color: #fff;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  box-shadow: 0 8px 28px rgba(232,66,60,0.4);
  transition: box-shadow 0.25s ease, transform 0.2s ease, gap 0.2s ease;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep */
.hero__cta:not(.hero__cta--ghost)::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: hero-cta-shimmer 3s ease-in-out infinite;
}

@keyframes hero-cta-shimmer {
  0%        { left: -100%; }
  40%, 100% { left: 160%; }
}

.hero__cta:hover {
  color: #fff;
  box-shadow: 0 14px 36px rgba(232,66,60,0.55);
  transform: translateY(-2px);
  gap: 0.9rem;
}

.hero__cta--ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.hero__cta--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  box-shadow: none;
  transform: translateY(-2px);
}

/* ── Nav ── */
.hero__carousel-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.hero__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: #fff;
}

.hero__arrow:focus-visible {
  outline: 2px solid rgba(232,66,60,0.5);
  outline-offset: 3px;
}

.hero__arrow-icon { display: block; }

.hero__progress-bars {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}

.hero__progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.hero__progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-500);
  transform: scaleX(0);
  transform-origin: left;
}

.hero__progress-bar.is-active::after {
  transform: scaleX(1);
  transition: transform 4.5s linear;
}

/* ── Right image panel ── */
.hero__bg { display: none; }

.hero__image-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2.5rem 2.5rem 1rem;
}

/* Floating glow blob */
.hero__image-panel::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 65%;
  background: radial-gradient(ellipse, rgba(232,66,60,0.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: hero-glow-pulse 4s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* Decorative ring */
.hero__image-panel::after {
  content: "";
  position: absolute;
  inset: 1.5rem 0.5rem -1rem 0;
  border-radius: 28px;
  border: 1px solid rgba(232,66,60,0.2);
  z-index: 0;
  pointer-events: none;
}

.hero__image-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background-image: var(--hero-bg-image, url("Images/bg2.jpeg"));
  background-size: cover;
  background-position: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 32px 80px rgba(0,0,0,0.5),
    0 8px 24px rgba(0,0,0,0.3);
  transition: background-image 0.5s ease;
  animation: hero-image-float 6s ease-in-out infinite;
}

@keyframes hero-image-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.hero__image-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  z-index: 2;
}

/* Floating stat badge */
.hero__stat-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: rgba(10,13,26,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 4;
  animation: hero-badge-in 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes hero-badge-in {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Word-rise animation ── */
.hero-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-slide:not(.is-active) .hero-word {
  animation: none;
  opacity: 0;
  transform: translate3d(0, 108%, 0);
}

.hero-slide.is-active .hero-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 108%, 0);
  animation: hero-word-rise 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 0.085s);
}

@keyframes hero-word-rise {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__image-panel {
    height: 300px;
    padding: 1.5rem;
    order: -1;
  }

  .hero__image-inner {
    max-height: 100%;
    height: 100%;
    animation: none;
  }

  .hero__stat-badge {
    bottom: 1rem;
    right: 1rem;
  }

  .hero__left {
    padding: 2.5rem 1.5rem 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero__image-panel { height: 220px; }
  .hero .hero-slide__title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero__cta-row { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero__eyebrow,
  .hero__eyebrow::before,
  .hero__title-line--accent,
  .hero__image-panel::before,
  .hero__image-inner,
  .hero__stat-badge {
    animation: none !important;
  }
  .hero-slide:not(.is-active) { display: none; }
  .hero-slide.is-active { display: block; }
  .hero-slide .hero-word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero__progress-bar.is-active::after { transition: none; }
}}

@media (prefers-reduced-motion: reduce) {
  .hero-slide:not(.is-active) { display: none; }
  .hero-slide.is-active { display: block; }
  .hero-slide .hero-word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero__progress-bar.is-active::after { transition: none; }
}

/* Legacy selectors kept for JS compat */
.hero .container.hero__grid { display: contents; }
.hero__grid { display: contents; }
.eyebrow { margin: 0 0 0.75rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.hero-eyebrow-prefix { margin-right: 0.35em; color: rgba(255,255,255,0.55); font-weight: 400; }
.hero__counter { display: none; }
.hero__counter-inner { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

/* Sections */
.section {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.section--tight {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

/* Our Products — split white / navy, Welwin-style cards */
.section--products-welwin {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.25rem) 0 clamp(3.25rem, 6vw, 4.75rem);
  border-block: none;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 46%,
    #0d1117 46% 100%
  );
}

.section--products-welwin::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 54%;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,66,60,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.section--products-welwin .container {
  position: relative;
  z-index: 1;
}

.section__header--products-main {
  margin: 0 auto 2.25rem;
  max-width: none;
  text-align: center;
}

.section__header--products-main h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink-900);
}

.section--products-welwin .card-grid--products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.4rem);
}

.section--products-welwin .product-card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  text-align: left;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  min-height: clamp(14rem, 22vw, 17rem);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.section--products-welwin .product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.section--products-welwin .product-card:hover::before {
  transform: scaleX(1);
}

.section--products-welwin .product-card:hover {
  border-color: rgba(232,66,60,0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.section--products-welwin .product-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.95vw, 1.5625rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink-900);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section--products-welwin .product-card p {
  font-size: clamp(0.95rem, 1.28vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 900px) {
  .section--products-welwin .card-grid--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .section--products-welwin {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 40%,
      #1e1b3d 40% 100%
    );
  }

  .section--products-welwin .card-grid--products {
    grid-template-columns: 1fr;
  }

  .section--products-welwin .product-card {
    min-height: 0;
  }

  .section__header--products-main h2 {
    font-size: clamp(1.75rem, 6.5vw, 2.25rem);
  }

  .section--products-welwin .product-card h3 {
    font-size: clamp(1.15rem, 4.2vw, 1.35rem);
  }

  .section--products-welwin .product-card p {
    font-size: clamp(0.98rem, 3.6vw, 1.05rem);
  }
}

.section__header {
  margin-bottom: 2rem;
  max-width: 640px;
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
  max-width: 560px;
}

/* Services block: Welwin-style left copy + right CTA */
.section__header--split {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.section__header-intro {
  flex: 1 1 280px;
  min-width: min(100%, 17.5rem);
  text-align: left;
}

.section__header--split .section__label--services-slash {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.section__header--split h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink-900);
}

.btn-view-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--brand-500);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-view-more:hover,
.btn-view-more:focus-visible {
  color: #fff;
  background: var(--brand-600);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
  transform: translateY(-1px);
}

.btn-view-more:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.section__label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--brand-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.section__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.link-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pill-row li {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
  background: var(--bg-elevated);
}

.section--industries {
  background: var(--ink-50);
  border-block: 1px solid var(--border);
}

.section--industries .section__label {
  margin-bottom: 1.25rem;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #141d38;
}

.industries-ticker {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(0.75rem, 2.5vw, 1.5rem);
  padding-block: clamp(0.35rem, 1.2vw, 0.85rem);
}

.industries-row {
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem 2.2rem;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.industries-row .industry-item {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(220px, 20vw, 300px);
  min-height: clamp(7.5rem, 12vw, 9.5rem);
  padding: clamp(1rem, 2vw, 1.35rem) 0.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  overflow: visible;
}

.industries-row .industry-item span {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  font-family: "Nunito Sans", var(--font-sans);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.015em;
}

.industries-row .industry-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(88px, 10.5vw, 132px);
  height: clamp(104px, 13vw, 152px);
  opacity: 0.24;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.industry-item--transport span {
  color: #44425c;
}

.industry-item--transport::before {
  background-image: url("Images/transportation.png");
}

.industry-item--chemical span {
  color: #d12a38;
}

.industry-item--chemical::before {
  background-image: url("Images/biochemistry.png");
}

.industry-item--travel span,
.industry-item--textile span {
  color: #e08e31;
}

.industry-item--travel::before {
  background-image: url("Images/traveling.png");
}

.industry-item--medical span {
  color: #3c3751;
}

.industry-item--medical::before {
  background-image: url("Images/pharmacy.png");
}

.industry-item--accounting span {
  color: #d63c48;
}

.industry-item--accounting::before {
  background-image: url("Images/tax.png");
}

.industry-item--textile::before {
  background-image: url("Images/wool.png");
}

@media (max-width: 900px) {
  .industries-row {
    gap: 0.9rem 1.35rem;
  }

  .industries-row .industry-item {
    width: clamp(170px, 40vw, 220px);
    min-height: clamp(6.25rem, 18vw, 7.75rem);
    padding: clamp(0.85rem, 3vw, 1.1rem) 0.25rem;
  }

  .industries-row .industry-item span {
    font-size: clamp(1.2rem, 4.9vw, 1.6rem);
  }

  .industries-row .industry-item::before {
    width: clamp(68px, 16vw, 96px);
    height: clamp(82px, 19vw, 112px);
  }
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

/* Welwin-style 3×2 grid: middle column staggered down */
.card-grid--services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
}

.card-grid--services .service-card:nth-child(2),
.card-grid--services .service-card:nth-child(5) {
  margin-top: clamp(1.5rem, 4.2vw, 2.65rem);
}

@media (max-width: 900px) {
  .card-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--services .service-card:nth-child(n) {
    margin-top: 0;
  }
}

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

  .card-grid--services .service-card:nth-child(n) {
    margin-top: 0;
  }
}

.card-grid--products {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* ── Service cards ── */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: clamp(15rem, 22vw, 18rem);
  padding: clamp(1.75rem, 2.5vw, 2.25rem) clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.07);
  background: #1e1a42;
  background-image: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(232,66,60,0.12) 0%, transparent 70%);
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-500));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  margin: 0 0 1.25rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card__icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.service-card:hover .service-card__icon-img { filter: brightness(0); }

.service-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  transition: color 0.3s ease;
}

.service-card p {
  margin: 0;
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.service-card:hover {
  background: #fff;
  border-color: var(--ink-200);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover .service-card__icon {
  background: var(--brand-50);
  border-color: rgba(249,115,22,0.2);
}

.service-card:hover h3 { color: var(--brand-500); }
.service-card:hover p  { color: var(--ink-600); }

@media (max-width: 560px) {
  .service-card { min-height: 13.5rem; }
}

.service-card:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card__icon,
  .service-card__icon-img,
  .service-card h3,
  .service-card p {
    transition: none;
  }

  .service-card:hover {
    transform: none;
  }
}

.product-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: rgba(249,115,22,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Why choose us */
.section--why-welwin {
  background: var(--ink-50);
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  position: relative;
  overflow: hidden;
}

.section--why-welwin::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,17,23,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.section__header--why-welwin {
  margin: 0 auto 2.75rem;
  max-width: 48rem;
  text-align: center;
}

.section__label--why-welwin {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.section__header--why-welwin h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin: 0;
  padding: 0;
}

/* ── Why cards ── */
.why-card {
  position: relative;
  min-height: 20rem;
  padding: 2rem 1.75rem 6rem;
  background: #1a1640;
  background-image: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  overflow: hidden;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.why-card::before {
  content: attr(data-step);
  position: absolute;
  left: 0.75rem;
  top: 0.25rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.25rem, 7vw, 4.75rem);
  line-height: 1;
  color: rgba(255,255,255,0.05);
  z-index: 0;
  pointer-events: none;
  transition: color 0.35s ease;
}

.why-card__inner {
  position: relative;
  z-index: 1;
  text-align: left;
}

.why-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  transition: color 0.35s ease;
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  transition: color 0.35s ease;
}

.why-card__deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(7rem, 28%, 8.75rem);
  height: clamp(7rem, 28%, 8.75rem);
  background: rgba(255,255,255,0.06);
  border-radius: 100% 0 0 0;
  z-index: 0;
  transition: background 0.35s ease;
}

.why-card__icon {
  position: absolute;
  right: 0.95rem;
  bottom: 0.95rem;
  z-index: 2;
  width: 2.85rem;
  height: 2.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.why-card__icon svg,
.why-card__icon-img {
  width: 100%;
  height: 100%;
}

.why-card__icon-img {
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.why-card:hover,
.why-card:focus-visible {
  background: #fff;
  border-color: var(--ink-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.why-card:hover::before,
.why-card:focus-visible::before {
  color: rgba(13,17,23,0.05);
}

.why-card:hover h3,
.why-card:focus-visible h3 { color: var(--ink-900); }

.why-card:hover p,
.why-card:focus-visible p { color: var(--ink-400); }

.why-card:hover .why-card__deco,
.why-card:focus-visible .why-card__deco { background: var(--brand-500); }

.why-card:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .why-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-card {
    transition: none;
  }

  .why-card:hover,
  .why-card:focus-visible {
    transform: none;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps-grid li {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.steps-grid__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.steps-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  text-transform: capitalize;
}

.steps-grid p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section--stats {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  background: var(--bg-body, #f8f6f3);
  border-block: 1px solid var(--border);
}

.stats--cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: min(1240px, calc(100% - 2rem));
  max-width: none;
  margin-inline: auto;
}

.stat-card {
  position: relative;
  min-height: clamp(11.5rem, 26vw, 16rem);
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(10, 12, 22, 0.72) 0%,
    rgba(10, 12, 22, 0.18) 45%,
    transparent 72%
  );
}

.stat-card__bg {
  position: absolute;
  inset: -2px;
  z-index: 0;
  background-image: var(--stat-card-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.stat-card--countries {
  --stat-card-image: url("Images/countries.png");
}

.stat-card--customers {
  --stat-card-image: url("Images/happy%20customers.png");
}

.stat-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 2.4vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
  text-align: left;
}

.stat-card__value {
  margin: 0 0 0.35rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-card__heading {
  margin: 0 0 0.85rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.stat-card__text {
  margin: 0;
  max-width: 36ch;
  font-family: "Nunito Sans", var(--font-sans);
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 720px) {
  .stats--cards {
    grid-template-columns: 1fr;
  }
}

.section--tech-index {
  position: relative;
  background: var(--ink-900);
  overflow: hidden;
}

.tech-index {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.2rem, 5vw, 3.1rem);
}

.section--tech-index::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Images/tech-welwin-watermark.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  opacity: 0.14;
  pointer-events: none;
}

.tech-index__header {
  text-align: center;
  margin: 0 auto clamp(1.25rem, 2.6vw, 1.9rem);
  max-width: 780px;
}

.tech-index__label {
  margin: 0 0 0.45rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

.tech-index__header h2 {
  margin: 0;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
}

.tech-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.3vw, 1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-card {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 16, 40, 0.2);
  text-align: center;
  transition: background-color 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease, transform 0.22s ease;
}

.tech-card img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.tech-card span {
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff;
}

.tech-card:hover,
.tech-card:focus-within {
  background: var(--brand-500);
  border-color: var(--brand-500);
  box-shadow: 0 10px 24px rgba(249,115,22,0.3);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .tech-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .tech-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Clients / Testimonials ── */
.section--clients {
  position: relative;
  background: #ffffff url("Images/map.png") center center / 85% auto no-repeat;
  border-block: 1px solid var(--border);
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

/* Subtle white overlay so map shows through softly */
.section--clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);
  pointer-events: none;
}

.section--clients .container {
  position: relative;
  z-index: 1;
}

.section__header--clients {
  margin: 0 auto 3rem;
  text-align: center;
}

.section__label--clients {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  background: var(--brand-50);
  border: 1px solid rgba(232,66,60,0.25);
  border-radius: 999px;
  color: var(--brand-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section__header--clients h2 {
  margin: 0;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

/* Carousel wrapper */
.testimonial-wrap {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 0.75rem;
}

/* Arrow buttons */
.testimonial-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--ink-600);
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: #fff;
}

/* Sliding track viewport */
.testimonial-viewport {
  overflow: hidden;
}

/* Card track — slides horizontally */
.testimonial-grid {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each card takes exactly half the viewport (2-up on desktop) */
.quote {
  position: relative;
  flex: 0 0 calc(50% - clamp(0.5rem, 1vw, 0.75rem));
  margin: 0;
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--ink-50);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.quote:hover {
  border-color: rgba(232,66,60,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Large decorative quote mark */
.quote::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(232,66,60,0.08);
  pointer-events: none;
  user-select: none;
}

.quote p:not(.quote__meta) {
  margin: 0 0 1.25rem;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--ink-600);
  font-style: italic;
  line-height: 1.75;
  flex: 1;
}

/* Divider */
.quote__divider {
  width: 2rem;
  height: 2px;
  background: var(--brand-500);
  margin-bottom: 1rem;
  border: none;
}

.quote h3 {
  margin: 0 0 0.2rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-900);
}

.quote__meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.quote[hidden] {
  display: none !important;
}

.quote--clone {
  pointer-events: none;
  user-select: none;
}

/* Dot indicators */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--ink-200);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.testimonial-dot.is-active {
  background: var(--brand-500);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .testimonial-wrap {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 0.4rem;
  }

  /* 1-up on mobile */
  .quote {
    flex: 0 0 100%;
  }
}

@media (max-width: 560px) {
  .testimonial-wrap {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 0.25rem;
  }

  .testimonial-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

/* Footer */
/* ── Footer ── */
.site-footer {
  padding-top: 0.85rem;
  background: var(--ink-900);
  color: rgba(255,255,255,0.8);
  border-top: 3px solid var(--brand-500);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(249,115,22,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(99,102,241,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer__logo-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.35rem;
}

.site-footer__logo {
  width: min(270px, 62vw);
  height: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem 3rem;
  padding-top: 1.55rem;
  padding-bottom: 1.35rem;
  text-align: center;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.site-footer__icon {
  width: 34px;
  height: 34px;
  color: var(--brand-500);
  margin-bottom: 0.65rem;
}

.site-footer__icon--img {
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(45%) sepia(96%) saturate(3630%)
    hue-rotate(336deg) brightness(101%) contrast(102%);
}

.site-footer__address,
.site-footer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(243, 244, 255, 0.95);
}

.site-footer__heading {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(243, 244, 255, 0.75);
}

.site-footer__bottom {
  border-top: none;
  padding: 0.45rem 0 1rem;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.7rem;
  font-size: 0.92rem;
  max-width: 780px;
}

.footer-nav a {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.18s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--brand-500);
}

/* About Us page */
.about-page {
  background: #fff;
}

.about-hero {
  background:
    linear-gradient(135deg, rgba(13,17,23,0.75) 0%, rgba(13,17,23,0.55) 60%, rgba(13,17,23,0.45) 100%),
    url("Images/page bg.png") center/cover no-repeat;
  min-height: 220px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* All inner page heroes use page bg.png */
.about-hero.seo-hero,
.about-hero.ecom-hero,
.about-hero.smm-hero,
.about-hero.qa-hero,
.about-hero.itc-hero,
.about-hero.dt-hero,
.about-hero.sd-hero,
.about-hero.wd-hero,
.about-hero.app-hero {
  background:
    linear-gradient(135deg, rgba(13,17,23,0.75) 0%, rgba(13,17,23,0.55) 60%, rgba(13,17,23,0.45) 100%),
    url("Images/page bg.png") center/cover no-repeat;
}

.about-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}

.about-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-hero p {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.about-hero p a {
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

.about-hero p a:hover { color: #fff; }

.about-hero p .breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  margin: 0 0.5rem;
  vertical-align: middle;
}

.about-hero p span:last-child {
  color: #fff;
  font-weight: 800;
}

.about-overview {
  padding: clamp(3rem, 7vw, 4.8rem) 0;
}

.about-overview__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: start;
}

.about-copy__label {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #666f89;
  letter-spacing: 0.08em;
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(2rem, 4vw, 2.55rem);
  line-height: 1.2;
}

.about-copy__lead {
  font-weight: 700;
  color: #3b445d;
}

.about-copy p {
  margin: 0 0 1rem;
  color: #5d6478;
  line-height: 1.9;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1.8rem;
  align-items: start;
}

.about-card {
  width: 248px;
  min-height: 248px;
  position: relative;
  background-image: url("Images/about-cards-reference.png");
  background-repeat: no-repeat;
  background-size: 607px 629px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-card--mission {
  background-position: -28px -24px;
}

.about-card--vision {
  margin-top: 30px;
  background-position: -304px -56px;
}

.about-card--philosophy {
  background-position: -28px -303px;
}

.about-card--strategy {
  margin-top: 30px;
  background-position: -304px -332px;
}

.about-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 16px solid var(--brand-500);
  border-left: 16px solid transparent;
}

.about-card h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .about-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .about-overview__grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    width: 100%;
    max-width: 248px;
    margin-top: 0 !important;
  }

  .about-cards {
    gap: 1rem;
    justify-items: center;
  }
}

.about-vm {
  background: #fff;
  border-top: 1px solid #f0f1f4;
}

.about-vm__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 2.6rem 0 2.3rem;
}

.about-vm__col h3 {
  margin: 0 0 0.7rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.about-vm__col p {
  margin: 0;
  color: #5b6378;
  line-height: 1.8;
}

.about-vm__col--left {
  text-align: right;
}

.about-vm__col--right {
  text-align: left;
}

.about-vm__logo-wrap {
  width: min(290px, 42vw);
}

.about-vm__logo-wrap img {
  width: 100%;
  height: auto;
}

.about-tech-strip {
  background: #f4f5f7;
  border-top: 1px solid #eceef2;
  border-bottom: 1px solid #eceef2;
}

.about-tech-list {
  margin: 0;
  padding: 1.15rem 0;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
}

.about-tech-list li {
  text-align: center;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  color: #5f687e;
}

.about-what-we-do {
  position: relative;
  padding: clamp(3rem, 6vw, 4.6rem) 0;
  background: #1f1d4b;
}

.about-what-we-do__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
}

.about-what-we-do__media {
  position: relative;
}

.about-what-we-do__shape {
  position: absolute;
  left: -1.3rem;
  top: -1.2rem;
  width: 72%;
  height: 74%;
  background: linear-gradient(90deg, #11baf6, #5f68ff);
  z-index: 0;
}

.about-what-we-do__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: left center;
  border: 10px solid rgba(255, 255, 255, 0.05);
}

.about-what-we-do__content {
  color: #fff;
}

.about-what-we-do__label {
  margin: 0 0 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.about-what-we-do__content h2 {
  margin: 0 0 1rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.about-what-we-do__content h3 {
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
  font-family: "Montserrat", var(--font-sans);
}

.about-what-we-do__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.about-what-we-do__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand-500);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 1100px) {
  .about-tech-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-vm__inner,
  .about-what-we-do__inner {
    grid-template-columns: 1fr;
  }

  .about-vm__col--left,
  .about-vm__col--right {
    text-align: left;
  }

  .about-vm__logo-wrap {
    width: min(250px, 70vw);
    margin-inline: auto;
  }
}

.copyright {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(243, 244, 255, 0.9);
}

.site-footer__social {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  gap: 0.4rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #1f1e47;
}

.site-footer__social svg {
  width: 11px;
  height: 11px;
  display: block;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-nav {
    gap: 0.45rem 1rem;
    font-size: 0.86rem;
  }
}

/* ── Philosophy Modal ── */
.philosophy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.philosophy-modal[hidden] {
  display: none !important;
}

.philosophy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 30, 0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.philosophy-modal__box {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.75rem, 5vw, 3rem);
  box-shadow: 0 32px 80px rgba(10, 14, 30, 0.35);
  animation: modal-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.philosophy-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.07);
  color: #0f172a;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.philosophy-modal__close:hover {
  background: rgba(15, 23, 42, 0.14);
}

.philosophy-modal__box h2 {
  margin: 0 0 1rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  color: #0f172a;
}

.philosophy-modal__quote {
  margin: 0 0 1.25rem;
  font-style: italic;
  color: #374151;
  text-align: center;
  font-size: 1rem;
}

.philosophy-modal__box p {
  margin: 0 0 0.75rem;
  color: #374151;
  font-size: 0.975rem;
  line-height: 1.7;
}

.philosophy-modal__list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.philosophy-modal__list li {
  color: #374151;
  font-size: 0.975rem;
  line-height: 1.65;
}

/* Make the philosophy card look clickable */
.about-card--philosophy {
  cursor: pointer;
}

.about-card--philosophy:hover {
  outline: 2px solid rgba(219, 74, 68, 0.5);
  outline-offset: 2px;
}

.philosophy-modal__list--strategy li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-card--strategy {
  cursor: pointer;
}

.about-card--strategy:hover {
  outline: 2px solid rgba(219, 74, 68, 0.5);
  outline-offset: 2px;
}

a.about-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.about-card:hover {
  outline: 2px solid rgba(219, 74, 68, 0.5);
  outline-offset: 2px;
}

/* ── About Stats Bar ── */
.about-stats {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background: var(--ink-900);
}

/* Radial glow blobs */
.about-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 120% at 0% 50%, rgba(249,115,22,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 120% at 100% 50%, rgba(99,102,241,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(249,115,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid texture */
.about-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.about-stats__item:hover {
  border-color: rgba(249,115,22,0.35);
  background: rgba(249,115,22,0.06);
  transform: translateY(-4px);
}

/* Glow dot top-center */
.about-stats__item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-500), transparent);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.about-stats__item:hover::before {
  opacity: 1;
}

/* Number + plus on same baseline */
.about-stats__value {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.about-stats__number {
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stats__plus {
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  line-height: 1;
  margin-top: 0.2rem;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Thin accent line under number */
.about-stats__rule {
  width: 2rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  margin-bottom: 0.75rem;
}

.about-stats__label {
  margin: 0;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 760px) {
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .about-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .about-stats__item {
    padding: 1.5rem 1rem;
  }
}

/* ── Tech Skills Section ── */
.tech-skills {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.tech-skills__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* ── Left: content ── */
.tech-skills__label {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

.tech-skills__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.tech-skills__lead {
  margin: 0 0 2.25rem;
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}

/* ── Bars ── */
.tech-skills__bars {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.tech-skills__bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tech-skills__bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tech-skills__bar-name {
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
}

.tech-skills__bar-pct {
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
}

.tech-skills__track {
  height: 4px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.tech-skills__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Right: visual ── */
.tech-skills__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-skills__img {
  position: relative;
  z-index: 1;
  width: min(340px, 100%);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(15,23,42,0.12));
}

.tech-skills__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

.tech-skills__blob--tl {
  width: 120px;
  height: 120px;
  top: -10%;
  left: 5%;
  background: rgba(59,130,246,0.25);
}

.tech-skills__blob--br {
  width: 80px;
  height: 80px;
  bottom: 5%;
  right: 8%;
  background: rgba(99,102,241,0.3);
}

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

  .tech-skills__visual {
    order: -1;
  }

  .tech-skills__img {
    width: min(260px, 70%);
  }
}

/* ══════════════════════════════════════
   Contacts Page
══════════════════════════════════════ */

/* ── Main grid: info left, form right ── */
.contacts-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* ── Info column ── */
.contacts-info__label {
  margin: 0 0 0.6rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.contacts-info__title {
  margin: 0 0 1rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.contacts-info__lead {
  margin: 0 0 2rem;
  font-size: 0.975rem;
  line-height: 1.75;
  color: #64748b;
  max-width: 44ch;
}

.contacts-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contacts-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contacts-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brand-50);
  border: 1px solid rgba(249,115,22,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-500);
}

.contacts-detail-label {
  margin: 0 0 0.2rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.contacts-detail-value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #1e293b;
}

.contacts-detail-value a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.15s;
}

.contacts-detail-value a:hover {
  color: var(--brand-500);
}

/* ── Form column ── */
.contacts-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

.contacts-form__title {
  margin: 0 0 0.4rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 800;
  color: #0f172a;
}

.contacts-form__sub {
  margin: 0 0 1.75rem;
  font-size: 0.82rem;
  color: #94a3b8;
}

.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contacts-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contacts-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contacts-form__field label {
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
}

.contacts-form__field label span {
  color: var(--brand-500);
}

.contacts-form__field input,
.contacts-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #0f172a;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.contacts-form__field input::placeholder,
.contacts-form__field textarea::placeholder {
  color: #94a3b8;
}

.contacts-form__field input:focus,
.contacts-form__field textarea:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
  background: #fff;
}

.contacts-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  color: #fff;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(249,115,22,0.3);
  transition: box-shadow 0.2s, transform 0.2s, gap 0.2s;
}

.contacts-form__submit:hover {
  box-shadow: 0 10px 28px rgba(249,115,22,0.45);
  transform: translateY(-2px);
  gap: 0.9rem;
}

/* ── Registered offices ── */
.contacts-offices {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.contacts-offices__title {
  margin: 0 0 2rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  text-align: center;
}

.contacts-offices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contacts-office-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.contacts-office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  border-color: rgba(249,115,22,0.3);
}

.contacts-office-card__flag {
  font-size: 2.25rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.contacts-office-card h3 {
  margin: 0 0 0.65rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.contacts-office-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #64748b;
}

/* ── Map ── */
.contacts-map {
  line-height: 0;
  border-top: 1px solid var(--border);
}

.contacts-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  filter: grayscale(20%);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .contacts-main__grid {
    grid-template-columns: 1fr;
  }

  .contacts-offices__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .contacts-form__row {
    grid-template-columns: 1fr;
  }

  .contacts-offices__grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   IT Services Page
══════════════════════════════════════ */

/* ── Services header ── */
.its-services__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.its-services__label {
  margin: 0 0 0.6rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.its-services__header h2 {
  margin: 0;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #1c1c2e;
}

/* 3-col grid, middle col staggered */
.its-services__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
}

.its-services__grid .service-card:nth-child(2),
.its-services__grid .service-card:nth-child(5),
.its-services__grid .service-card:nth-child(8) {
  margin-top: clamp(1.5rem, 4.2vw, 2.65rem);
}

@media (max-width: 900px) {
  .its-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .its-services__grid .service-card:nth-child(n) {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .its-services__grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA banner ── */
.its-cta {
  background: linear-gradient(110deg, #0d1117 0%, #1e2535 60%, #0d1117 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.its-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(249,115,22,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.its-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.its-cta__label {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.its-cta__title {
  margin: 0;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.its-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  color: #fff;
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
  transition: box-shadow 0.2s, transform 0.2s, gap 0.2s;
  flex-shrink: 0;
}

.its-cta__btn:hover {
  color: #fff;
  box-shadow: 0 10px 28px rgba(249,115,22,0.5);
  transform: translateY(-2px);
  gap: 0.9rem;
}

/* ── Tech stack ── */
.its-tech__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.its-tech__header h2 {
  margin: 0;
  font-family: "Montserrat", var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0f172a;
}

.its-tech__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.its-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15,23,42,0.05);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.its-tech-item:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.1);
}

.its-tech-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.its-tech-item span {
  font-family: "Montserrat", var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
}

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

@media (max-width: 480px) {
  .its-tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════
   Software Development Page
══════════════════════════════════════ */

/* ── Hero override ── */
.sd-hero {
  background:
    linear-gradient(135deg, rgba(13,17,23,0.94) 0%, rgba(13,17,23,0.7) 60%, rgba(249,115,22,0.18) 100%),
    url("../../Images/Software-Development.jpg") center/cover no-repeat;
}

/* ── Shared label / title ── */
.sd-label {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.sd-title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.sd-title span {
  background: linear-gradient(90deg, var(--brand-500), var(--brand-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sd-lead {
  margin: 0 0 2rem;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 52ch;
}

/* ── Intro split ── */
.sd-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.sd-intro__media {
  position: relative;
}

.sd-intro__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* SEO page: show full image, no crop, no card frame */
.seo-intro__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-intro__img {
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  aspect-ratio: unset;
  height: auto;
  background: transparent;
  mix-blend-mode: multiply;
}

/* E-Commerce intro image: fill column, rounded, with shadow */
.ecom-intro__img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center;
  aspect-ratio: unset;
  display: block;
}

/* IT Consultancy plain feature (no card) */
.itc-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.itc-feature h3,
.itc-feature-heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-500);
  line-height: 1.4;
}

.itc-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── QA Accordion ── */
.qa-accordion-section {
  background: var(--ink-50);
  border-block: 1px solid var(--border);
}

.qa-accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.qa-accordion__item {
  border-bottom: 1px solid var(--border);
}

.qa-accordion__item:last-child {
  border-bottom: none;
}

.qa-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.qa-accordion__item--open .qa-accordion__trigger {
  color: var(--brand-500);
}

.qa-accordion__trigger:hover {
  color: var(--brand-500);
}

.qa-accordion__icon {
  flex-shrink: 0;
  color: var(--brand-500);
  transition: transform 0.2s;
}

.qa-accordion__body {
  padding: 0 1.5rem 1.25rem;
}

.qa-accordion__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Social Media Marketing split panel ── */
.smm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: #1a1f3c;
}

.smm-split__left {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.smm-split__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

.smm-split__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.smm-pill {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.smm-pill:hover {
  background: rgba(232,66,60,0.7);
  color: #fff;
  border-color: transparent;
}

.smm-pill--active {
  background: var(--brand-500);
  color: #fff;
  border-color: transparent;
}

.smm-tab-content {
  display: none;
}

.smm-tab-content--active {
  display: block;
}

.smm-split__lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 48ch;
}

.smm-split__list {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: disc;
}

.smm-split__list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.smm-split__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.smm-split__img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@media (max-width: 768px) {
  .smm-split {
    grid-template-columns: 1fr;
  }
  .smm-split__right {
    min-height: 280px;
  }
}

/* ── E-Commerce services grid ── */
.ecom-services-grid {
  background: var(--ink-50);
  border-block: 1px solid var(--border);
}

.ecom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  border: none;
}

.ecom-grid__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ecom-grid__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  z-index: 1;
}

.ecom-grid__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.ecom-grid__icon--purple { background: #7c3aed; }
.ecom-grid__icon--red    { background: var(--brand-500); }
.ecom-grid__icon--navy   { background: #1a1f3c; }
.ecom-grid__icon--brand  { background: var(--brand-500); }

.ecom-grid__body {
  flex: 1;
  min-width: 0;
}

.ecom-grid__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.35;
}

.ecom-grid__body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.ecom-grid__num {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ink-200);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .ecom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── SEO Split Panel (dark left / photo right) ── */
.seo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.seo-split__left {
  background: #1a1f3c;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.seo-split__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-400);
}

.seo-split__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.seo-split__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
}

.seo-split__right {
  overflow: hidden;
  position: relative;
}

.seo-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

  .seo-split__right {
    min-height: 260px;
  }
}

/* ── SEO Capabilities Carousel ── */
.seo-carousel-section {
  overflow: hidden;
  padding-inline: 0;
}

/* hide the watermark number on carousel cards */
.seo-carousel__card::after {
  display: none !important;
}

.seo-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.seo-carousel__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--ink-700);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 2;
}

.seo-carousel__arrow:hover,
.seo-carousel__arrow:focus-visible {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,66,60,0.35);
  transform: scale(1.08);
}

.seo-carousel__arrow:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
}

.seo-carousel {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.seo-carousel__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: seo-scroll 28s linear infinite;
}

.seo-carousel__track:hover {
  animation-play-state: paused;
}

.seo-carousel__card {
  flex: 0 0 280px;
  width: 280px;
}

@keyframes seo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .seo-carousel__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .seo-carousel__card[aria-hidden="true"] {
    display: none;
  }
}

.sd-intro__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--brand-500);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

/* ── Feature list ── */
.sd-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sd-features--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 560px) {
  .sd-features--2col {
    grid-template-columns: 1fr;
  }
}

/* Tighter cards inside 2-col layout */
.sd-features--2col .sd-feature {
  padding: 0.85rem 1rem;
}

.sd-features--2col .sd-feature h3 {
  font-size: 0.875rem;
}

.sd-features--2col .sd-feature p {
  font-size: 0.8rem;
}

.sd-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sd-feature:hover {
  border-color: rgba(249,115,22,0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.sd-feature__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-500);
  flex-shrink: 0;
  line-height: 1.4;
}

.sd-feature h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-900);
}

.sd-feature p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Tech stack grid ── */
.sd-stack {
  background: var(--ink-50);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.sd-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(232,66,60,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.sd-stack .container {
  position: relative;
  z-index: 1;
}

.sd-stack__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.sd-stack-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.sd-stack-item:hover {
  border-color: rgba(232,66,60,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Top accent line */
.sd-stack-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.sd-stack-item:hover::before { opacity: 1; }

/* Large faded number watermark */
.sd-stack-item::after {
  content: attr(data-num);
  position: absolute;
  right: 1rem;
  bottom: -0.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(13,17,23,0.04);
  pointer-events: none;
  user-select: none;
  transition: color 0.3s ease;
}

.sd-stack-item:hover::after {
  color: rgba(232,66,60,0.07);
}

.sd-stack-item__num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-500);
  margin-bottom: 1rem;
  padding: 0.25rem 0.6rem;
  background: var(--brand-50);
  border: 1px solid rgba(232,66,60,0.2);
  border-radius: 999px;
  display: inline-block;
}

.sd-stack-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.sd-stack-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Process section ── */
.sd-process {
  background: #fff;
  border-top: 1px solid var(--border);
}

.sd-process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.sd-process__content {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.sd-process__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.sd-process__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--ink-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.sd-process__step:hover {
  border-color: rgba(232,66,60,0.25);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.sd-process__step-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-50);
  border: 1px solid rgba(232,66,60,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-500);
}

.sd-process__step h4 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-900);
}

.sd-process__step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.sd-process__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Decorative background blob behind image */
.sd-process__visual::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, var(--brand-50) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.sd-process__img {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(13,17,23,0.1));
  border-radius: var(--radius-lg);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .sd-intro__grid,
  .sd-process__grid {
    grid-template-columns: 1fr;
  }

  .sd-intro__media { order: -1; }
  .sd-process__visual { order: -1; }

  .sd-intro__badge {
    bottom: 0.75rem;
    right: 0.75rem;
  }

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

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

/* ── Web Development page hero ── */
.wd-hero {
  background:
    linear-gradient(135deg, rgba(13,17,23,0.94) 0%, rgba(13,17,23,0.7) 60%, rgba(59,130,246,0.15) 100%),
    url("../../Images/app development.png") center/cover no-repeat;
}


@media (max-width: 768px) {
  .top-bar { display: none; }
}
