/* ═══════════════════════════════════════════════════════════
   EVONTA PHARMA — Main Stylesheet
   Version: 1.0  |  evonta.com.tr
═══════════════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLES ──────────────────────────────────── */
:root {
  --navy:      #0D2E5B;
  --navy-dark: #081e3d;
  --teal:      #1A6B72;
  --teal-light:#22888F;
  --light-bg:  #EAF4F5;
  --grey-bg:   #F5F7F8;
  --white:     #FFFFFF;
  --body-text: #2C3E50;
  --mid-grey:  #5A6E80;
  --border:    #D0DCE4;

  --font:      'Inter', system-ui, -apple-system, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(13,46,91,.10);
  --shadow-lg: 0 12px 48px rgba(13,46,91,.16);

  --nav-height: 72px;
  --transition: .28s ease;
}

/* ── 2. RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────── */
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.18; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.35; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--body-text); }

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6rem;
}
.section-tag.light { color: rgba(255,255,255,.65); }

.section-intro {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 640px;
  margin: .5rem auto 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: .5rem; }

h2.light, p.light { color: var(--white); }

/* ── 4. LAYOUT UTILITIES ───────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.mt-1 { margin-top: 1.5rem; }

section { padding: 6rem 0; }

/* Section backgrounds */
.section-white { background: var(--white); }
.section-light  { background: var(--grey-bg); }
.section-navy   { background: var(--navy); }

/* ── 5. BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,107,114,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: .6rem 1.4rem;
  font-size: .88rem;
  border-radius: var(--radius);
}
.btn-nav-cta:hover { background: var(--teal-light); }
.btn-full { width: 100%; }

/* ── 6. NAVIGATION ─────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }
.logo-text-fallback {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
  display: none;
  align-items: center;
  gap: .3rem;
}
.logo-text-fallback span { color: var(--teal); font-weight: 400; }

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-menu li { position: relative; }
.nav-menu a {
  display: block;
  padding: .5rem .9rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-menu a:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  color: var(--body-text);
  padding: .7rem 1.2rem;
  font-size: .87rem;
  border-radius: 0;
}
.dropdown a:hover { background: var(--light-bg); color: var(--teal); }
.dropdown li:first-child a { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown li:last-child  a { border-radius: 0 0 var(--radius) var(--radius); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
}
.lang-btn {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  padding: .2rem .35rem;
  border-radius: 4px;
  transition: all var(--transition);
}
.lang-btn.active,
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,.12); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #050f1f 0%, #0D2E5B 45%, #0d3d45 100%);
}
/* Animated geometric pattern overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26,107,114,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26,107,114,.15) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(13,46,91,.4) 0%, transparent 45%);
}
/* Grid lines effect */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,107,114,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,114,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(5,15,31,.6) 0%,
    rgba(13,46,91,.3) 60%,
    rgba(26,107,114,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 5rem;
  max-width: 760px;
}
.hero-tag {
  display: inline-block;
  background: rgba(26,107,114,.35);
  border: 1px solid rgba(26,107,114,.6);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 2.2rem;
  max-width: 640px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  animation: bounce 2.2s infinite;
}
.scroll-arrow {
  display: block;
  width: 10px; height: 10px;
  border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg) translateY(-2px);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── 8. PARTNER STRIP ──────────────────────────────────── */
#partners-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.partners-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1.6rem;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .6;
  filter: grayscale(1);
  transition: all var(--transition);
  min-height: 48px;
}
.partner-logo-item:hover { opacity: 1; filter: none; }
.partner-logo-item img { height: 40px; width: auto; max-width: 130px; object-fit: contain; }
.logo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.2;
}
.logo-fallback span { font-weight: 400; font-size: .78rem; }

/* ── 9. ABOUT ──────────────────────────────────────────── */
#about { padding: 7rem 0; }
.about-text h2 { color: var(--navy); margin-bottom: 1.2rem; }
.about-text p  { margin-bottom: 1rem; color: var(--mid-grey); }

