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

:root {
  --orange: #FF6B00;
  --orange-light: #FF8C3A;
  --orange-dark: #E55A00;
  --orange-glow: rgba(255, 107, 0, 0.3);
  --black: #FFFFFF;
  --dark: #F4F4F7;
  --dark-card: #FFFFFF;
  --dark-card-hover: #F8F8FC;
  --gray-900: #EEEEF3;
  --gray-800: #DDDDE5;
  --gray-700: #C0C0CC;
  --gray-600: #8888A0;
  --gray-500: #6E6E88;
  --gray-400: #555570;
  --gray-300: #444460;
  --gray-200: #333350;
  --gray-100: #222240;
  --white: #111118;
  --white-pure: #FFFFFF;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
  --border: 1px solid rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--dark);
}

html::-webkit-scrollbar {
  width: 6px;
}

html::-webkit-scrollbar-track {
  background: var(--dark);
}

html::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-300);
  background: var(--black);
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.3s, height 0.3s, margin 0.3s;
}

.cursor.hover {
  width: 40px;
  height: 40px;
  margin: -16px 0 0 -16px;
  background: rgba(255, 107, 0, 0.3);
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 107, 0, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.4s, height 0.4s, margin 0.4s, opacity 0.4s;
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  margin: -12px 0 0 -12px;
  border-color: var(--orange);
  opacity: 0.5;
}

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
}

/* ===========================
   LOADER
   =========================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader__logo {
  animation: pulse 1.5s ease-in-out infinite;
}

.loader__logo svg {
  width: 60px;
  height: 60px;
}

.loader__bar {
  width: 200px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 3px;
  overflow: hidden;
}

.loader__progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  transition: width 0.1s linear;
}

.loader__text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* ===========================
   UTILITIES
   =========================== */
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--orange);
  color: var(--white-pure);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: var(--white-pure);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--orange-glow);
}

.btn--primary:hover svg {
  transform: translateX(4px);
}

.btn--glow {
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.15);
}

.btn--glass {
  background: rgba(0, 0, 0, 0.06);
  color: var(--gray-200);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.btn--glass:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn--xl {
  padding: 22px 44px;
  font-size: 17px;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo__img {
  height: 36px;
  width: auto;
}

.footer .logo__img {
  height: 32px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link--mobile-cta { display: none; }

.nav__actions {
  display: none;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__phone {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition);
}

.header__phone:hover {
  color: var(--orange);
}

.header__cta {
  padding: 10px 24px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===========================
   MEGA MENU (Dark Theme)
   =========================== */
.nav__dropdown {
  position: relative;
}

.nav__link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  padding: 4px 0;
  transition: color var(--transition);
}

.nav__link--has-dropdown:hover,
.nav__dropdown.open .nav__link--has-dropdown {
  color: var(--white);
}

.nav__chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav__dropdown.open .nav__chevron {
  transform: rotate(180deg);
}

/* Full-width mega panel */
.mega {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--dark-card);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nav__dropdown.open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 0;
}

.mega__section {
  padding-right: 36px;
}

.mega__section--specializations {
  padding-left: 36px;
  padding-right: 36px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.mega__section--solutions {
  padding-left: 36px;
  padding-right: 0;
}

.mega__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Service items grid */
.mega__grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mega__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
  color: inherit;
}

.mega__item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.mega__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega__item:hover .mega__icon {
  background: var(--orange);
  color: var(--white-pure);
}

.mega__item-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2px;
}

.mega__item-desc {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.4;
}

/* Specialization list */
.mega__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  transition: all 0.2s ease;
}

.mega__list-item:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--white);
}

.mega__list-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray-700);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.mega__list-item:hover .mega__list-dot {
  background: var(--orange);
}

/* Solution cards */
.mega__solutions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega__solution-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  color: inherit;
}

.mega__solution-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.05);
}

.mega__solution-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega__solution-card:hover .mega__solution-icon {
  background: var(--orange);
  color: var(--white-pure);
}

.mega__solution-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.mega__solution-desc {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.4;
  margin-top: 1px;
}

.mega__solution-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--gray-700);
  transition: all 0.2s ease;
}

.mega__solution-card:hover .mega__solution-arrow {
  color: var(--orange);
  transform: translate(2px, -2px);
}

/* CTA inside mega */
.mega__cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mega__cta p {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* Backdrop overlay */
.mega-overlay {
  position: fixed;
  inset: 0;
  top: 80px;
  background: rgba(0, 0, 0, 0.06);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}

.mega-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===========================
   MINI DROPDOWN (Hire a Developer)
   =========================== */
.dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  z-index: 999;
  width: 260px;
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

.nav__dropdown--mini.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown__inner {
  padding: 8px;
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: all 0.2s ease;
}

.dropdown__item:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--white);
}

.dropdown__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gray-700);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.dropdown__item:hover .dropdown__dot {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.10);
}

.dropdown__title {
  font-size: 14px;
}

.dropdown__footer {
  padding: 8px 8px 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 4px;
  text-align: center;
}

.dropdown__footer .btn {
  width: 100%;
  justify-content: center;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__gradient--1 {
  position: absolute;
  width: 800px;
  height: 800px;
  top: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__gradient--2 {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.10);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--orange-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero__title .word {
  display: inline-block;
  overflow: hidden;
}

.hero__title .word-inner {
  display: inline-block;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__clients {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__avatars {
  display: flex;
}

.hero__avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--black);
  object-fit: cover;
  margin-left: -12px;
}

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

.hero__clients-text {
  display: flex;
  flex-direction: column;
}

.hero__stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero__clients-text span {
  font-size: 13px;
  color: var(--gray-500);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

.hero__scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-600);
  font-weight: 500;
}

/* ===========================
   SECTIONS (Shared)
   =========================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section__header {
  margin-bottom: 64px;
}

.section__header--center {
  text-align: center;
}

.section__label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__label--light {
  color: var(--orange-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
}

.section__subtitle {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ===========================
   STATS MARQUEE
   =========================== */
.stats-marquee {
  padding: 40px 0;
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
}

.stats-marquee__track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.stats-marquee__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.stats-marquee__number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-marquee__plus {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--orange);
  margin-right: 4px;
}

