/* ============================================================
   MHT Healthcare LLP — World-Class Design System
   Inspired by: Pfizer, Novartis, Roche, Sanofi, J&J
   ============================================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Palette */
  --primary: #0a4d8c;
  --primary-dark: #062d54;
  --primary-light: #1a6fbf;
  --primary-50: rgba(10, 77, 140, 0.05);
  --primary-100: rgba(10, 77, 140, 0.1);

  /* Accent Palette */
  --accent: #00b894;
  --accent-dark: #009d80;
  --accent-light: #55efc4;
  --accent-50: rgba(0, 184, 148, 0.05);
  --accent-100: rgba(0, 184, 148, 0.1);

  /* Secondary */
  --secondary: #0984e3;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8fafc;
  --bg-light: #f8fafc;
  --light-gray: #e2e8f0;
  --border: #e2e8f0;
  --gray: #94a3b8;
  --dark-gray: #64748b;
  --text: #0f172a;
  --text-secondary: #334155;
  --text-light: #64748b;

  /* Elevation */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.12);

  /* Radius */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-full: 100px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-primary: var(--font-body);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--light-gray);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  position: relative;
  letter-spacing: -0.01em;
  font-family: var(--font-heading);
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-50);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.01em !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 77, 140, 0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #062d54 0%, #0a4d8c 40%, #0a4d8c 60%, #073660 100%);
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.08), transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(9, 132, 227, 0.06), transparent 70%);
  border-radius: 50%;
}

/* Subtle grid pattern */
.hero .hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 184, 148, 0.08);
  border: 1px solid rgba(0, 184, 148, 0.2);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  margin-bottom: 32px;
  color: var(--accent-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  font-family: var(--font-heading);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.08rem;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  position: relative;
}

.hero-graphic .circle-outer {
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-slow 40s linear infinite;
}

.hero-graphic .circle-inner {
  width: 70%;
  height: 70%;
  border: 1.5px solid rgba(0, 184, 148, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-slow 25s linear infinite reverse;
}

.hero-graphic .center-icon {
  width: 130px;
  height: 130px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-graphic .center-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-graphic .floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: white;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}

.hero-graphic .floating-card:nth-child(2) {
  top: 8%;
  right: -8%;
  animation-delay: -1.5s;
}

.hero-graphic .floating-card:nth-child(3) {
  bottom: 18%;
  left: -10%;
  animation-delay: -3s;
}

.hero-graphic .floating-card:nth-child(4) {
  bottom: 4%;
  right: 4%;
  animation-delay: -4.5s;
}

.floating-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 184, 148, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 100px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.intro-block {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 44px 40px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.intro-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.intro-block:hover::before {
  transform: scaleX(1);
}

.intro-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.intro-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.intro-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.intro-block p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
  letter-spacing: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 184, 148, 0.25);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 184, 148, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(10, 77, 140, 0.25);
}

.btn-accent:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 77, 140, 0.35);
}

/* ===== KEY HIGHLIGHTS ===== */
.highlights {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--primary-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--primary);
  color: white;
}

.highlight-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== SECTIONS (General) ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  letter-spacing: 0;
}

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.06), transparent 70%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.page-hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  font-family: var(--font-body);
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  font-size: 0.7rem;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.85;
  letter-spacing: 0;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.about-image:hover .about-image-main img {
  transform: scale(1.03);
}

.about-stats {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: white;
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 32px;
}

.stat h4 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
}

.stat p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== LEADERSHIP ===== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.leader-card {
  background: white;
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.leader-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(10, 77, 140, 0.15);
  overflow: hidden;
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 6px;
}

.leader-card .title {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}

.leader-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== VISION / MISSION ===== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vm-card.mission {
  border-top-color: var(--accent);
}

.vm-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vm-card h3 .icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.vm-card.mission h3 .icon {
  background: var(--accent);
}

.vm-card p,
.vm-card li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.vm-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vm-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.vm-card li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
  transform-origin: left;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-gray);
  margin-bottom: 12px;
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.service-list li::before {
  content: '\2192';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Alternate service layout */
.about-content.reverse {
  direction: rtl;
}

.about-content.reverse > * {
  direction: ltr;
}

/* ===== EXPERIENCE ===== */
.exp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.exp-text h3 {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 16px;
}

.exp-text p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.competency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.competency-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid transparent;
}

.competency-item:hover {
  background: white;
  box-shadow: var(--shadow);
  transform: translateX(4px);
  border-color: var(--light-gray);
}

.competency-item .check {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.sector-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sector-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}

.sector-item:hover {
  transform: translateX(6px);
  border-left-color: var(--accent);
  box-shadow: var(--shadow);
}

.sector-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.sector-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
}

.sector-item p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: var(--primary-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== PRESENCE / MAP ===== */
.presence-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.presence-text h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 16px;
}

.presence-text p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.presence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.presence-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--off-white);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.presence-tag:hover {
  border-color: var(--accent);
  background: var(--accent-50);
}

.presence-tag .dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.presence-map {
  border-radius: var(--radius);
  height: 360px;
  position: relative;
  overflow: hidden;
}

.presence-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.presence-map:hover img {
  transform: scale(1.03);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card:hover .contact-icon {
  background: var(--primary);
  color: white;
}

.contact-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--off-white);
  color: var(--text);
  letter-spacing: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px var(--primary-50);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.08), transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.035em;
  color: white;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 580px;
  margin: 0 auto 40px;
  position: relative;
  font-family: var(--font-body);
  line-height: 1.7;
}

.cta-section .btn {
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: #0b1a2b;
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand .logo img {
  height: 42px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-heading);
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.footer-contact-item .icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--accent);
  color: white;
}

/* ===== COUNTER / STATS ===== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  color: white;
  padding: 12px 0;
}

.stat-card h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
  background: linear-gradient(135deg, white, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

.stat-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  color: white;
}

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success .icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SCROLL TOP BUTTON ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===== SECURITY BADGE (footer) ===== */
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.security-badge i {
  color: var(--accent);
  font-size: 0.7rem;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b1a2b;
  color: rgba(255,255,255,0.8);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  font-size: 0.88rem;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  flex: 1;
  line-height: 1.5;
}

.cookie-banner .btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 24px;
  font-size: 0.82rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 28px 28px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    transition: right 0.4s var(--ease);
    align-items: flex-start;
    gap: 2px;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-grid,
  .exp-content,
  .vm-grid,
  .presence-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .competency-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    justify-content: center;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .stat-card h3 {
    font-size: 2.2rem;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--primary-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--primary);
  color: white;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== PHILOSOPHY GRID ===== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.philosophy-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.philosophy-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--primary-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition: var(--transition);
}

.philosophy-card:hover .philosophy-icon {
  background: var(--primary);
  color: white;
}

.philosophy-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.philosophy-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== MHT ADVANTAGE ===== */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.advantage-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.advantage-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--accent-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
  background: var(--accent);
  color: white;
}

.advantage-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== PROCESS GRID ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--light-gray);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

.process-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  background: var(--accent-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}

.process-step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .values-grid,
  .philosophy-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid,
  .philosophy-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }
}
