/* ========================================
   Tai Werving BVBA — Main Stylesheet
   taiwea.com | "Where Skill Meets Strategy"
   Color: Deep Purple #2B2D91 + Gold #F5A623
   ======================================== */

:root {
  --purple: #2B2D91;
  --purple-dark: #1a1b5e;
  --purple-mid: #3d3fa8;
  --purple-light: #5557c8;
  --gold: #F5A623;
  --gold-dark: #d4881a;
  --gold-light: #ffc04a;
  --white: #ffffff;
  --off-white: #fafafe;
  --light-bg: #f4f5fb;
  --gray: #6b7280;
  --dark-text: #1a1a2e;
  --border: #e0e2f0;
  --shadow: 0 4px 24px rgba(43, 45, 145, 0.12);
  --shadow-lg: 0 8px 40px rgba(43, 45, 145, 0.2);
  --shadow-gold: 0 8px 28px rgba(245, 166, 35, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
}

/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
}

p {
  color: var(--gray);
  line-height: 1.8;
}

/* === LABEL TAG === */
.label-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.label-tag.purple {
  color: var(--purple);
  background: rgba(43, 45, 145, 0.08);
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--purple-dark);
  margin-bottom: 14px;
}

.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-accent {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  margin: 14px auto 0;
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--purple-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.btn-purple:hover {
  background: var(--purple-mid);
  border-color: var(--purple-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--purple-dark);
  transform: translateY(-3px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--purple-dark);
  transform: translateY(-3px);
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-outline-purple:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(43, 45, 145, 0.1);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(43, 45, 145, 0.14);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li>a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray);
  transition: var(--transition);
  padding: 6px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu>li>a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.3s;
  border-radius: 2px;
}

.nav-menu>li>a:hover::after,
.nav-menu>li>a.active::after {
  width: 100%;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
  color: var(--purple);
}

.navbar.scrolled .nav-menu>li>a {
  color: var(--gray);
}

.navbar.scrolled .nav-menu>li>a:hover,
.navbar.scrolled .nav-menu>li>a.active {
  color: var(--purple);
}

.navbar.scrolled .nav-menu>li>a::after {
  background: var(--purple);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  border: 1px solid var(--border);
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}

.has-dropdown:hover .dropdown-menu {
  display: block;
  animation: dropFade 0.2s ease;
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
}

.dropdown-menu a i {
  width: 18px;
  color: var(--purple);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--purple);
  padding-left: 26px;
}

/* Nav CTA */
.nav-cta {
  background: var(--gold) !important;
  color: var(--purple-dark) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 8px;
}

.lang-switcher a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 26px;
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.55;
  padding: 0 !important;
}

.lang-switcher a::after {
  display: none !important;
}

.lang-switcher a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lang-switcher a:hover {
  opacity: 0.85;
  border-color: var(--border);
  transform: translateY(-1px);
  background: transparent;
}

.lang-switcher a.lang-active {
  opacity: 1;
  border-color: var(--purple);
  box-shadow: 0 2px 8px rgba(43,45,145,0.25);
  background: transparent;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--purple);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==============================
   HERO — VIDEO BACKGROUND
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 55%, var(--purple-mid) 100%);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 27, 94, 0.55) 0%, rgba(43, 45, 145, 0.40) 55%, rgba(61, 63, 168, 0.20) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 150px 0 90px;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-content h1 .highlight {
  color: var(--gold);
}

.hero-tagline {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 42px;
  max-width: 620px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroScroll 2.5s ease infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245, 166, 35, 0.6), transparent);
}

@keyframes heroScroll {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ==============================
   ABOUT SECTION (HOME)
   ============================== */
.about-section {
  padding: 110px 0;
  background: var(--white);
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-wrap .img-deco {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gold);
  color: var(--purple-dark);
  padding: 24px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.img-deco .num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.img-deco .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.about-img-wrap .img-deco2 {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--purple);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.img-deco2 i {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.img-deco2 span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.about-content h2 {
  color: var(--purple-dark);
  margin-bottom: 16px;
}

.about-content>p {
  margin-bottom: 16px;
}

.check-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 1rem;
}

.check-item span {
  color: var(--dark-text);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==============================
   PROCESS / HOW WE WORK
   ============================== */
.process-section {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-mid) 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.06);
}

.process-section .section-header h2 {
  color: var(--white);
}

.process-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(245, 166, 35, 0.2));
  z-index: 0;
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}

