/* ═══════════════════════════════════════
   ISOC Ecuador · isoc.org.ec
   Stylesheet v2.0
   ═══════════════════════════════════════ */

:root {
  --navy:       #042C53;
  --navy-mid:   #0C447C;
  --blue:       #185FA5;
  --blue-mid:   #378ADD;
  --blue-lt:    #B5D4F4;
  --blue-xs:    #E6F1FB;
  --teal:       #1D9E75;
  --teal-lt:    #E1F5EE;
  --teal-mid:   #5DCAA5;
  --purple:     #534AB7;
  --purple-lt:  #EEEDFE;
  --amber:      #854F0B;
  --amber-lt:   #FAEEDA;
  --coral:      #993C1D;
  --coral-lt:   #FAECE7;
  --gray:       #5F5E5A;
  --gray-lt:    #F1EFE8;
  --text:       #1a1a2e;
  --text-muted: #4a5568;
  --text-hint:  #8896a5;
  --border:     rgba(0,0,0,0.08);
  --surface:    #f8f9fc;
  --white:      #ffffff;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --shadow-sm:  0 1px 3px rgba(4,44,83,0.08);
  --shadow-md:  0 4px 16px rgba(4,44,83,0.12);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(4, 44, 83, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 44, 83, 1);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity var(--transition);
}
.logo-img:hover { opacity: 1; }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.1);
}
.nav-link.active {
  font-weight: 500;
}

.btn-nav {
  flex-shrink: 0;
  background: var(--teal);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-nav:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55,138,221,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,138,221,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(24,95,165,0.25);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(29,158,117,0.15);
  bottom: 0; left: 40%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(55,138,221,0.15);
  border: 1px solid rgba(55,138,221,0.3);
  color: var(--blue-lt);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-mid);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title em {
  color: var(--teal-mid);
  font-style: normal;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #15876a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,158,117,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: white;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(55,138,221,0.4);
}
.stat-card.stat-highlight {
  background: rgba(29,158,117,0.15);
  border-color: rgba(93,202,165,0.3);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card.stat-highlight .stat-num { color: var(--teal-mid); }

.stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTIONS ─── */
.section {
  padding: 90px 0;
}
.section--alt {
  background: var(--surface);
}
.section--dark {
  background: var(--navy);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  background: var(--blue-xs);
  padding: 4px 12px;
  border-radius: 100px;
}
.section-label--light {
  background: rgba(55,138,221,0.15);
  color: var(--blue-lt);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section--dark .section-title { color: white; }

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 44px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--blue);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-ghost:hover {
  background: var(--blue-xs);
  transform: translateY(-1px);
}

/* ─── PROJECTS ─── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.project-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-lt);
}

.project-card--featured {
  border-color: rgba(24,95,165,0.3);
  background: linear-gradient(135deg, #f0f7ff 0%, white 60%);
}

.project-card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.project-card-body {
  padding: 24px;
}

.project-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
}
.tag-blue   { background: var(--blue-xs); color: var(--blue); }
.tag-teal   { background: var(--teal-lt); color: #0F6E56; }
.tag-purple { background: var(--purple-lt); color: var(--purple); }
.tag-amber  { background: var(--amber-lt); color: var(--amber); }
.tag-new    { background: var(--teal-lt); color: #0F6E56; }
.tag-lac    { background: var(--gray-lt); color: var(--gray); }
.tag-green  { background: #1D9E75; color: white; }

.project-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.project-link {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  transition: color var(--transition);
}
.project-card:hover .project-link { color: var(--navy); }

.project-date {
  font-size: 12px;
  color: var(--text-hint);
}

/* ─── NEWS ─── */
.news-layout {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 20px;
  align-items: start;
}

.news-featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.news-featured-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.news-img-overlay {
  position: absolute;
  top: 16px; left: 16px;
}

.news-img-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}

.news-featured-body {
  padding: 24px;
}

.news-meta {
  font-size: 12px;
  color: var(--text-hint);
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 12px;
}

.news-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.news-link {
  font-size: 13.5px;
  color: var(--blue);
  font-weight: 500;
  transition: color var(--transition);
}
.news-link:hover { color: var(--navy); }