.stats-marquee__label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-marquee__divider {
  width: 4px;
  height: 4px;
  background: var(--gray-700);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ===========================
   ABOUT
   =========================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 40px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about__feature:hover {
  background: var(--dark-card-hover);
  border-color: rgba(255, 107, 0, 0.10);
  transform: translateX(6px);
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.about__feature strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about__feature span {
  font-size: 13px;
  color: var(--gray-500);
}

.about__visual {
  position: relative;
}

.about__image-stack {
  position: relative;
}

.about__img--main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border);
}

.about__img--main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about__img--secondary {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about__img--secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about__experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px var(--orange-glow);
  animation: floatBadge 6s ease-in-out infinite;
}

.about__exp-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white-pure);
  line-height: 1;
}

.about__exp-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.3;
  margin-top: 2px;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services__card {
  position: relative;
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.services__card:hover {
  background: var(--dark-card-hover);
  border-color: rgba(255, 107, 0, 0.10);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.services__card:hover::before {
  opacity: 1;
}

.services__card-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  letter-spacing: -0.03em;
}

.services__card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 28px;
  transition: all var(--transition);
}

.services__card:hover .services__card-icon {
  background: rgba(255, 107, 0, 0.10);
  transform: scale(1.05);
}

.services__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.services__card > p {
  color: var(--gray-400);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.services__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.services__card-tags span {
  padding: 5px 14px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  transition: all var(--transition);
}

.services__card:hover .services__card-tags span {
  background: rgba(255, 107, 0, 0.05);
  border-color: rgba(255, 107, 0, 0.10);
  color: var(--orange-light);
}

.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  transition: all var(--transition);
}

.services__card-link:hover {
  color: var(--orange);
}

.services__card-link svg {
  transition: transform var(--transition);
}

.services__card-link:hover svg {
  transform: translateX(4px);
}

.services__card--cta {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
  border-color: rgba(255, 107, 0, 0.10);
  display: flex;
  align-items: center;
}

.services__card--cta::before {
  display: none;
}

.services__card--cta:hover {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.10), rgba(255, 107, 0, 0.04));
}

.services__card-cta-inner {
  text-align: center;
}

.services__card-cta-inner h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.services__card-cta-inner p {
  color: var(--gray-400);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.portfolio__card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  min-height: 320px;
}

.portfolio__card--lg {
  min-height: 400px;
}

.portfolio__card-img {
  position: absolute;
  inset: 0;
}

.portfolio__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio__card:hover .portfolio__card-img img {
  transform: scale(1.08);
}

.portfolio__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  transition: background var(--transition);
}

.portfolio__card:hover .portfolio__card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.portfolio__card-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 107, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-light);
  margin-bottom: 12px;
}

.portfolio__card-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white-pure);
  margin-bottom: 8px;
}

.portfolio__card-info p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.portfolio__card:hover .portfolio__card-info p {
  opacity: 1;
  transform: translateY(0);
}

.portfolio__card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.portfolio__card:hover .portfolio__card-link {
  opacity: 1;
  transform: translateY(0);
}

.portfolio__card-link:hover {
  color: var(--orange-light);
}

/* ===========================
   TECH MARQUEE
   =========================== */
.tech-marquee {
  padding: 36px 0;
  background: var(--dark);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
}

.tech-marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.tech-marquee__track span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-700);
  flex-shrink: 0;
  transition: color var(--transition);
}

.tech-marquee__track span:hover {
  color: var(--orange);
}

.tech-marquee__dot {
  width: 6px !important;
  height: 6px;
  background: var(--gray-700);
  border-radius: 50%;
  display: inline-block;
  font-size: 0 !important;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  background: var(--dark);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonials__card {
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonials__card:hover {
  border-color: rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.testimonials__card--featured {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
  border-color: rgba(255, 107, 0, 0.10);
  transform: scale(1.02);
}

.testimonials__card--featured:hover {
  transform: scale(1.02) translateY(-4px);
  border-color: rgba(255, 107, 0, 0.15);
}

.testimonials__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonials__stars {
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 3px;
}

.testimonials__quote {
  color: var(--gray-700);
}

.testimonials__card > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-300);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 107, 0, 0.3);
}

.testimonials__author strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.testimonials__author span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__gradient--1 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta__gradient--2 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta__subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta__contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--gray-500);
}

.cta__contact-info a {
  color: var(--gray-400);
  transition: color var(--transition);
}

.cta__contact-info a:hover {
  color: var(--orange);
}

.cta__divider-dot {
  width: 4px;
  height: 4px;
  background: var(--gray-700);
  border-radius: 50%;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  border-top: var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: var(--border);
}

.footer__brand p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer__socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--transition);
}

.footer__socials a:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.15);
  color: var(--orange);
  transform: translateY(-3px);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer__col a {
  display: block;
  color: var(--gray-500);
  font-size: 14px;
  padding: 5px 0;
  transition: all var(--transition);
}

.footer__col a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__bottom p {
  color: var(--gray-600);
  font-size: 13px;
}

.footer__bottom-links {
  display: flex;
  gap: 28px;
}