.process-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.process-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ==============================
   JOB CATEGORIES
   ============================== */
.job-categories {
  padding: 110px 0;
  background: var(--light-bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 28px 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  opacity: 0;
  transition: opacity 0.35s;
}

.cat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.cat-card:hover::before {
  opacity: 1;
}

.cat-card:hover h3,
.cat-card:hover p {
  position: relative;
  z-index: 1;
}

.cat-card:hover h3 {
  color: var(--white) !important;
}

.cat-card:hover p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.cat-card:hover .cat-icon {
  background: rgba(245, 166, 35, 0.2);
  color: var(--gold);
}

.cat-card:hover .cat-link {
  color: var(--gold);
}

.cat-card>* {
  position: relative;
  z-index: 1;
}

.cat-icon {
  width: 76px;
  height: 76px;
  background: rgba(43, 45, 145, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.9rem;
  color: var(--purple);
  transition: var(--transition);
}

.cat-card h3 {
  color: var(--purple-dark);
  margin-bottom: 12px;
}

.cat-card p {
  font-size: 0.875rem;
  margin-bottom: 22px;
  line-height: 1.7;
}

.cat-link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

/* ==============================
   JOB TYPES
   ============================== */
.job-types {
  padding: 90px 0;
  background: var(--white);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.type-card {
  text-align: center;
  padding: 36px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--white);
}

.type-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.2);
}

.type-icon {
  font-size: 2.2rem;
  color: var(--purple);
  margin-bottom: 14px;
  transition: var(--transition);
  display: block;
}

.type-card:hover .type-icon {
  color: var(--gold);
  transform: scale(1.15);
}

