/* ===== JDT India — Corporate IT Recruitment ===== */
:root {
  --navy: #1e3a5f;
  --navy-dark: #152942;
  --navy-light: #2a4a73;
  --charcoal: #2d3748;
  --charcoal-light: #4a5568;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --gray-bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06);
  --radius: 10px;
  --radius-sm: 6px;
  --max: 1160px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --transition: 0.28s ease;
  --section-spacing: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

body:not(.is-loaded) {
  opacity: 0;
  transform: translateY(6px);
}

body.is-loaded {
  transition: opacity 400ms var(--transition), transform 400ms var(--transition);
  opacity: 1;
  transform: none;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

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

/* ===== Header (Navy, matches footer) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, #1e3a5f 0%, #152942 100%);
  color: #ffffff;
  border-bottom: none;
  box-shadow: var(--shadow);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  height: 64px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-logo {
  height: 100%;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.brand-mark.no-logo .brand-logo {
  display: none;
}

.brand-mark.no-logo::after {
  content: "JDT India";
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.brand-text {
  font-weight: 700;
  font-size: 19px;
  color: #ffffff;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 16px;
  padding-bottom: 4px;
  transition: color var(--transition), transform var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transition: width var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  text-decoration: none;
}

.site-nav a.is-active {
  color: #ffffff;
  font-weight: 600;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  width: 100%;
}
.site-nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  margin: 0 auto;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--charcoal);
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--navy-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn-sm {
  padding: 10px 16px;
  font-size: 15px;
}

.btn-hero {
  padding: 14px 28px;
  font-size: 17px;
}

.btn-submit .btn-loading { display: none; }
.btn-submit.is-loading .btn-text { display: none; }
.btn-submit.is-loading .btn-loading { display: inline; }

/* ===== Hero Section (Template style) ===== */
.hero {
  position: relative;
  padding: 110px 0 130px;
  min-height: 520px;
  display: flex;
  align-items: center;
  margin-top: 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(21, 41, 66, 0.98) 0%, rgba(30, 58, 95, 0.92) 55%, rgba(21, 41, 66, 0.9) 100%),
    url("../assets/jdt-backdrop.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 320px at 85% 10%, rgba(255,255,255,0.06), transparent 60%),
              radial-gradient(900px 280px at 15% 90%, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.45);
  font-size: 14px;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.95);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(44px, 5.6vw, 68px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-tagline {
  margin: 0 auto 28px;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 46ch;
  line-height: 1.7;
}

.btn-hero {
  background: var(--white);
  color: var(--navy);
  padding: 16px 32px;
  font-size: 17px;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-dark);
  transform: translateY(-2px) scale(1.02);
}
.btn-hero:active {
  transform: translateY(0) scale(0.99);
}

/* ===== Scroll Reveal (fade/slide) + staggered children ===== */
[data-reveal] {
  opacity: 1;
  transform: none;
}
[data-reveal] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms var(--transition), transform 420ms var(--transition);
}
[data-reveal].is-revealed > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
[data-reveal].is-revealed > *:nth-child(2) { transition-delay: 70ms; opacity: 1; transform: translateY(0); }
[data-reveal].is-revealed > *:nth-child(3) { transition-delay: 140ms; opacity: 1; transform: translateY(0); }
[data-reveal].is-revealed > *:nth-child(4) { transition-delay: 210ms; opacity: 1; transform: translateY(0); }
[data-reveal].is-revealed > *:nth-child(5) { transition-delay: 280ms; opacity: 1; transform: translateY(0); }
[data-reveal].is-revealed > *:nth-child(6) { transition-delay: 350ms; opacity: 1; transform: translateY(0); }
[data-reveal].is-revealed > *:nth-child(7) { transition-delay: 420ms; opacity: 1; transform: translateY(0); }
[data-reveal].is-revealed > *:nth-child(n+8) { transition-delay: 490ms; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] > *,
  [data-reveal].is-revealed > * { transition-duration: 0.01ms; transition-delay: 0ms; }
}

/* ===== Buttons: glow + focus ring ===== */
.btn:hover { box-shadow: 0 8px 22px rgba(30, 58, 95, 0.25); }
.btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}
.btn-hero:focus-visible {
  outline-color: var(--white);
  outline-offset: 3px;
}

/* ===== Sections (White backdrop) ===== */
.section {
  padding: var(--section-spacing) 0;
  background: var(--white);
}

.section-alt {
  background: linear-gradient(180deg, #fafbfd 0%, #f5f7fa 100%);
}

.section-head {
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 18px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: rgba(30, 58, 95, 0.25);
  border-radius: 999px;
}

.section-head p {
  margin: 0;
  font-size: 18px;
  color: var(--gray);
  max-width: 65ch;
  line-height: 1.7;
}

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  max-width: 520px;
  margin: 0 auto;
}

.about-content h2 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
}