/* CSS visual graphic for about section */
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.about-graphic {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.graphic-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--teal);
  animation: spin linear infinite;
}
.ring-1 {
  width: 100%; height: 100%;
  border-color: rgba(26,107,114,.2);
  animation-duration: 30s;
}
.ring-2 {
  width: 72%; height: 72%;
  border-color: rgba(26,107,114,.35);
  border-style: dashed;
  animation-duration: 20s;
  animation-direction: reverse;
}
.ring-3 {
  width: 44%; height: 44%;
  border-color: rgba(26,107,114,.55);
  animation-duration: 12s;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.graphic-center {
  position: relative;
  z-index: 2;
  background: var(--navy);
  border-radius: 50%;
  width: 130px; height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(26,107,114,.3);
}
.graphic-logo { max-width: 80px; max-height: 40px; object-fit: contain; }
.graphic-logo-text {
  font-size: .9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .1em;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}
.stat-item {
  background: var(--navy);
  padding: 1.2rem .75rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-lbl {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── 10. CAPABILITIES ──────────────────────────────────── */
#capabilities { padding: 7rem 0; }
.capability-block {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}
.capability-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cap-reverse { direction: rtl; }
.cap-reverse > * { direction: ltr; }

.cap-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .25rem;
}
.cap-icon span {
  font-size: .78rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: .05em;
}
.cap-content h3 { color: var(--navy); margin-bottom: .9rem; }
.cap-content p  { color: var(--mid-grey); margin-bottom: 1.2rem; }
.cap-list { padding-left: 0; }
.cap-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .92rem;
  color: var(--mid-grey);
  margin-bottom: .5rem;
}
.cap-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55rem;
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
}
.cap-image {
  width: 360px;
  height: 280px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
/* CSS-only capability visuals */
.cap-image-css {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cap-image-css::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
}
.cap-image-css::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  border-radius: var(--radius-lg);
}
/* Filtration: deep teal */
.cap-img-filtration {
  background: linear-gradient(135deg, #0a2744 0%, #1A6B72 100%);
  box-shadow: inset 0 0 60px rgba(26,107,114,.4);
}
.cap-img-filtration::before {
  background:
    radial-gradient(circle at 30% 40%, rgba(26,107,114,.5) 0%, transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(13,46,91,.6) 0%, transparent 45%);
}
/* Turnkey: navy-gold */
.cap-img-turnkey {
  background: linear-gradient(135deg, #081e3d 0%, #0D2E5B 60%, #1a3a5c 100%);
  box-shadow: inset 0 0 60px rgba(13,46,91,.5);
}
.cap-img-turnkey::before {
  background:
    radial-gradient(circle at 70% 30%, rgba(26,107,114,.4) 0%, transparent 50%),
    radial-gradient(circle at 20% 75%, rgba(26,107,114,.25) 0%, transparent 45%);
}
/* Distribution: teal-dark */
.cap-img-distribution {
  background: linear-gradient(135deg, #0d3d45 0%, #0D2E5B 100%);
  box-shadow: inset 0 0 60px rgba(26,107,114,.35);
}
.cap-img-distribution::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(26,107,114,.45) 0%, transparent 60%),
    radial-gradient(circle at 85% 15%, rgba(13,46,91,.5) 0%, transparent 40%);
}

/* ── CAPABILITY VISUAL CARDS ───────────────────────────── */
.cap-visual {
  width: 360px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border: 1px solid rgba(26,107,114,.3);
  box-shadow: 0 8px 32px rgba(13,46,91,.2);
}
.cap-visual-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}
/* Technology tags */
.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.cap-tags span {
  background: rgba(26,107,114,.18);
  border: 1px solid rgba(26,107,114,.35);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 500;
  padding: .35rem .8rem;
  border-radius: 50px;
}
/* Timeline */
.cap-timeline { display: flex; flex-direction: column; gap: .6rem; }
.cap-tl-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
}
.cap-tl-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
  color: var(--white);
}
/* Partner logos grid inside capability */
.cap-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.cap-partner-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.cap-partner-item img { max-height: 30px; max-width: 110px; object-fit: contain; }
.cap-partner-fallback {
  display: none;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-align: center;
}
/* Badge */
.cap-badge {
  margin-top: auto;
  background: rgba(26,107,114,.2);
  border: 1px solid rgba(26,107,114,.4);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 50px;
  text-align: center;
  letter-spacing: .04em;
}

/* ── 11. INDUSTRIES ────────────────────────────────────── */
#industries { padding: 7rem 0; }
#industries h2.light { margin-bottom: .5rem; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: all var(--transition);
}
.industry-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.industry-icon {
  width: 52px; height: 52px;
  margin-bottom: 1.3rem;
}
.industry-icon svg { width: 100%; height: 100%; }
.industry-card h3 { color: var(--white); margin-bottom: .8rem; }
.industry-card p  { color: rgba(255,255,255,.65); font-size: .92rem; }

/* ── 12. PARTNER CARDS ─────────────────────────────────── */
#partners { padding: 7rem 0; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.partner-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.partner-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--teal);
}
.partner-card-logo {
  background: var(--grey-bg);
  border-bottom: 1px solid var(--border);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.partner-card-logo img { max-height: 60px; max-width: 200px; object-fit: contain; }
.card-logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: .03em;
}
.partner-card-body { padding: 1.8rem; }
.partner-card-body h3 { color: var(--navy); margin-bottom: .8rem; font-size: 1.15rem; }
.partner-card-body p  { color: var(--mid-grey); font-size: .9rem; line-height: 1.65; margin-bottom: 1.2rem; }
.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.partner-tags li {
  background: var(--light-bg);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ── 13. WHY EVONTA ────────────────────────────────────── */
#why { padding: 7rem 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-num {
  font-size: .72rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: .12em;
  margin-bottom: .8rem;
  opacity: .7;
}
.why-card h3 { color: var(--navy); margin-bottom: .8rem; }
.why-card p  { color: var(--mid-grey); font-size: .92rem; }

