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

:root {
  --primary-purple: #4f2d7f;
  --dark-purple: #2b144d;
  --light-purple: #a06dff;
  --accent-red: #ce2c2c;
  --bg-light: #f2f1ef;
  --bg-white: #ffffff;
  --border-color: #ccc4bd;
  --text-dark: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #ffffff;
  --surface-light: #f2f0ee;
  --font-primary: 'Inter', sans-serif;
  --max-width: 1172px;
  --header-height: 80px;
  --topbar-height: 40px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul { list-style: none; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.4rem;
}

/* ===== TOP BAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-height);
  background: var(--dark-purple);
  z-index: 1001;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.82);
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: var(--light-purple);
}

.topbar .wa-icon {
  width: 16px;
  height: 16px;
  fill: #25D366;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .topbar .container { font-size: 1.15rem; gap: 0.5rem; }
  .topbar-prefix { display: none; }
}

/* ===== HEADER & NAV ===== */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-white);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-purple);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--primary-purple);
  font-weight: 400;
}

.logo-tagline {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

.nav-desktop a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-purple);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary-purple);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--primary-purple);
  color: var(--text-light);
  padding: 1rem 2.4rem;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-contact:hover {
  background: var(--dark-purple);
  transform: translateY(-1px);
}

.btn-contact svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-contact:hover svg {
  transform: translateX(3px);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--topbar-height) + var(--header-height));
  left: 0;
  width: 100%;
  background: var(--bg-white);
  padding: 2.4rem;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--surface-light);
}

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

/* ===== HERO SECTION ===== */
.hero {
  margin-top: calc(var(--topbar-height) + var(--header-height));
  min-height: 88vh;
  background: linear-gradient(118deg, rgba(43,20,77,0.96) 0%, rgba(79,45,127,0.84) 46%, rgba(43,20,77,0.42) 100%), url('../images/hero.jpg?v=3') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(160,109,255,0.15) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-5%, 5%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.4rem;
  padding: 0.6rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
}

.hero h1 {
  font-size: 6.4rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.8s ease-out;
}

.hero p {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 4rem;
  max-width: 560px;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg-white);
  color: var(--primary-purple);
  padding: 1.4rem 3.2rem;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--surface-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  color: var(--text-light);
  padding: 1.4rem 3.2rem;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--text-light);
  background: rgba(255,255,255,0.1);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
  text-align: center;
}

.stat-item {
  padding: 1.6rem;
}

.stat-number {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--primary-purple);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stat-label {
  font-size: 1.4rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 9.6rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-purple);
  margin-bottom: 1.6rem;
}

.section-title {
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

.section-subtitle {
  font-size: 1.7rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

.section-header {
  margin-bottom: 6.4rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3.6rem 3.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79,45,127,0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.4rem;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary-purple);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-purple);
  transition: fill 0.3s ease;
}

.service-card:hover .service-icon svg {
  fill: var(--text-light);
}

.service-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

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

/* ===== ABOUT / TWO-COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(43,20,77,0.9));
  padding: 3.2rem;
  color: white;
}

.about-image-overlay .stat-number {
  color: white;
  font-size: 3.6rem;
}

.about-image-overlay p {
  font-size: 1.4rem;
  opacity: 0.8;
}

/* ===== PRESENCE MAP ===== */
.about-image.presence-card {
  background: linear-gradient(180deg, #ffffff, #faf8fd);
  border: 1px solid var(--border-color);
  padding: 2.8rem 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  height: auto;
}

.presence-tag {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-purple);
}

.presence-head h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-top: 0.4rem;
}

.india-map {
  width: 100%;
  height: auto;
  display: block;
  margin: 0.4rem 0;
  flex: 1;
}

.presence-list {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  border-top: 1px solid var(--surface-light);
  padding-top: 1.4rem;
}

.presence-list strong { color: var(--primary-purple); }

@keyframes hqPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

.hq-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: hqPulse 2.2s ease-out infinite;
}