.footer__bottom-links a {
  color: var(--gray-600);
  font-size: 13px;
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--orange);
}

/* ===========================
   ACTIVE NAV LINK
   =========================== */
.nav__link--active {
  color: var(--orange) !important;
}

/* ===========================
   PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero__gradient--1 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__gradient--2 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  color: var(--orange);
}

.breadcrumb svg {
  color: var(--gray-700);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.page-hero__subtitle {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===========================
   OUR STORY (Timeline)
   =========================== */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story__text {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story__text:last-child {
  margin-bottom: 0;
}

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline__line {
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--gray-800));
  transform-origin: top;
}

.timeline__item {
  position: relative;
  padding-bottom: 32px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -36px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dark);
  border: 3px solid var(--orange);
  z-index: 2;
  transition: all var(--transition);
}

.timeline__item:hover .timeline__dot {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.10);
}

.timeline__card {
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.timeline__card:hover {
  background: var(--dark-card-hover);
  border-color: rgba(255, 107, 0, 0.10);
  transform: translateX(6px);
}

.timeline__year {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.timeline__card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline__card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===========================
   VISION & MISSION
   =========================== */
.vm__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm__card {
  position: relative;
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  overflow: hidden;
  transition: all var(--transition);
}

.vm__card:hover {
  border-color: rgba(255, 107, 0, 0.10);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.vm__card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.vm__card:hover .vm__card-accent {
  opacity: 1;
}

.vm__icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 28px;
}

.vm__card-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.vm__card-text {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ===========================
   ABOUT STATS
   =========================== */
.about-stats {
  padding: 80px 0;
  background: var(--dark);
  border-top: var(--border);
  border-bottom: var(--border);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.about-stats__item:hover {
  border-color: rgba(255, 107, 0, 0.10);
  transform: translateY(-4px);
}

.about-stats__number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-stats__plus {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
}

.about-stats__label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===========================
   CORE VALUES
   =========================== */
.values {
  background: var(--black);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.values__card {
  position: relative;
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  transition: all var(--transition);
}

.values__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.values__card:hover {
  background: var(--dark-card-hover);
  border-color: rgba(255, 107, 0, 0.10);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.values__card:hover::before {
  opacity: 1;
}

.values__card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.values__card:hover .values__card-icon {
  background: rgba(255, 107, 0, 0.10);
  transform: scale(1.05);
}

.values__card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.values__card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===========================
   INDUSTRIES
   =========================== */
.industries {
  background: var(--dark);
}

.industries__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.industries__text {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-top: 20px;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.industries__card {
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.industries__card:hover {
  background: var(--dark-card-hover);
  border-color: rgba(255, 107, 0, 0.10);
  transform: translateY(-4px);
}

.industries__card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
  transition: all var(--transition);
}

.industries__card:hover .industries__card-icon {
  background: rgba(255, 107, 0, 0.10);
}

.industries__card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.industries__card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===========================
   GLOBAL PRESENCE
   =========================== */
.presence__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.presence__region {
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition);
}

.presence__region:hover {
  border-color: rgba(255, 107, 0, 0.10);
}

.presence__region-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: var(--border);
  width: 100%;
}

.presence__region-badge svg {
  color: var(--orange);
}

.presence__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.presence__city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  transition: all var(--transition);
}

.presence__city:hover {
  background: rgba(255, 107, 0, 0.05);
  border-color: rgba(255, 107, 0, 0.15);
  color: var(--orange-light);
}

.presence__city--hq {
  background: rgba(255, 107, 0, 0.05);
  border-color: rgba(255, 107, 0, 0.15);
  color: var(--orange-light);
}

.presence__hq-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  background: var(--orange);
  color: var(--white-pure);
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.08em;
}

/* ===========================
   FAQ
   =========================== */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq__text {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.8;
  margin: 20px 0 32px;
}

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

.faq__item {
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.faq__item:hover {
  border-color: rgba(0, 0, 0, 0.08);
}

.faq__item.open {
  border-color: rgba(255, 107, 0, 0.15);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--orange-light);
}

.faq__icon {
  color: var(--gray-500);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq__item.open .faq__icon {
  color: var(--orange);
  transform: rotate(45deg);
}

.faq__answer {
  height: 0;
  overflow: hidden;
}

.faq__answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ===========================
   OUR WORK PAGE
   =========================== */
.work__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.work__filters {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  background: var(--dark-card);
  border: var(--border);
  border-radius: 60px;
  padding: 5px;
}

.work__filter-indicator {
  position: absolute;
  height: calc(100% - 10px);
  top: 5px;
  left: 5px;
  background: var(--orange);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  pointer-events: none;
}

.work__filter {
  position: relative;
  z-index: 1;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.work__filter:hover {
  color: var(--gray-200);
}

.work__filter.active {
  color: var(--white-pure);
}

.work__count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-600);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.work__count span {
  color: var(--orange);
  font-weight: 600;
}

/* Bento Grid */
.work__bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.work__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  border: 1px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.work__card:hover {
  border-color: rgba(255, 107, 0, 0.25);
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.05);
}

.work__card--hero {
  grid-column: span 2;
  grid-row: span 2;
}

.work__card--wide {
  grid-column: span 2;
}

.work__card--tall {
  grid-row: span 2;
}

.work__card-img {
  position: absolute;
  inset: 0;
}

.work__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.work__card:hover .work__card-img img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.work__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}

.work__card:hover .work__card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.work__card--hero .work__card-overlay {
  padding: 40px;
}

/* Featured badge */
.work__card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white-pure);
  background: var(--orange);
  padding: 5px 14px;
  border-radius: 50px;
}

