/* ============================================================
   STRENGTHS.NO — Premium Nordic B2B Redesign
   Design DNA locked. All values trace back to Build Brief.
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   DESIGN DNA — CSS Variables (single source of truth)
   ============================================================ */
:root {
  /* Colors */
  --color-bg:          #FAFAF8;
  --color-bg-alt:      #F0EFEB;
  --color-surface:     #FFFFFF;
  --color-dark:        #1C2037;
  --color-dark-alt:    #161829;
  --color-text:        #1C2037;
  --color-text-muted:  #6B7280;
  --color-heading:     #1C2037;
  --color-primary:     #FD6E22;
  --color-primary-dark:#E55A0F;
  --color-accent:      #00A3C3;
  --color-accent-light:#E6F6FA;
  --color-cta:         #FD6E22;
  --color-cta-text:    #FFFFFF;
  --color-border:      #E5E4DF;
  --color-white:       #FFFFFF;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Type scale */
  --text-hero:   clamp(44px, 6vw, 80px);
  --text-h1:     clamp(34px, 4.5vw, 60px);
  --text-h2:     clamp(26px, 3.5vw, 44px);
  --text-h3:     clamp(18px, 2.5vw, 26px);
  --text-body:   18px;
  --text-small:  15px;
  --text-label:  13px;

  /* Layout */
  --max-width:        1200px;
  --section-pad:      120px 0;
  --section-pad-sm:   80px 0;
  --radius-card:      12px;
  --radius-btn:       8px;
  --radius-sm:        6px;

  /* Transitions */
  --transition-base:  0.3s ease;
  --transition-slow:  0.6s ease;

  /* Shadows */
  --shadow-card:   0 2px 16px rgba(28, 32, 55, 0.08);
  --shadow-hover:  0 8px 32px rgba(28, 32, 55, 0.14);
  --shadow-btn:    0 4px 16px rgba(253, 110, 34, 0.32);
}

/* ============================================================
   ASSET STYLES — logos, photos, hero blur
   ============================================================ */

/* Nav logo images */
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__logo-img--white { display: block; }
.nav__logo-img--dark  { display: none; }

.nav.scrolled .nav__logo-img--white { display: none; }
.nav.scrolled .nav__logo-img--dark  { display: block; }

/* Trust bar logo images */
.trust-bar__logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all var(--transition-base);
}
.trust-bar__logo-img:hover { opacity: 1; filter: grayscale(0); }

/* Partner card logos (on dark bg — show in white/original) */
.partner-card__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-heading);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

.hero-headline {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-size: var(--text-h2);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: var(--section-pad); }
section.narrow { padding: var(--section-pad-sm); }

.bg-white    { background-color: var(--color-surface); }
.bg-alt      { background-color: var(--color-bg-alt); }
.bg-dark     { background-color: var(--color-dark); }
.bg-dark-alt { background-color: var(--color-dark-alt); }

.text-center { text-align: center; }
.text-white  { color: var(--color-white); }
.text-muted  { color: var(--color-text-muted); }

/* Fade-up animation prep */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-cta-text);
  border-color: var(--color-cta);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(253, 110, 34, 0.4);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background-color: transparent;
  color: var(--color-dark);
  border-color: var(--color-border);
}
.btn-ghost-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 14px;
  padding: 10px 20px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background-color: var(--color-surface);
  padding: 16px 0;
  box-shadow: 0 1px 20px rgba(28, 32, 55, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-white);
  transition: color var(--transition-base);
  flex-shrink: 0;
}

.nav.scrolled .nav__logo { color: var(--color-dark); }

.nav__logo span { color: var(--color-primary); }

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

.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.nav__link:hover { color: var(--color-white); background: rgba(255,255,255,0.1); }

.nav.scrolled .nav__link { color: var(--color-text-muted); }
.nav.scrolled .nav__link:hover { color: var(--color-text); background: var(--color-bg-alt); }

.nav__cta {
  font-size: 14px;
  padding: 11px 22px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav.scrolled .nav__hamburger span { background-color: var(--color-dark); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
}

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 32px;
  color: var(--color-white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%; /* show silhouette figure at bottom of portrait image */
  display: block;
  filter: blur(2px);
  transform: scale(1.05); /* compensate blur edge bleed */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 32, 55, 0.78) 0%,
    rgba(28, 32, 55, 0.50) 60%,
    rgba(28, 32, 55, 0.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 160px 40px 100px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 110, 34, 0.15);
  border: 1px solid rgba(253, 110, 34, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.hero__headline {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-white);
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: normal;
  color: var(--color-primary);
}

.hero__sub {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

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

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 48px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__label {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 32px;
  background: var(--color-border);
  flex-shrink: 0;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.trust-bar__logo:hover { opacity: 1; }

.trust-bar__logo.gallup { color: #002857; opacity: 0.7; font-size: 20px; }
.trust-bar__logo.e2grow { color: var(--color-accent); opacity: 0.7; }

.trust-bar__stat {
  margin-left: auto;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-style: italic;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  background: var(--color-dark);
  padding: var(--section-pad);
}

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

.stat-card {
  padding: 48px 40px;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.stat-card:last-child { border-right: none; }

.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.stat-card__suffix {
  color: var(--color-primary);
}

.stat-card__label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

.stat-card__source {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  font-style: italic;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--color-bg);
}

.services__header {
  text-align: center;
  margin-bottom: 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  border: 1px solid var(--color-border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  transition: background var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: rgba(253, 110, 34, 0.1);
}

.service-card__title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-heading);
}

.service-card__desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-card__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base);
}

.service-card:hover .service-card__link { gap: 10px; }

/* ============================================================
   WHY STRENGTHS (Statistics)
   ============================================================ */
.why {
  background: var(--color-bg-alt);
}

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

.why__text { }

.why__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why__stat {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}

.why__stat:last-child { border-bottom: none; }

.why__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 90px;
  flex-shrink: 0;
}