/* ===== SERVICE IMAGE PANEL ===== */
.service-visual {
  position: relative;
  min-height: 420px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.service-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-visual:hover img {
  transform: scale(1.05);
}

.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,20,77,0.92) 0%, rgba(43,20,77,0.32) 55%, rgba(43,20,77,0.1) 100%);
}

.service-visual__label {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 3.2rem;
  color: #fff;
}

.service-visual__label span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-visual__label small {
  display: block;
  font-size: 1.4rem;
  opacity: 0.88;
  margin-top: 6px;
}

.about-content .section-subtitle {
  margin-bottom: 3.2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: var(--surface-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-purple);
}

.feature-item span {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== INDUSTRIES ===== */
.bg-light {
  background: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.industry-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 3.2rem 2.4rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.industry-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(79,45,127,0.1);
}

.industry-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--surface-light), var(--bg-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: background 0.3s ease;
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
}

.industry-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-purple);
  transition: fill 0.3s ease;
}

.industry-card:hover .industry-icon svg {
  fill: white;
}

.industry-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.industry-card p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.why-card {
  text-align: center;
  padding: 3.2rem 2.4rem;
}

.why-number {
  font-size: 6rem;
  font-weight: 800;
  color: var(--surface-light);
  line-height: 1;
  margin-bottom: 1.6rem;
  -webkit-text-stroke: 1px var(--border-color);
}

.why-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.why-card p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(rgba(43,20,77,0.93), rgba(43,20,77,0.93)), url('../images/cta.jpg?v=2') center/cover no-repeat fixed;
  padding: 8rem 0;
  text-align: center;
}

.cta-section .section-title {
  color: var(--text-light);
  margin-bottom: 1.6rem;
}

.cta-section .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 4rem;
}

.cta-buttons {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.contact-item {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--surface-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-purple);
}

.contact-item h4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.contact-item p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 4rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1.5rem;
  font-family: var(--font-primary);
  color: var(--text-dark);
  transition: border-color 0.3s ease;
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(79,45,127,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.btn-submit {
  width: 100%;
  padding: 1.4rem;
  background: var(--primary-purple);
  color: var(--text-light);
  border: none;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--dark-purple);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-purple);
  color: var(--text-light);
  padding: 6.4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
  margin-bottom: 1.6rem;
}

.footer-brand .logo-text {
  color: var(--text-light);
  margin-bottom: 0;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.45);
}

.footer-brand .logo-text span {
  color: var(--light-purple);
}

.footer-brand p {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 1.6rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.7);
}

.footer-col h4 {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.footer-col a {
  display: block;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--light-purple);
}

.footer-bottom {
  padding: 2.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 1.3rem;
}

.footer-bottom a:hover {
  color: var(--light-purple);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  margin-top: calc(var(--topbar-height) + var(--header-height));
  padding: 8rem 0 6rem;
  background: linear-gradient(118deg, rgba(43,20,77,0.96) 0%, rgba(79,45,127,0.88) 100%), url('../images/corporate.jpg?v=2') center/cover no-repeat;
  color: var(--text-light);
}

.page-hero .section-tag {
  color: rgba(255,255,255,0.7);
}

.page-hero .section-title {
  color: var(--text-light);
  font-size: 5rem;
}

.page-hero .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.breadcrumb {
  display: flex;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.4rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

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

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.team-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(79,45,127,0.1);
}

.team-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--surface-light), var(--bg-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo svg {
  width: 64px;
  height: 64px;
  fill: var(--border-color);
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.team-info p {
  font-size: 1.4rem;
  color: var(--text-secondary);
}

.team-info .team-role {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-purple);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.team-info .team-bio {
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

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

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3.6rem;
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--primary-purple);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1.6rem;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 1.6rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.4rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--surface-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.testimonial-author h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 1.3rem;
  color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 4.8rem; }
  .section-title { font-size: 3.4rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 3.6rem; }
  .hero { min-height: 70vh; }
  .section { padding: 6.4rem 0; }
  .section-title { font-size: 2.8rem; }
  .two-col { grid-template-columns: 1fr; gap: 4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 3.6rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
  .page-hero .section-title { font-size: 3.6rem; }
}

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