/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
  --green-950: #071a10;
  --green-900: #0d2b1a;
  --green-800: #133d25;
  --green-700: #1a5234;
  --green-600: #226b44;
  --green-500: #2d8a58;
  --green-400: #3aad6f;
  --green-300: #5cc98a;
  --green-200: #90ddb0;
  --green-100: #c5f0d8;
  --green-50:  #edfaf3;

  --earth-700: #7a5c3a;
  --earth-500: #b8895a;
  --earth-300: #d4b896;
  --earth-100: #f2e8da;

  --gold: #d4930a;
  --gold-light: #f0b92e;

  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-50:  #f4f4f2;
  --gray-100: #e8e8e4;
  --gray-200: #d0d0c8;
  --gray-400: #9a9a90;
  --gray-600: #5c5c56;
  --gray-800: #2a2a26;
  --gray-900: #1a1a16;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
}

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

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

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-500);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,138,88,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
}

.btn--submit svg {
  width: 18px;
  height: 18px;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.65;
}

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

.section-header .section-sub {
  margin: 0 auto;
}

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.85; }

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
  transition: color var(--transition);
}

.logo-text sup {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: super;
  opacity: 0.7;
}

#navbar.scrolled .logo-text { color: var(--gray-900); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

#navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

#navbar.scrolled .nav-links a:hover {
  color: var(--gray-900);
  background: var(--gray-50);
}

.nav-cta {
  background: var(--green-500) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--green-400) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45,138,88,.3);
}

.nav-portal {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  font-weight: 600 !important;
  margin-left: 4px;
  border-radius: var(--radius-sm) !important;
}

.nav-portal:hover {
  background: rgba(255,255,255,.2) !important;
}

#navbar.scrolled .nav-portal {
  background: var(--gray-100) !important;
  color: var(--gray-800) !important;
  border-color: var(--gray-200) !important;
}

#navbar.scrolled .nav-portal:hover {
  background: var(--gray-200) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

#navbar.scrolled .hamburger span { background: var(--gray-800); }

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 12px 24px 24px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 12px 8px;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child { border-bottom: none; color: var(--green-500); font-weight: 600; }

/* ===========================
   HERO
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  background: linear-gradient(135deg, #050f09 0%, var(--green-950) 50%, #0a1f14 100%);
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45,138,88,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(212,147,10,.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--green-200);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green-300);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-title em {
  font-style: normal;
  color: var(--green-300);
  position: relative;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 72px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  backdrop-filter: blur(12px);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-unit {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-300);
}

.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.12);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
  transition: color var(--transition);
}

.hero-scroll:hover { color: rgba(255,255,255,.9); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   TRUSTED BY
   =========================== */
#trusted {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 40px 0;
  overflow: hidden;
}

.trusted-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.trusted-img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--transition);
}

.trusted-img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ===========================
   SERVICES
   =========================== */
#services {
  padding: 120px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 480px));
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--green-300));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  background: linear-gradient(145deg, var(--green-950) 0%, var(--green-800) 100%);
  border-color: var(--green-700);
}

.service-card--featured .service-tag { color: var(--green-300); }
.service-card--featured .service-name { color: var(--white); }
.service-card--featured .service-desc { color: rgba(255,255,255,.65); }
.service-card--featured .service-list li { color: rgba(255,255,255,.75); }
.service-card--featured .service-list li::before { background: var(--green-400); }
.service-card--featured .service-icon { color: var(--green-300); background: rgba(255,255,255,.06); }
.service-card--featured .service-link { color: var(--green-300); }
.service-card--featured .service-link:hover { color: var(--green-200); }
.service-card--featured::before {
  background: linear-gradient(90deg, var(--green-300), var(--gold-light));
  opacity: 1;
}

.service-img-wrap {
  margin: -40px -36px 28px;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-img-wrap--featured {
  height: 220px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img {
  transform: scale(1.04);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green-600);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 10px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.service-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-600);
  transition: all var(--transition);
  margin-top: auto;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-link:hover { color: var(--green-500); }
.service-link:hover svg { transform: translateX(4px); }

/* ===========================
   VALUES
   =========================== */
#values {
  padding: 120px 0;
  position: relative;
  background: var(--gray-900);
  overflow: hidden;
}