/* Arrow icon */
.work__card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-pure);
  opacity: 0;
  transform: translateY(8px) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work__card:hover .work__card-arrow {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.work__card-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.work__card-content {
  width: 100%;
}

.work__card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.work__card-tags span {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-300);
  transition: all 0.3s ease;
}

.work__card:hover .work__card-tags span {
  background: rgba(255, 107, 0, 0.10);
  border-color: rgba(255, 107, 0, 0.3);
  color: var(--orange-light);
}

.work__card-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white-pure);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.work__card--hero .work__card-content h3 {
  font-size: 28px;
}

.work__card-content p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work__card:hover .work__card-content p {
  max-height: 80px;
  opacity: 1;
}

.work__card-tech {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.06s;
}

.work__card:hover .work__card-tech {
  opacity: 1;
  transform: translateY(0);
}

.work__card-tech span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 3px 10px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ===========================
   ANIMATIONS (GSAP handles visibility)
   =========================== */

/* ===========================
   BLOG PAGE — SEARCH BAR
   =========================== */
.blog-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 32px auto 0;
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 60px;
  padding: 4px 6px 4px 20px;
  transition: all 0.3s ease;
}

.blog-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.10);
}

.blog-search__icon {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.blog-search:focus-within .blog-search__icon {
  color: var(--orange);
}

.blog-search__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 15px;
  padding: 12px 14px;
}

.blog-search__input::placeholder {
  color: var(--gray-600);
}

.blog-search__kbd {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  color: var(--gray-500);
  font-family: var(--font-mono);
  font-size: 12px;
  flex-shrink: 0;
  margin-right: 8px;
}

.blog-search:focus-within .blog-search__kbd {
  display: none;
}

/* ===========================
   BLOG — FEATURED POST
   =========================== */
.blog-featured {
  padding-top: 0;
}

.blog-featured__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured__card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 0 40px rgba(255, 107, 0, 0.05);
  transform: translateY(-4px);
}

.blog-featured__img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.blog-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured__card:hover .blog-featured__img img {
  transform: scale(1.05);
}

.blog-featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--orange);
  color: var(--white-pure);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  z-index: 2;
}

.blog-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 44px;
  gap: 16px;
}

.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-featured__category {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 107, 0, 0.10);
  color: var(--orange-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.blog-featured__date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-500);
  font-size: 13px;
}

.blog-featured__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.blog-featured__excerpt {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
}

.blog-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.blog-featured__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-featured__avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--white-pure);
}

.blog-featured__author span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
}

.blog-featured__read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.3s ease;
}

.blog-featured__card:hover .blog-featured__read-more {
  gap: 12px;
}

.blog-featured__read-more svg {
  transition: transform 0.3s ease;
}

.blog-featured__card:hover .blog-featured__read-more svg {
  transform: translate(2px, -2px);
}

/* ===========================
   BLOG — TOOLBAR & FILTERS
   =========================== */
.blog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.blog__filters {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 60px;
  padding: 5px;
  overflow: hidden;
}

.blog__filter-indicator {
  position: absolute;
  top: 5px;
  height: calc(100% - 10px);
  background: var(--orange);
  border-radius: 50px;
  z-index: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__filter {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  color: var(--gray-400);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.blog__filter:hover {
  color: var(--white);
}

.blog__filter.active {
  color: var(--white);
}

.blog__count {
  color: var(--gray-500);
  font-size: 14px;
  white-space: nowrap;
}

.blog__count span {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--orange);
}

/* ===========================
   BLOG — CARD GRID
   =========================== */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog__card {
  display: flex;
  flex-direction: column;
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__card:hover {
  border-color: rgba(255, 107, 0, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05), 0 0 24px rgba(255, 107, 0, 0.04);
}

.blog__card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog__card:hover .blog__card-img img {
  transform: scale(1.06);
}

.blog__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 12px;
}

.blog__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog__card-category {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange-light);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 0.02em;
}

.blog__card-date {
  font-size: 12px;
  color: var(--gray-600);
  white-space: nowrap;
}

.blog__card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.blog__card:hover .blog__card-title {
  color: var(--orange-light);
}

.blog__card-excerpt {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
}

.blog__card-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog__card-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--white-pure);
}

.blog__card-author span {
  font-size: 13px;
  color: var(--gray-400);
}

.blog__card-read {
  font-size: 12px;
  color: var(--gray-600);
  font-family: var(--font-mono);
}

/* ===========================
   BLOG — EMPTY STATE
   =========================== */
.blog__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  text-align: center;
}

.blog__empty svg {
  color: var(--gray-700);
}

.blog__empty h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gray-400);
}

.blog__empty p {
  font-size: 15px;
  color: var(--gray-600);
}

/* ===========================
   BLOG — PAGINATION
   =========================== */
.blog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog__page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  color: var(--gray-400);
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog__page-btn:hover:not(:disabled) {
  background: var(--dark-card-hover);
  border-color: var(--orange);
  color: var(--orange);
}

.blog__page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.blog__page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog__page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 4px;
  background: none;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--gray-400);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog__page-num:hover {
  background: var(--dark-card);
  border-color: rgba(0, 0, 0, 0.07);
  color: var(--white);
}

.blog__page-num.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white-pure);
  font-weight: 700;
  pointer-events: none;
}

.blog__page-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 44px;
  color: var(--gray-600);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ===========================
   BLOG POST — ARTICLE HERO
   =========================== */
.article-hero {
  position: relative;
  padding: 160px 0 60px;
  overflow: hidden;
}

.article-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.article-hero__gradient {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
}

.article-hero__gradient--1 {
  background: var(--orange);
  top: -150px;
  right: 10%;
}

.article-hero__gradient--2 {
  background: var(--orange-light);
  bottom: -100px;
  left: 5%;
}