.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all var(--transition);
}
.news-item:hover {
  border-color: var(--blue-lt);
  box-shadow: var(--shadow-sm);
}

.news-item-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.tag-purple-sm { background: var(--purple-lt); color: var(--purple); }
.tag-teal-sm   { background: var(--teal-lt); color: #0F6E56; }
.tag-amber-sm  { background: var(--amber-lt); color: var(--amber); }
.tag-blue-sm   { background: var(--blue-xs); color: var(--blue); }

.news-item-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 7px;
}

.news-item-date {
  font-size: 11.5px;
  color: var(--text-hint);
}

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--blue-lt);
}

.team-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin: 0 auto 12px;
}
.av-blue   { background: var(--blue-xs); color: var(--blue); }
.av-teal   { background: var(--teal-lt); color: #0F6E56; }
.av-purple { background: var(--purple-lt); color: var(--purple); }
.av-amber  { background: var(--amber-lt); color: var(--amber); }
.av-coral  { background: var(--coral-lt); color: var(--coral); }
.av-gray   { background: var(--gray-lt); color: var(--gray); }

.team-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.team-role {
  font-size: 11.5px;
  color: var(--text-hint);
}

/* ─── PARTNERS ─── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all var(--transition);
}
.partner-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(55,138,221,0.4);
  transform: translateY(-2px);
}

.partner-logo-area {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-name {
  font-size: 13.5px;
  font-weight: 500;
  color: white;
  margin-bottom: 3px;
}

.partner-url {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
}

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, #0d7a5a 100%);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.social-link:hover {
  background: rgba(55,138,221,0.2);
  border-color: rgba(55,138,221,0.4);
  color: var(--blue-lt);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a,
.footer-links li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-links li a:hover { color: rgba(255,255,255,0.85); }

.footer-links--info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.48);
}
.footer-links--info li svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}
.footer-links--info li a {
  color: rgba(255,255,255,0.48);
}
.footer-links--info li a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ─── FAQ (quienes-somos) ─── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-q {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-a {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 4px;
  }
  .nav-links.open + .btn-nav {
    display: none;
  }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
}

/* ─── FADE-IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 120px 0 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55,138,221,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,138,221,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner {
  position: relative;
  max-width: 700px;
}
.page-hero .section-label {
  background: rgba(55,138,221,0.15);
  color: var(--blue-lt);
  margin-bottom: 16px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.page-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 580px;
  font-weight: 300;
}

/* ─── ABOUT LAYOUT ─── */
.about-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}
.about-stats-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  border-left: 3px solid var(--blue);
  transition: all var(--transition);
}
.about-stat:hover { transform: translateX(4px); }
.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── VALUES ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.value-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── TEAM BIO ─── */
.team-bio {
  font-size: 11.5px;
  color: var(--text-hint);
  margin-top: 6px;
  line-height: 1.5;
}

/* ─── PROJECTS PAGE ─── */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.project-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.project-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.project-full-header {
  padding: 24px 24px 0;
}
.project-full-body {
  padding: 16px 24px 24px;
}
.project-full-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.project-full-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.project-links-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── CONTACT FORM ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 7px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(55,138,221,0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
  height: fit-content;
}
.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border: none; margin: 0; padding: 0; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: rgba(55,138,221,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-lt);
}
.contact-info-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-info-value {
  font-size: 14px;
  color: white;
}
.contact-info-value a { color: var(--blue-lt); }
.contact-info-value a:hover { color: white; }

/* ─── DOCUMENTS PAGE ─── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
}
.doc-card:hover {
  border-color: var(--blue-lt);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.doc-icon {
  width: 44px; height: 44px;
  background: var(--blue-xs);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.doc-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.doc-meta {
  font-size: 12px;
  color: var(--text-hint);
  margin-top: auto;
}
.doc-link {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.doc-link:hover { color: var(--navy); }

/* ─── RESPONSIVE ADDITIONS ─── */
@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .projects-page-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
}

/* ─── NEWS NEWSLETTER BLOCK ─── */
.news-newsletter {
  margin-top: 56px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}
.newsletter-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.newsletter-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.newsletter-actions .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}
.newsletter-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}