/* ── 14. BRAND STORY ───────────────────────────────────── */
.section-brand { padding: 8rem 0; }
.brand-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.brand-logo-block { margin-bottom: 2rem; }
.brand-logo { max-height: 70px; margin: 0 auto; }
.brand-logo-text-fallback {
  display: none;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1.1;
}
.brand-inner .section-tag { margin-bottom: 1rem; }
.brand-inner h2 { margin-bottom: 2rem; }
.brand-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  text-align: left;
}
.brand-body strong { color: var(--white); }
.brand-quote {
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  border-left: 4px solid var(--teal);
  padding: 1.2rem 1.8rem;
  margin: 2.5rem 0;
  text-align: left;
  background: rgba(26,107,114,.15);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}

/* ── 15. CONTACT ───────────────────────────────────────── */
#contact { padding: 7rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-text h2 { color: var(--navy); margin-bottom: 1rem; }
.contact-text p  { color: var(--mid-grey); margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: .75rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
}
.contact-icon { font-size: 1rem; }
.contact-row a { color: var(--teal); font-weight: 500; }
.contact-row a:hover { color: var(--navy); }

/* Form */
.contact-form {
  background: var(--grey-bg);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--body-text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,107,114,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-notice {
  font-size: .85rem;
  margin-top: .75rem;
  min-height: 1.2rem;
  color: var(--teal);
  text-align: center;
}

/* ── 16. FOOTER ────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  padding: 5rem 0 0;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { max-height: 44px; margin-bottom: 1.2rem; }
.footer-logo-fallback {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a { font-size: .88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-lang { margin-top: 1.5rem; }
.footer-lang .lang-btn { color: rgba(255,255,255,.45); }
.footer-lang .lang-btn.active,
.footer-lang .lang-btn:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ── 17. REVEAL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay  { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }

/* ── 18. RESPONSIVE — TABLET (≤ 1024px) ────────────────── */
@media (max-width: 1024px) {
  .grid-2col           { grid-template-columns: 1fr; gap: 2.5rem; }
  .capability-block    { grid-template-columns: auto 1fr; }
  .cap-image           { grid-column: 1 / -1; width: 100%; }
  .cap-image img       { height: 240px; }
  .img-placeholder-cap { width: 100%; }
  .cap-reverse         { direction: ltr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .industries-grid     { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── 19. RESPONSIVE — MOBILE (≤ 768px) ─────────────────── */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  section { padding: 4.5rem 0; }

  /* Nav */
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: .25rem;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: .8rem 1rem; }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius);
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: .25rem;
  }
  .dropdown a { color: rgba(255,255,255,.75); }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }

  /* Hero */
  .hero-content { max-width: 100%; padding-top: calc(var(--nav-height) + 3rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  /* Partners */
  .partners-logos { gap: 1.5rem; }

  /* About stats */
  .about-stats { position: static; margin-top: 1.5rem; border-radius: var(--radius); background: var(--navy); }
  .stat-item { background: transparent; }

  /* Capabilities */
  .capability-block { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Partners / Why */
  .partners-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Contact form */
  .contact-form { padding: 1.8rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 1rem; }
  .brand-quote { font-size: 1rem; padding: 1rem 1.2rem; }
}

/* ── ADDITIONS: LinkedIn nav, partner name links, product showcase ── */

/* LinkedIn icon in nav */
.nav-linkedin {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  padding: .25rem;
}
.nav-linkedin:hover { color: var(--white); }
.scrolled .nav-linkedin { color: var(--navy); opacity: .7; }
.scrolled .nav-linkedin:hover { color: var(--teal); opacity: 1; }

/* Partner card name links */
.partner-name-link {
  color: var(--navy);
  transition: color var(--transition);
  font-size: inherit;
  font-weight: 600;
}
.partner-name-link:hover { color: var(--teal); }
.partner-card-logo a { display: block; }

/* Footer LinkedIn */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  font-size: .9rem;
}
.footer-linkedin:hover { color: var(--white); }

/* ── PRODUCT SHOWCASE ──────────────────────────────────── */
#products { padding: 7rem 0; }

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.prod-cat-header {
  background: var(--navy);
  padding: 1.5rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
  min-height: 110px;
}
.prod-cat-header img {
  max-height: 34px;
  max-width: 120px;
  object-fit: contain;
  background: var(--white);
  padding: 5px 10px;
  border-radius: 6px;
}
.prod-cat-logo-fallback {
  display: none;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.prod-cat-name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.prod-items {
  flex: 1;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.prod-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.prod-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.prod-desc {
  font-size: .77rem;
  color: var(--mid-grey);
  line-height: 1.4;
}

.prod-cat-link {
  display: block;
  padding: .9rem 1.5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition);
}
.prod-cat-link:hover {
  background: var(--light-bg);
  color: var(--navy);
}

/* Responsive product showcase */
@media (max-width: 1100px) {
  .product-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-showcase-grid { grid-template-columns: 1fr; }
  .nav-linkedin { display: none; }
}