.article-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.article-hero__category {
  padding: 5px 14px;
  background: rgba(255, 107, 0, 0.10);
  color: var(--orange-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
}

.article-hero__dot {
  width: 4px;
  height: 4px;
  background: var(--gray-600);
  border-radius: 50%;
}

.article-hero__date,
.article-hero__read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-500);
  font-size: 13px;
}

.article-hero__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-top: 24px;
}

.article-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.article-hero__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--white-pure);
}

.article-hero__author-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.article-hero__author-role {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
}

/* ===========================
   BLOG POST — COVER IMAGE
   =========================== */
.article-cover {
  margin-top: -20px;
  margin-bottom: 48px;
}

.article-cover__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-height: 480px;
}

.article-cover__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   BLOG POST — LAYOUT GRID
   =========================== */
.article-layout {
  padding-bottom: 80px;
}

.article-layout__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

/* ===========================
   BLOG POST — SIDEBAR / TOC
   =========================== */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.article-toc {
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 20px;
}

.article-toc__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.article-toc__title svg {
  color: var(--orange);
}

.article-toc__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-toc__link {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.article-toc__link:hover {
  color: var(--gray-300);
  background: rgba(0, 0, 0, 0.03);
}

.article-toc__link.active {
  color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(255, 107, 0, 0.05);
}

/* Share */
.article-share {
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 20px;
}

.article-share__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.article-share__btns {
  display: flex;
  gap: 8px;
}

.article-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  color: var(--gray-400);
  cursor: pointer;
  transition: all 0.3s ease;
}

.article-share__btn:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--orange);
  color: var(--orange);
}

.article-share__btn.copied {
  background: rgba(34, 197, 94, 0.15);
  border-color: #22c55e;
  color: #22c55e;
}

/* ===========================
   BLOG POST — ARTICLE CONTENT
   =========================== */
.article-content {
  max-width: 720px;
}

.article-content__intro p {
  font-size: 18px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 32px;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 48px;
  margin-bottom: 16px;
  scroll-margin-top: 100px;
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-200);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.article-content a:hover {
  color: var(--orange-light);
}

.article-content ul,
.article-content ol {
  margin: 16px 0 24px;
  padding-left: 24px;
}

.article-content li {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 8px;
}

.article-content li strong {
  color: var(--gray-200);
}

.article-content blockquote {
  position: relative;
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--dark-card);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content blockquote p {
  font-size: 17px;
  font-style: italic;
  color: var(--gray-300);
  margin-bottom: 0;
}

.article-content pre {
  margin: 24px 0;
  padding: 24px;
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow-x: auto;
}

.article-content code {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.7;
}

.article-content p code {
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  font-size: 14px;
  color: var(--orange-light);
}

/* Callout */
.article-callout {
  display: flex;
  gap: 16px;
  margin: 28px 0;
  padding: 20px 24px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: var(--radius);
}

.article-callout--orange {
  background: rgba(255, 107, 0, 0.05);
  border-color: rgba(255, 107, 0, 0.15);
}

.article-callout__icon {
  flex-shrink: 0;
  color: #38bdf8;
  margin-top: 2px;
}

.article-callout--orange .article-callout__icon {
  color: var(--orange);
}

.article-callout__content {
  font-size: 15px;
  color: var(--gray-300);
  line-height: 1.7;
}

.article-callout__content strong {
  color: var(--white);
}

/* In-article card grid */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.article-grid__card {
  padding: 20px;
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
}

.article-grid__card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.article-grid__card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Tags */
.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.article-tags__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}

.article-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-tag:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--orange);
  color: var(--orange);
}

/* Author Bio */
.article-author-bio {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  padding: 28px;
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
}

.article-author-bio__avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--white-pure);
}

.article-author-bio__content h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.article-author-bio__content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-author-bio__socials {
  display: flex;
  gap: 10px;
}

.article-author-bio__socials a {
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.article-author-bio__socials a:hover {
  color: var(--orange);
}

/* Post Navigation */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.article-nav__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-nav__item:hover {
  border-color: rgba(255, 107, 0, 0.25);
  background: var(--dark-card-hover);
}

.article-nav__item--next {
  text-align: right;
}

.article-nav__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
}

.article-nav__item--next .article-nav__label {
  justify-content: flex-end;
}

.article-nav__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-300);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.article-nav__item:hover .article-nav__title {
  color: var(--orange);
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  pointer-events: none;
}

/* Related posts */
.related-posts__heading {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===========================
   BLOG — NEWSLETTER
   =========================== */
.blog-newsletter__card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  overflow: hidden;
}

.blog-newsletter__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.blog-newsletter__glow--1 {
  background: var(--orange);
  top: -100px;
  right: -100px;
}

.blog-newsletter__glow--2 {
  background: var(--orange-light);
  bottom: -100px;
  left: -100px;
}

.blog-newsletter__content {
  position: relative;
  z-index: 1;
}

.blog-newsletter__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.blog-newsletter__desc {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 520px;
  margin: 16px auto 0;
}

.blog-newsletter__form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
}

.blog-newsletter__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-900);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 4px 4px 4px 16px;
  transition: border-color 0.3s ease;
}

.blog-newsletter__input-wrap:focus-within {
  border-color: var(--orange);
}

.blog-newsletter__input-wrap svg {
  color: var(--gray-600);
  flex-shrink: 0;
}

.blog-newsletter__input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 15px;
  padding: 12px 8px;
}

.blog-newsletter__input-wrap input::placeholder {
  color: var(--gray-600);
}