.type-card h3 {
  color: var(--purple-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

/* ==============================
   STATS BAR
   ============================== */
.stats-bar {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1800&q=80') center/cover no-repeat;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 27, 94, 0.92), rgba(43, 45, 145, 0.85));
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item i {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
  opacity: 0.8;
}

.stat-item .count-num {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-item .stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  display: block;
}

/* ==============================
   WHY CHOOSE
   ============================== */
.why-choose {
  padding: 110px 0;
  background: var(--light-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

.why-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}

.why-text h3 {
  color: var(--purple-dark);
  margin-bottom: 10px;
}

.why-text p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.75;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials {
  padding: 110px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '\201C';
  position: absolute;
  top: 40px;
  left: 5%;
  font-size: 20rem;
  color: rgba(43, 45, 145, 0.04);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  line-height: 1;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testi-text {
  color: var(--dark-text);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: var(--purple-dark);
  font-size: 0.92rem;
  display: block;
}

.testi-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ==============================
   INDUSTRIES BANNER (Alternating)
   ============================== */
.industries-alt {
  padding: 110px 0;
  background: var(--white);
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 90px;
}

.split-block:last-child {
  margin-bottom: 0;
}

.split-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.split-text h2 {
  color: var(--purple-dark);
  margin-bottom: 16px;
}

.split-text p {
  margin-bottom: 14px;
}

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-mid) 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: rgba(245, 166, 35, 0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 40%;
  height: 150%;
  background: rgba(245, 166, 35, 0.04);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section>.container>p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 38px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   PARTNERS / CLIENTS STRIP
   ============================== */
.partners-strip {
  padding: 60px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border);
}

.partners-strip .section-header {
  margin-bottom: 36px;
}

.partners-strip .section-header h3 {
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.partners-logos {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-item {
  opacity: 0.45;
  transition: var(--transition);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--purple-dark);
  letter-spacing: -0.02em;
}

.partner-item:hover {
  opacity: 0.85;
}

/* ==============================
   FOOTER
   ============================== */
footer {
  background: var(--purple-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.footer-contact-row i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.foot-head {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 22px;
}

.foot-links {
  list-style: none;
}

.foot-links li {
  margin-bottom: 11px;
}

.foot-links a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.foot-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.foot-links a i {
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.foot-links a:hover i {
  opacity: 1;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.65;
}

.nl-form {
  display: flex;
  gap: 0;
}

.nl-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white);
  font-size: 0.84rem;
  outline: none;
  min-width: 0;
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.nl-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.nl-form button {
  padding: 12px 16px;
  background: var(--gold);
  color: var(--purple-dark);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.nl-form button:hover {
  background: var(--gold-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--purple-dark);
  transform: translateY(-3px);
}

/* ==============================
   INNER PAGE HERO
   ============================== */
.page-hero {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1.06);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 27, 94, 0.82), rgba(43, 45, 145, 0.7));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 90px;
}

.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.28);
}

/* ==============================
   ABOUT FULL PAGE
   ============================== */
.about-story {
  padding: 110px 0;
}

.about-values {
  padding: 90px 0;
  background: var(--light-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.value-icon.purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--gold);
}

.value-icon.gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--purple-dark);
}

.value-icon.dark {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: var(--gold);
}

.value-card h3 {
  color: var(--purple-dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.industries-section {
  padding: 100px 0;
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.ind-item {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.ind-item:hover {
  border-color: var(--purple);
  transform: translateX(6px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.ind-item i {
  font-size: 1.4rem;
  color: var(--purple);
  width: 36px;
  flex-shrink: 0;
  transition: var(--transition);
}

.ind-item:hover i {
  color: var(--gold);
}

.ind-item span {
  font-weight: 600;
  color: var(--purple-dark);
  font-size: 0.92rem;
}

/* ==============================
   JOBS PAGE
   ============================== */
.jobs-section {
  padding: 110px 0;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.job-card-img {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.job-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, var(--white), transparent);
}

.job-card-body {
  padding: 28px 28px 32px;
}

.job-card-body h3 {
  color: var(--purple-dark);
  margin-bottom: 10px;
}

.job-card-body p {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.job-card-body ul {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-card-body ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--gray);
}

.job-card-body ul li i {
  color: var(--gold);
  font-size: 0.75rem;
}

.job-types-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.types-pill-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}

.type-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 60px;
  background: var(--white);
  border: 2px solid var(--border);
  transition: var(--transition);
}

.type-pill:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.2);
}

.type-pill i {
  font-size: 1.15rem;
  color: var(--purple);
  transition: var(--transition);
}

.type-pill:hover i {
  color: var(--gold);
}

.type-pill span {
  font-weight: 700;
  color: var(--purple-dark);
  font-size: 0.9rem;
}

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-section {
  padding: 110px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
  color: var(--purple-dark);
  margin-bottom: 8px;
}

.contact-form-wrap>p {
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--dark-text);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(43, 45, 145, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info-wrap {
  position: sticky;
  top: 100px;
}

.contact-info-wrap h3 {
  color: var(--purple-dark);
  margin-bottom: 20px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row:first-child {
  padding-top: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(43, 45, 145, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-row strong {
  display: block;
  color: var(--purple-dark);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.info-row span {
  color: var(--gray);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

.stagger .fade-up:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger .fade-up:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger .fade-up:nth-child(3) {
  transition-delay: 0.19s;
}

.stagger .fade-up:nth-child(4) {
  transition-delay: 0.26s;
}

.stagger .fade-up:nth-child(5) {
  transition-delay: 0.33s;
}

.stagger .fade-up:nth-child(6) {
  transition-delay: 0.40s;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .about-section .container {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-section .container,
  .split-block,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-block img {
    height: 300px;
  }

  .about-img-wrap img {
    height: 360px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .types-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--purple-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu>li>a {
    color: var(--white) !important;
    font-size: 1.1rem;
  }

  .dropdown-menu {
    display: none !important;
  }

  .nav-cta {
    display: none;
  }

  .categories-grid,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .industries-grid,
  .types-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .hero-content {
    padding: 130px 0 70px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .page-hero {
    height: 320px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}