.about-content p {
  margin: 0 0 16px;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.7;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-abstract {
  height: 240px;
  background: linear-gradient(135deg, var(--gray-bg) 0%, rgba(30, 58, 95, 0.06) 100%);
  border-radius: var(--radius);
}

.about-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  max-height: clamp(220px, 40vh, 420px);
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.about-image[src$=".svg"] {
  object-fit: contain;
}

/* ===== Vision, Mission & Values ===== */
.vm-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vm-cards-wide {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Vision, Mission, Values: Vision & Mission in row 1; Values full-width below */
.vm-cards:has(.vm-card-values) {
  grid-template-columns: repeat(2, 1fr);
}

.vm-card-values {
  grid-column: 1 / -1;
  text-align: center;
  padding: 28px 40px 32px;
  max-width: 100%;
}

.vm-card.vm-card-values h3 {
  text-align: center;
}

.vm-card.vm-card-values p {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.7;
  font-size: 17px;
}

.vm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.vm-card:hover,
.vm-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
  background: #f9fbff;
}

.vm-card:active {
  transform: translateY(-1px) scale(0.99);
}
.vm-card:focus-within {
  outline: 2px solid var(--navy-light);
  outline-offset: 2px;
}
.vm-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.vm-card p {
  margin: 0;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.7;
}

/* Values card: center text (must override .vm-card p) */
article.vm-card.vm-card-values {
  text-align: center;
}
article.vm-card.vm-card-values h3,
article.vm-card.vm-card-values p {
  text-align: center !important;
}

/* ===== IT Hiring Strength ===== */
.strength-list {
  margin: 0;
  padding-left: 24px;
  color: var(--charcoal);
  line-height: 2;
  font-size: 17px;
}

.strength-list li {
  margin-bottom: 8px;
}

/* ===== Why Choose JDT ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color var(--transition);
  pointer-events: none;
}

.why-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(30, 58, 95, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.why-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
  background: #f9fbff;
}

.why-card:hover::after,
.why-card:focus-within::after {
  border-color: rgba(30, 58, 95, 0.35);
}

.why-card:active {
  transform: translateY(-1px) scale(0.99);
}

.why-card p {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
}

/* ===== Specialized Solutions ===== */
.specialized-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.spec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.spec-card:hover,
.spec-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
  background: #f9fbff;
}

.spec-card:active {
  transform: translateY(-1px) scale(0.99);
}

.spec-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.spec-card p {
  margin: 0;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.7;
}

/* ===== Clients ===== */
.logo-carousel {
  position: relative;
  overflow: hidden;
  padding: 6px 0 10px;
}

.logo-track {
  display: flex;
  gap: 0;
  transition: transform 420ms var(--transition);
  will-change: transform;
}

.logo-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 6px 2px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  min-height: 140px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 700;
  font-size: 16px;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.logo-item:hover,
.logo-item:focus-within {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
  background: #f9fbff;
}

 .logo-item .logo-label {
   display: inline-block;
 }
 .logo-item.has-logo .logo-label {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
 }
 .logo-item .logo-img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms var(--transition);
 }
 .logo-item:hover .logo-img,
 .logo-item:focus-within .logo-img {
  transform: translateY(-2px);
 }


.logo-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(30, 58, 95, 0.35);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.logo-dot.is-active {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.2);
}
.logo-dot:focus-visible {
  outline: 2px solid rgba(30, 58, 95, 0.45);
  outline-offset: 3px;
}
/* ===== Leadership ===== */
.leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.leader-photo-main {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: block;
}

.leader-content {
  max-width: 520px;
}

.leader-name {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

.leader-role-main {
  margin: 0;
  font-size: 17px;
  color: var(--gray);
}

.leadership-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 16px;
}

.leader-card-side {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.leader-photo-side {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: block;
}

/* Shift Deepak's photo right so left grey background is cropped out */
.leader-photo-crop-right {
  object-position: 75% 50%;
}

/* Lighten Shweta's photo background toward white to match other team photos */
.leader-photo-light-bg {
  filter: brightness(1.35) contrast(1.12) saturate(0.88);
  background: #fff;
}

.leader-card-center {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 12px auto 0;
}
/* ===== Contact ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.contact-item a {
  color: var(--navy);
  font-weight: 500;
}

.contact-item address {
  margin: 0;
  font-style: normal;
  color: var(--charcoal);
}

.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 20px;
}

.field-wrap label span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition);
}

input:focus,
textarea:focus {
  border-color: var(--navy);
}
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

input.input-error,
textarea.input-error {
  border-color: #dc2626;
}

.field-error {
  margin: 6px 0 0;
  font-size: 14px;
  color: #dc2626;
  min-height: 1.2em;
}

.form-note {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--gray);
}

/* ===== Toast ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}

.toast {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: toast-in 0.3s ease;
}

.toast--success {
  background: #059669;
  color: var(--white);
}

.toast--error {
  background: #dc2626;
  color: var(--white);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Footer (Blue) ===== */
.site-footer {
  background: #152942;
  color: rgba(255, 255, 255, 0.92);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}

.footer-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.footer-desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.footer-text {
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-link {
  color: #ffffff;
  font-weight: 600;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-social {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  color: #ffffff;
}

.footer-social:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-copyright {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .specialized-cards {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leader-content {
    margin: 0 auto;
  }

  .leadership-layout {
    grid-template-columns: 1fr;
  }
  .leader-card-side,
  .leader-card-center {
    grid-template-columns: 130px 1fr;
  }
  .leader-photo-side {
    width: 120px;
    height: 120px;
  }
  .leader-card-center {
    max-width: 560px;
  }
}

@media (max-width: 980px) {
  :root {
    --section-spacing: 80px;
  }

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

  .about-visual {
    order: -1;
  }

  .about-abstract {
    height: 180px;
  }

  .about-image {
    max-height: clamp(160px, 36vh, 320px);
    object-position: 50% 40%;
  }

  .vm-cards {
    grid-template-columns: 1fr;
  }

  .vm-card-values {
    padding: 28px 24px 32px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    right: 24px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    width: min(320px, calc(100vw - 48px));
    box-shadow: var(--shadow-md);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 12px 16px;
  }

  .site-nav a:hover {
    background: var(--gray-bg);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

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