.blog-newsletter__note {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 16px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonials__card:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 1200px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 28px 40px;
    transition: right var(--transition);
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.08);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav__link {
    font-size: 16px;
    color: var(--gray-300);
    padding: 10px 0;
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__link--has-dropdown {
    font-size: 16px;
    width: 100%;
    justify-content: space-between;
    color: var(--gray-300);
    padding: 10px 0;
  }

  .nav__actions {
    display: block;
    margin-top: auto;
    width: 100%;
  }

  .nav__link--mobile-cta {
    display: block;
    width: 100%;
    background: var(--orange);
    color: var(--white-pure) !important;
    padding: 14px 24px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
  }

  .header__right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mega collapses into accordion */
  .mega {
    position: static;
    border: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: visible;
    background: transparent;
  }

  .nav__dropdown.open .mega {
    max-height: 2000px;
    opacity: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 8px;
  }

  .mega__inner {
    grid-template-columns: 1fr;
    padding: 8px 0 16px;
    gap: 16px;
  }

  .mega__section { padding: 0; }

  .mega__section--specializations {
    padding: 16px 0 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .mega__section--solutions {
    padding: 16px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .mega__grid--2col {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .mega__item { padding: 10px 8px; }
  .mega__icon { width: 34px; height: 34px; }
  .mega__heading { margin-bottom: 12px; padding-bottom: 8px; }
  .mega__solution-card { padding: 12px; }

  /* Mini dropdown becomes accordion too */
  .dropdown {
    position: static;
    width: 100%;
    transform: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: visible;
  }

  .nav__dropdown--mini.open .dropdown {
    max-height: 800px;
    opacity: 1;
    transform: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 8px;
  }

  .dropdown__inner { padding: 4px 0; }

  .mega-overlay { display: none; }
}

@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .footer__top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* About page */
  .story__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .about-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Work page */
  .work__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .work__card--hero {
    grid-column: span 2;
    grid-row: span 1;
  }

  .work__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .work__filters {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  /* Blog page */
  .blog-featured__card {
    grid-template-columns: 1fr 1fr;
  }

  .blog-featured__content {
    padding: 32px;
  }

  .blog-featured__title {
    font-size: 24px;
  }

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

  .blog__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog__filters {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .blog-newsletter__card {
    padding: 48px 36px;
  }

  /* Blog post page */
  .article-layout__grid {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }

  .article-hero__title {
    font-size: 36px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

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

  .services__card--cta {
    order: 99;
  }

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

  .testimonials__card:last-child {
    grid-column: span 1;
  }

  .testimonials__card--featured {
    transform: none;
  }

  .testimonials__card--featured:hover {
    transform: translateY(-4px);
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta__contact-info {
    flex-direction: column;
    gap: 8px;
  }

  .cta__divider-dot {
    display: none;
  }

  /* About page */
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .page-hero {
    padding: 130px 0 70px;
  }

  /* Work page */
  .work__bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .work__card--hero,
  .work__card--wide {
    grid-column: span 1;
  }

  .work__card--tall {
    grid-row: span 1;
  }

  .work__card--hero {
    grid-row: span 1;
  }

  .work__filter {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Blog page */
  .blog-featured__card {
    grid-template-columns: 1fr;
  }

  .blog-featured__img {
    min-height: 240px;
  }

  .blog-featured__content {
    padding: 28px;
  }

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

  .blog__filter {
    padding: 8px 16px;
    font-size: 13px;
  }

  .blog-newsletter__card {
    padding: 40px 24px;
  }

  .blog-newsletter__title {
    font-size: 28px;
  }

  .blog-newsletter__form {
    flex-direction: column;
  }

  .blog-newsletter__input-wrap {
    width: 100%;
  }

  .blog-newsletter__form .btn {
    width: 100%;
    justify-content: center;
  }

  .blog__page-btn,
  .blog__page-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
  }

  .blog__page-dots {
    width: 28px;
  }

  /* Blog post page */
  .article-layout__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .article-sidebar {
    position: relative;
    top: 0;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 40px;
  }

  .article-toc {
    flex: 1;
  }

  .article-share {
    flex-shrink: 0;
  }

  .article-hero__title {
    font-size: 30px;
  }

  .article-hero {
    padding: 130px 0 50px;
  }

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

  .article-nav {
    grid-template-columns: 1fr;
  }

  .related-posts__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__clients {
    flex-direction: column;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .about__img--secondary {
    width: 160px;
    left: -16px;
    bottom: -24px;
  }

  .about__experience-badge {
    width: 100px;
    height: 100px;
    right: -10px;
    top: -10px;
  }

  .about__exp-number {
    font-size: 26px;
  }

  .stats-marquee__number {
    font-size: 30px;
  }

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

  .cta {
    padding: 100px 0;
  }

  .portfolio__card {
    min-height: 260px;
  }

  .portfolio__card--lg {
    min-height: 300px;
  }

  /* About page */
  .page-hero__title {
    font-size: 32px;
  }

  .page-hero__subtitle {
    font-size: 16px;
  }

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

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

  .about-stats__number {
    font-size: 34px;
  }

  .vm__card {
    padding: 32px 24px;
  }

  .presence__region {
    padding: 28px;
  }

  .faq__question {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq__answer p {
    padding: 0 20px 18px;
    font-size: 14px;
  }

  .timeline {
    padding-left: 28px;
  }

  .timeline__dot {
    left: -28px;
    width: 14px;
    height: 14px;
  }

  .timeline__line {
    left: 6px;
  }

  /* Blog page */
  .blog-featured__title {
    font-size: 20px;
  }

  .blog-featured__excerpt {
    font-size: 14px;
  }

  .blog-search {
    margin-top: 24px;
  }

  .blog__card-title {
    font-size: 16px;
  }

  .blog-newsletter__title {
    font-size: 24px;
  }

  .blog-newsletter__desc {
    font-size: 14px;
  }

  .blog__pagination {
    gap: 4px;
    margin-top: 36px;
  }

  .blog__page-btn,
  .blog__page-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    font-size: 13px;
  }

  .blog__page-dots {
    width: 24px;
    font-size: 12px;
  }

  /* Blog post page */
  .article-hero__title {
    font-size: 26px;
  }

  .article-hero__meta {
    gap: 8px;
  }

  .article-sidebar {
    flex-direction: column;
  }

  .article-share__btns {
    flex-direction: row;
  }

  .article-content h2 {
    font-size: 22px;
  }

  .article-content h3 {
    font-size: 18px;
  }

  .article-author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .article-author-bio__socials {
    justify-content: center;
  }

  .article-cover__img {
    border-radius: var(--radius);
  }

  .related-posts__heading {
    font-size: 24px;
  }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

/* ---- Contact Grid ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact__info-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ---- Contact Cards ---- */
.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
  color: inherit;
}

a.contact__card:hover {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.04);
}

.contact__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
}

.contact__card-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact__card-value {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

/* ---- Social Links ---- */
.contact__socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.contact__socials-row {
  display: flex;
  gap: 10px;
}

.contact__social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--gray);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.contact__social:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.05);
}

/* ---- Contact Form ---- */
.contact__form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  outline: none;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.05);
}

.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact__field select option {
  background: #FFFFFF;
  color: var(--white);
}

.contact__field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---- Budget Selector ---- */
.contact__budget {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact__budget-option {
  position: relative;
  cursor: pointer;
}

.contact__budget-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact__budget-option span {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}

.contact__budget-option:hover span {
  border-color: rgba(255, 107, 0, 0.4);
  color: var(--white);
}

.contact__budget-option.selected span,
.contact__budget-option input:checked + span {
  background: rgba(255, 107, 0, 0.10);
  border-color: var(--orange);
  color: var(--orange);
  font-weight: 600;
}

/* ---- Submit Button ---- */
.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}

.contact__submit.sent {
  background: #22c55e;
  border-color: #22c55e;
}

/* ================================================================
   OFFICES SECTION
   ================================================================ */
.contact-offices__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 48px;
}