.values-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(45,138,88,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(212,147,10,.07) 0%, transparent 50%);
}

#values .container { position: relative; z-index: 1; }

#values .section-tag { color: var(--green-300); }
#values .section-title { color: var(--white); }
#values .section-sub { color: rgba(255,255,255,.6); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.value-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(45,138,88,.3);
  transform: translateY(-4px);
}

.value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-300);
  margin-bottom: 20px;
}

.value-icon svg {
  width: 36px;
  height: 36px;
}

.value-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.value-num span {
  font-size: 1.6rem;
  color: var(--green-300);
}

.value-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ===========================
   WHY PRENTEN
   =========================== */
#why {
  padding: 120px 0;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-title {
  margin-top: 8px;
}

.why-text > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.why-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

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

.why-check svg {
  width: 13px;
  height: 13px;
  color: var(--white);
}

.why-point strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}

.why-point span {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-photo-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wc-stat {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
}

.wc-stat em {
  font-style: normal;
  color: var(--green-400);
  margin: 0 6px;
}

.wc-tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ===========================
   CAPABILITIES
   =========================== */
#capabilities {
  padding: 120px 0;
  background: var(--white);
}

.caps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.caps-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 24px;
}

.caps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.caps-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: default;
}

.caps-list li:hover {
  background: var(--green-50);
  color: var(--green-700);
  transform: translateX(4px);
}

.caps-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  flex-shrink: 0;
}

.caps-divider {
  width: 1px;
  background: var(--gray-100);
  align-self: stretch;
  margin-top: 42px;
}

.caps-cta {
  display: flex;
  align-items: center;
}

.caps-cta-inner {
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
}

.caps-cta-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.caps-cta-inner p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ===========================
   TEAM
   =========================== */
#team {
  padding: 120px 0;
  background: var(--gray-50);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card--offset:nth-child(5) { grid-column: 2; }
.team-card--offset:nth-child(6) { grid-column: 3; }

.team-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: all var(--transition);
  position: relative;
}

.team-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gray-100);
  transition: border-color var(--transition);
}

.team-card:hover .team-avatar {
  border-color: var(--green-200);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.team-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-600);
}

.team-div {
  font-size: 12px;
  color: var(--gray-400);
}

.team-li {
  margin-top: 16px;
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all var(--transition);
}

.team-li svg { width: 16px; height: 16px; }

.team-li:hover:not(.team-li--inactive) {
  background: #0a66c2;
  color: var(--white);
}

.team-li--inactive {
  opacity: 0.3;
  cursor: default;
}

/* ===========================
   CONTACT
   =========================== */
#contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-left > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--transition);
}

.contact-social svg {
  width: 20px;
  height: 20px;
  color: #0a66c2;
}

.contact-social:hover { color: #0a66c2; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235c5c56'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,138,88,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
  color: var(--green-700);
  font-size: 15px;
  font-weight: 600;
}

.form-success svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-500);
  flex-shrink: 0;
}

.form-success.show { display: flex; }

/* ===========================
   FOOTER
   =========================== */
#footer {
  background: var(--gray-900);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 36px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}

.footer-social svg { width: 18px; height: 18px; }
.footer-social:hover { background: #0a66c2; color: var(--white); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 480px)); justify-content: center; }
  .service-card--featured { grid-column: auto; }
  .service-card--featured .service-list { columns: 2; }
  .service-card--featured .service-img-wrap { margin: -40px -36px 28px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .caps-grid { grid-template-columns: 1fr 1fr; }
  .caps-divider { display: none; }
  .caps-cta { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { flex-direction: column; }

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

  .why-grid { grid-template-columns: 1fr; }
  .why-photo { height: 280px; }
  .why-photo-badge { flex-direction: column; align-items: flex-start; gap: 8px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .caps-grid { grid-template-columns: 1fr; }
  .caps-cta { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