.why__stat-text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-top: 4px;
}

.why__stat-text strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--color-bg);
}

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

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-card);
  background: var(--color-bg-alt);
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.about__image-placeholder span { font-size: 48px; opacity: 0.3; }

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.about__badge-number {
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.about__badge-label { font-size: 13px; opacity: 0.85; }

.about__text {
  padding-left: 20px;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.about__credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.about__credential::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ============================================================
   CLIFTONSTRENGTHS INTRO
   ============================================================ */
.clifton {
  background: var(--color-bg);
}

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

.clifton__image-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  flex-shrink: 0;
}

.clifton__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.clifton__lead {
  font-size: 19px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 20px;
  margin-top: 8px;
}

.clifton__body {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.clifton__body strong {
  color: var(--color-primary);
  font-weight: 700;
}

.clifton__partner {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  line-height: 1.6;
}

.clifton__partner strong {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .clifton__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--color-bg-alt);
}

.team__header {
  text-align: center;
  margin-bottom: 48px;
}

.team__region-label {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  margin-top: 48px;
}

.team__region-label:first-of-type { margin-top: 0; }

.team__grid {
  display: grid;
  gap: 28px;
}

.team__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.35s ease;
}

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

.team-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
  display: block;
}

.team-card__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  opacity: 0.4;
}

.team-card__body {
  padding: 28px;
}

.team-card__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__title {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card__country {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--transition-base);
}

.team-card__linkedin:hover { gap: 10px; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  background: var(--color-dark);
  padding: var(--section-pad);
}

.partners__header {
  text-align: center;
  margin-bottom: 64px;
}

.partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  text-align: center;
  transition: all var(--transition-base);
}

.partner-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}

.partner-card__name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.partner-card__name.gallup { color: #FFFFFF; }
.partner-card__name.e2grow { color: var(--color-accent); }

.partner-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--color-bg);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 36px;
  border: 1px solid var(--color-border);
  position: relative;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.testimonial-card__quote-mark {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.7;
  color: var(--color-primary);
  opacity: 0.25;
  margin-bottom: 20px;
  display: block;
}

.testimonial-card__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.testimonial-card__meta {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================================
   BLOG PREVIEW + NEWSLETTER
   ============================================================ */
.blog {
  background: var(--color-bg-alt);
}

.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
}

.blog-card__image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  opacity: 0.4;
}

.blog-card__body { padding: 24px; }

.blog-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--color-heading);
}

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

.blog-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base);
}

.blog-card:hover .blog-card__link { gap: 10px; }

/* Newsletter */
.newsletter {
  background: var(--color-dark);
  border-radius: var(--radius-card);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter__title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.newsletter__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.newsletter__form {
  display: flex;
  gap: 12px;
}

.newsletter__input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-btn);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-white);
  outline: none;
  transition: border-color var(--transition-base);
}

.newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__input:focus { border-color: rgba(255,255,255,0.4); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--color-dark);
  text-align: center;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(253, 110, 34, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__label {
  color: var(--color-primary);
  margin-bottom: 20px;
}

.cta-section__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__guarantee {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark-alt);
  padding: 80px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__logo span { color: var(--color-primary); }

.footer__tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-base);
  text-decoration: none;
}

.footer__social:hover {
  background: rgba(253, 110, 34, 0.15);
  border-color: rgba(253, 110, 34, 0.3);
  color: var(--color-primary);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

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

.footer__link {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-base);
}

.footer__link:hover { color: var(--color-white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-base);
}

.footer__legal a:hover { color: rgba(255,255,255,0.6); }

.footer__credit {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: var(--text-small);
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

.footer__credit-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: opacity 0.25s, transform 0.25s;
  padding-right: 1.1em;
}

.footer__credit-logo:hover { opacity: 0.85; transform: translateY(-1px); }

.footer__credit-dot { color: var(--color-accent); }

.footer__credit-spark {
  position: absolute;
  right: 0;
  bottom: 0.05em;
  width: 0.85em;
  height: 0.85em;
  color: var(--color-accent);
  opacity: 0.9;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav__inner { padding: 0 28px; }
  .hero__content { padding: 140px 28px 80px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-card:nth-child(2) { border-right: none; }

  .why__inner { gap: 48px; }
  .about__inner { gap: 48px; }
  .about__text { padding-left: 0; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px 0;
    --section-pad-sm: 60px 0;
  }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .services__grid { grid-template-columns: 1fr; }
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__inner { grid-template-columns: 1fr; }
  .about__badge { bottom: -10px; right: 0; }
  .team__grid--three { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .partners__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
  .newsletter__form { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; }
  .trust-bar__inner { justify-content: center; }
  .trust-bar__stat { margin-left: 0; }
  .blog__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .hero__content { padding: 120px 20px 60px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .newsletter { padding: 32px 24px; }
  .cta-section { padding: 100px 0; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1 !important; transform: none !important; }
  .hero__scroll { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