.contact-offices__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-offices__card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, background 0.3s;
}

.contact-offices__card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.contact-offices__card--primary {
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 107, 0, 0.04);
}

.contact-offices__card-flag {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  margin-bottom: 20px;
}

.contact-offices__card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--white-pure);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-offices__card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-offices__card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-offices__card-link {
  font-size: 14px;
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-offices__card-link:hover {
  opacity: 0.8;
}

/* ================================================================
   MAP SECTION
   ================================================================ */
.contact-map {
  padding: 0 0 80px;
}

.contact-map__wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}

.contact-map__wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: none;
}

/* ================================================================
   CONTACT FAQ
   ================================================================ */
.contact-faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-faq__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-faq__desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

/* Reuse faq__item styles from about page */

/* ================================================================
   CONTACT PAGE — RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .contact-offices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-faq__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-offices__title {
    font-size: 32px;
  }

  .contact-faq__title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .contact__form-wrap {
    padding: 28px 24px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-offices__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-offices__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .contact-map__wrap {
    height: 300px;
  }

  .contact__budget {
    gap: 8px;
  }

  .contact__budget-option span {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .contact__info-title {
    font-size: 26px;
  }

  .contact__form-wrap {
    padding: 24px 20px;
  }

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

  .contact-offices__card {
    padding: 24px 20px;
  }

  .contact-faq__title {
    font-size: 24px;
  }

  .contact__socials {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-map__wrap {
    height: 240px;
    border-radius: var(--radius);
  }

  .contact__submit {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */

/* ---- Hero Actions ---- */
.page-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---- Services Overview Grid ---- */
.svc-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-overview__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.svc-overview__card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.03);
}

.svc-overview__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  margin-bottom: 24px;
}

.svc-overview__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.svc-overview__card > p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.svc-overview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-overview__tags span {
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
}

.svc-overview__card:hover .svc-overview__tags span {
  border-color: rgba(255, 107, 0, 0.15);
  color: rgba(0, 0, 0, 0.08);
}

.svc-overview__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--gray);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.svc-overview__card:hover .svc-overview__arrow {
  background: var(--orange);
  color: var(--white-pure);
  transform: translate(2px, -2px);
}

/* ---- Service Detail Sections ---- */
.svc-detail--alt {
  background: rgba(0, 0, 0, 0.02);
}

.svc-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.svc-detail__grid--reverse {
  direction: rtl;
}

.svc-detail__grid--reverse > * {
  direction: ltr;
}

.svc-detail__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.svc-detail__desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.svc-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-detail__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--light-gray);
}

.svc-detail__list li svg {
  flex-shrink: 0;
}

/* Feature card stack */
.svc-detail__card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-detail__feature-card {
  position: relative;
  padding: 28px 28px 28px 80px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}

.svc-detail__feature-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.svc-detail__feature-num {
  position: absolute;
  left: 28px;
  top: 28px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 107, 0, 0.3);
}

.svc-detail__feature-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.svc-detail__feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ---- Process Section ---- */
.svc-process {
  background: rgba(0, 0, 0, 0.02);
}

.svc-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-process__step {
  position: relative;
  padding: 36px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}

.svc-process__step:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.svc-process__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), #ff9a44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.svc-process__step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.svc-process__step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.svc-process__connector {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform-origin: left center;
  z-index: 1;
}

/* ---- Tech Stack Section ---- */
.svc-tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-tech__group {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.svc-tech__group:hover {
  border-color: rgba(255, 107, 0, 0.25);
}

.svc-tech__group h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.svc-tech__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tech__tags span {
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--light-gray);
  transition: border-color 0.3s, color 0.3s;
}

.svc-tech__group:hover .svc-tech__tags span {
  border-color: rgba(255, 107, 0, 0.10);
}

/* ---- Stats Section ---- */
.svc-stats {
  background: rgba(0, 0, 0, 0.02);
}

.svc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.svc-stats__item {
  padding: 40px 20px;
}

.svc-stats__number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), #ff9a44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.svc-stats__suffix {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
}

.svc-stats__item p {
  font-size: 15px;
  color: var(--gray);
  margin-top: 8px;
  font-weight: 500;
}

/* ---- Testimonials Section ---- */
.svc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-testimonials__card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}

.svc-testimonials__card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.svc-testimonials__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.svc-testimonials__text {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.svc-testimonials__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.svc-testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff9a44);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white-pure);
  flex-shrink: 0;
}

.svc-testimonials__name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.svc-testimonials__role {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-top: 2px;
}

/* ================================================================
   SERVICES PAGE — RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .svc-overview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .svc-process__step:nth-child(2) .svc-process__connector,
  .svc-process__step:nth-child(4) .svc-process__connector {
    display: none;
  }
}

@media (max-width: 992px) {
  .svc-detail__grid,
  .svc-detail__grid--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .svc-detail__title {
    font-size: 30px;
  }

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

  .svc-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

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

  .svc-stats__number {
    font-size: 44px;
  }
}

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

  .svc-overview__card {
    padding: 28px 24px;
  }

  .svc-process__grid {
    grid-template-columns: 1fr;
  }

  .svc-process__connector {
    display: none;
  }

  .svc-detail__title {
    font-size: 26px;
  }

  .svc-detail__feature-card {
    padding: 24px 24px 24px 68px;
  }

  .svc-tech__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__actions .btn {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .svc-overview__card h3 {
    font-size: 18px;
  }

  .svc-detail__title {
    font-size: 22px;
  }

  .svc-detail__feature-card {
    padding: 20px 20px 20px 56px;
  }

  .svc-detail__feature-num {
    left: 20px;
    top: 20px;
    font-size: 20px;
  }

  .svc-process__num {
    font-size: 32px;
  }

  .svc-process__step h3 {
    font-size: 17px;
  }

  .svc-stats__number {
    font-size: 36px;
  }

  .svc-stats__suffix {
    font-size: 24px;
  }

  .svc-testimonials__card {
    padding: 24px;
  }

  .svc-testimonials__text {
    font-size: 14px;
  }
}

/* ================================================================
   SERVICE DETAIL PAGE (sdp-) — UI/UX & SIMILAR
   ================================================================ */

/* ---- Why Invest Section ---- */
.sdp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.sdp-why__card {
  padding: 36px 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, background 0.3s;
}

.sdp-why__card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.03);
}

.sdp-why__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  margin-bottom: 24px;
}

.sdp-why__card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.sdp-why__card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- Features Grid ---- */
.sdp-features {
  background: rgba(0, 0, 0, 0.02);
}

.sdp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.sdp-features__card {
  position: relative;
  padding: 36px 32px 36px 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.sdp-features__card:hover {
  border-color: rgba(255, 107, 0, 0.35);
}

.sdp-features__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: rgba(255, 107, 0, 0.05);
  line-height: 1;
}

.sdp-features__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  margin-bottom: 20px;
}

.sdp-features__card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.sdp-features__card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- Process (6-step) ---- */
.sdp-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.sdp-process__step {
  padding: 36px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}

.sdp-process__step:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.sdp-process__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), #ff9a44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.sdp-process__step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.sdp-process__step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ---- Why Choose Us ---- */
.sdp-choose {
  background: rgba(0, 0, 0, 0.02);
}

.sdp-choose__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.sdp-choose__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.sdp-choose__desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.sdp-choose__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sdp-choose__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sdp-choose__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.sdp-choose__list li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.sdp-choose__list li span {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Stats in choose section */
.sdp-choose__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sdp-choose__stat {
  padding: 32px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.3s;
}

.sdp-choose__stat:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.sdp-choose__stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), #ff9a44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.sdp-choose__stat-suffix {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}

.sdp-choose__stat p {
  font-size: 14px;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 500;
}

/* ---- Industries ---- */
.sdp-industries__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.sdp-industries__card {
  padding: 32px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}

.sdp-industries__card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.03);
}

.sdp-industries__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange);
  margin: 0 auto 20px;
}

.sdp-industries__card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.sdp-industries__card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ================================================================
   SERVICE DETAIL PAGE — RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .sdp-industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sdp-choose__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 992px) {
  .sdp-why__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

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

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

  .sdp-choose__title {
    font-size: 28px;
  }

  .sdp-choose__stats {
    max-width: 400px;
  }

  .sdp-choose__stat-number {
    font-size: 36px;
  }

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

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

  .sdp-process__grid {
    grid-template-columns: 1fr;
  }

  .sdp-why__card,
  .sdp-features__card {
    padding: 28px 24px;
  }

  .sdp-choose__title {
    font-size: 24px;
  }

  .sdp-industries__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .sdp-why__card h3 {
    font-size: 18px;
  }

  .sdp-features__num {
    font-size: 30px;
  }

  .sdp-process__num {
    font-size: 28px;
  }

  .sdp-choose__stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .sdp-choose__stat {
    padding: 24px 16px;
  }

  .sdp-choose__stat-number {
    font-size: 30px;
  }

  .sdp-industries__grid {
    grid-template-columns: 1fr;
  }

  .sdp-industries__card {
    padding: 24px 20px;
  }
}
