/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════════ */
:root {
  --green-primary: #759870;       /* rgb(117,152,112) — from screenshot */
  --green-accent:  #92c48e;       /* lighter green for highlights */
  --white:         #ffffff;
  --gray-bg:       #141414;       /* dark alternating sections */
  --gray-text:     rgba(255,255,255,0.5);
  --dark-bg:       #080808;       /* near-black main bg */
  --dark-surface:  #0d0d0d;       /* footer */
  --text-dark:     #ffffff;       /* inverted — white on dark */
  --text-muted:    rgba(255,255,255,0.48);
  --container:     1240px;
  --radius-btn:    50px;
  --py:            125px;
  --px:            50px;

  /* aliases so existing CSS still works with new names */
  --blue-primary:  var(--green-primary);
  --blue-accent:   var(--green-accent);
}


/* ═══════════════════════════════════════════════════════
   RESET
════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  background: var(--dark-bg);
  background-image: radial-gradient(ellipse 60% 20% at 50% 0%, rgba(117,152,112,.04) 0%, transparent 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }


/* ═══════════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════════════ */
.section {
  padding: var(--py) var(--px);
}
.inner {
  max-width: var(--container);
  margin-inline: auto;
}

/* Section accent label */
.label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.label__line {
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-accent));
  box-shadow: 0 0 10px rgba(146,196,142,.5);
}
.label__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-primary);
}


/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
   Heading font: Outfit (≈ Athena from screenshot)
   Body font:    Roboto (from screenshot)
════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6,
.h-xl, .h-lg, .h-md, .h-sm {
  font-family: 'Outfit', sans-serif;
}

.h-xl { font-size: clamp(40px, 5.5vw, 72px); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
.h-lg { font-size: clamp(32px, 4vw,  52px);  font-weight: 600; letter-spacing: -.02em; line-height: 1.15; }
.h-md { font-size: clamp(24px, 3vw,  38px);  font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.h-sm { font-size: clamp(17px, 2vw,  22px);  font-weight: 600; letter-spacing: -.01em; line-height: 1.3; }

.body-lg { font-size: 18px; color: var(--text-muted); line-height: 1.75; }
.body-md { font-size: 16px; color: var(--text-muted); line-height: 1.75; }
.body-sm { font-size: 14px; color: var(--text-muted); line-height: 1.65; }


/* ═══════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 30px;
  border-radius: var(--radius-btn);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}

.btn--auto { width: fit-content; }

.btn-accent         { background: linear-gradient(135deg, var(--green-primary), var(--green-accent)); color: #0a0a0a; box-shadow: 0 0 24px rgba(146,196,142,.22), 0 4px 16px rgba(0,0,0,.3); }
.btn-accent:hover   { background: linear-gradient(135deg, var(--green-accent), #a3d49f); transform: translateY(-1px); box-shadow: 0 0 36px rgba(146,196,142,.35), 0 8px 24px rgba(0,0,0,.4); }

.btn-primary        { background: var(--green-primary); color: var(--white); }
.btn-primary:hover  { background: #658560; transform: translateY(-1px); }

.btn-outline        { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn-outline:hover  { border-color: var(--green-primary); color: var(--green-primary); }

.btn-outline-dark   { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.22); }
.btn-outline-dark:hover { border-color: var(--green-primary); color: var(--green-primary); }


/* ═══════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto;
  width: 100vw;
  z-index: 100;
  padding: 25px var(--px);
  transition: padding .3s;
}

.header__bar {
  max-width: var(--container);
  margin-inline: auto;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,.55);
  border-radius: 999px;
  padding: 15px 15px 15px 30px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}

.header--scrolled .header__bar {
  background: rgba(5,5,5,.9);
}

.header__logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.header__logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__link {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  letter-spacing: -.01em;
  transition: color .2s;
}
.header__link:hover,
.header__link.is-active { color: var(--white); }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px var(--px) 0;
  background: var(--dark-bg);
}

.hero__bg {
  position: absolute;
  inset: -20%;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  filter: brightness(.22);
  z-index: 0;
  will-change: transform;
  transform-origin: center top;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 75% 50%, rgba(117,152,112,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 15% 85%, rgba(117,152,112,.05) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero__body {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero__title {
  color: var(--white);
  animation: fadeUp .8s ease both;
}

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

.hero__sub {
  color: rgba(255,255,255,.52);
  font-size: 17px;
  line-height: 1.75;
  max-width: 460px;
  animation: fadeUp .8s .15s ease both;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  animation: fadeUp .8s .3s ease both;
}

/* Credential badge below buttons */
.hero__credential {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  width: fit-content;
  animation: fadeUp .8s .45s ease both;
}
.hero__credential-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(117,152,112,.4);
}
.hero__credential-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__credential-name { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.3; }
.hero__credential-role { font-size: 12px; color: var(--text-muted); line-height: 1.3; }

/* Right column — photo */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fadeUp .8s .2s ease both;
}

.hero__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__photo-blob {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,152,112,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(117,152,112,.2);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Floating stat cards */
.hero__stat {
  position: absolute;
  background: rgba(12,12,12,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(117,152,112,.25);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.hero__stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.hero__stat-lbl {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}
.hero__stat--tl { top: 28px;    left: -24px; }
.hero__stat--br { bottom: 40px; right: -24px; }

/* Authority strip */
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logos-strip {
  margin-top: 64px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logos-strip__row {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  flex-wrap: nowrap;
}
.logos-strip__row:hover { animation-play-state: paused; }
.logos-strip__item {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.logos-strip__sep {
  flex-shrink: 0;
  color: var(--green-primary);
  font-size: 14px;
  opacity: .6;
}


/* ═══════════════════════════════════════════════════════
   FOR PROFESSIONALS (Services section)
════════════════════════════════════════════════════════ */
.services { background: var(--dark-bg); position: relative; overflow: hidden; }
.services::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 640px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(117,152,112,.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.services .inner { position: relative; z-index: 1; }

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

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

.services__intro .btn {
  margin-top: 8px;
}

.service-list { display: flex; flex-direction: column; }

.service-item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-item:first-child { border-top: 1px solid rgba(255,255,255,.08); }

.service-item__num  { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--green-primary); }
.service-item__name { font-size: 18px; font-weight: 500; font-family: 'Outfit', sans-serif; color: var(--white); }
.service-item__desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════
   FOR COMPANIES (Customized Services section)
════════════════════════════════════════════════════════ */
.customized { background: linear-gradient(155deg, #161816 0%, #141414 45%, #131313 100%); }

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

.customized__img {
  position: relative;
  padding-bottom: 56px;
  padding-right: 48px;
}

.co-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(117,152,112,.2);
}
.co-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.co-img--main {
  aspect-ratio: 3/4;
  width: 78%;
}

.co-img--overlap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  aspect-ratio: 3/4;
  border: 4px solid var(--gray-bg);
  box-shadow: 0 16px 48px rgba(0,0,0,.7);
  border-radius: 14px;
}
.co-img--overlap img { object-position: center top; }

.customized__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.feature-list__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
  margin-top: 8px;
}


/* ═══════════════════════════════════════════════════════
   V.I.V.A. METHOD (Approach section)
════════════════════════════════════════════════════════ */
.approach { background: var(--dark-bg); position: relative; overflow: hidden; }
.approach::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 580px;
  height: 460px;
  background: radial-gradient(ellipse, rgba(117,152,112,.045) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.approach .inner { position: relative; z-index: 1; }

.approach__intro {
  max-width: 580px;
  margin-bottom: 56px;
}
.approach__intro .h-lg    { margin-bottom: 12px; }
.approach__intro .body-lg { margin-top: 12px; }

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

.approach-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: linear-gradient(150deg, #141914 0%, #0e0e0e 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.approach-card:hover {
  border-color: rgba(117,152,112,.5);
  background: linear-gradient(150deg, #171e17 0%, #0f0f0f 100%);
  box-shadow: 0 8px 40px rgba(117,152,112,.14), inset 0 1px 0 rgba(146,196,142,.06);
}

.approach-card__num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: -.03em;
  line-height: 1;
}


/* ═══════════════════════════════════════════════════════
   ABOUT US
════════════════════════════════════════════════════════ */
.about { background: linear-gradient(140deg, #171917 0%, #141414 50%, #131313 100%); }

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

.about__content { display: flex; flex-direction: column; gap: 24px; }
.about .label__line { background: var(--green-accent); }
.about .label__text { color: var(--green-accent); }
.about .h-lg        { color: var(--white); }
.about__text        { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.75; }

.about__img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1a2a1a, #080808);
  border: 1px solid rgba(117,152,112,.2);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }


/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US — Key Numbers
════════════════════════════════════════════════════════ */
.why { background: var(--dark-bg); position: relative; overflow: hidden; }
.why::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(117,152,112,.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.why__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}
.why__right { display: flex; flex-direction: column; gap: 20px; }

.key-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
}

.key-number {
  background: #111111;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.key-number__val {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--green-primary);
  line-height: 1;
}
.key-number__lbl { font-size: 14px; color: var(--text-muted); }


/* ═══════════════════════════════════════════════════════
   OUR PROCESS — How It Works
════════════════════════════════════════════════════════ */
.process { background: linear-gradient(170deg, #151715 0%, #141414 100%); }

.process__intro {
  max-width: 560px;
  margin-bottom: 56px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
}

.process-step {
  background: #111111;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.process-step__num  { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-primary); }
.process-step__name { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--white); }
.process-step__desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }


/* ═══════════════════════════════════════════════════════
   OUR COMMITMENT
════════════════════════════════════════════════════════ */
.commitment {
  background: linear-gradient(160deg, #0f1a0f 0%, #0a100a 60%, #0d0d0d 100%);
  border-top: 1px solid rgba(117,152,112,.25);
  border-bottom: 1px solid rgba(117,152,112,.25);
  position: relative;
  overflow: hidden;
}
.commitment::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(117,152,112,.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.commitment__left { display: flex; flex-direction: column; gap: 24px; }
.commitment .label__line { background: var(--green-primary); }
.commitment .label__text { color: var(--green-primary); }
.commitment .h-lg         { color: var(--white); }
.commitment__text         { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.75; }

.commitment__values { display: flex; flex-direction: column; gap: 16px; }
.commitment-value {
  padding: 24px;
  background: linear-gradient(105deg, rgba(117,152,112,.10) 0%, rgba(117,152,112,.04) 60%, transparent 100%);
  border: 1px solid rgba(117,152,112,.22);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.commitment-value::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--green-accent), var(--green-primary));
  box-shadow: 0 0 12px rgba(146,196,142,.4);
}
.commitment-value__title { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.commitment-value__text  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.testimonials { background: var(--dark-bg); position: relative; overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(117,152,112,.045) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.testimonials .inner { position: relative; z-index: 1; }

.testimonials__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 56px;
}
.testimonials__head .body-lg { max-width: 560px; }

/* Scrolling columns */
@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.testimonials-columns {
  display: flex;
  gap: 24px;
  max-height: 660px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.testimonials-col {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonials-col__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: scrollUp linear infinite;
}
.testimonials-col__inner--1 { animation-duration: 22s; }
.testimonials-col__inner--2 { animation-duration: 28s; }
.testimonials-col__inner--3 { animation-duration: 24s; }

.testimonials-col:hover .testimonials-col__inner { animation-play-state: paused; }

.testimonial-card {
  background: linear-gradient(140deg, #141714 0%, #0e0e0e 100%);
  border-radius: 16px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.07);
}
.testimonial-card__stars { font-size: 14px; color: #c8a84b; letter-spacing: 2px; }
.testimonial-card__quote { font-size: 15px; line-height: 1.7; flex: 1; color: rgba(255,255,255,.72); }

.testimonial-card__author {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.testimonial-card__name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-card__role { font-size: 12px; color: var(--text-muted); }


/* ═══════════════════════════════════════════════════════
   BLOG POSTS
════════════════════════════════════════════════════════ */
.blog { background: var(--gray-bg); }

.blog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.blog__head .btn { flex-shrink: 0; }

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

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background: #111111;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, border-color .25s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.4); border-color: rgba(117,152,112,.3); }

.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.blog-card__img-inner {
  width: 100%;
  height: 100%;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card__img-inner { transform: scale(1.04); }

.blog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
}

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.blog-card__meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }

.blog-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--white);
  transition: color .2s;
}
.blog-card:hover .blog-card__title { color: var(--green-primary); }

.blog-card__author { font-size: 13px; color: var(--text-muted); font-weight: 500; }

.blog-card__arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-primary);
  margin-top: 6px;
}


/* ═══════════════════════════════════════════════════════
   CALL TO ACTION
════════════════════════════════════════════════════════ */
.cta { background: var(--dark-bg); position: relative; overflow: hidden; }

.cta__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  filter: grayscale(40%);
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(117,152,112,.18) 0%, transparent 65%);
  pointer-events: none;
}

.cta__body {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.cta .label         { align-items: center; }
.cta .label__line   { background: var(--green-accent); }
.cta .label__text   { color: var(--green-accent); }
.cta .h-lg          { color: var(--white); }
.cta__sub           { font-size: 18px; color: rgba(255,255,255,.5); line-height: 1.6; }
.cta__btns          { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }


/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-surface);
  padding: var(--py) var(--px);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner { max-width: var(--container); margin-inline: auto; }

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

.footer__brand   { display: flex; flex-direction: column; gap: 20px; }
.footer__logo-img { height: 44px; width: auto; max-width: 180px; display: block; object-fit: contain; align-self: flex-start; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.3); line-height: 1.7; max-width: 270px; }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__contact-link {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer__contact-link:hover { color: var(--green-primary); }

.footer__socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  transition: border-color .2s, color .2s;
}
.social-btn:hover { border-color: var(--green-primary); color: var(--green-primary); }
.social-btn svg   { width: 14px; height: 14px; }

.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link  { font-size: 14px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer__link:hover { color: var(--green-primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 13px;
  color: rgba(255,255,255,.2);
}


/* ═══════════════════════════════════════════════════════
   ANIMATIONS & MOTION
════════════════════════════════════════════════════════ */

/* ── Page load overlay ── */
#page-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 9999;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
#page-overlay.is-hidden { opacity: 0; }

/* ── Hero entrance ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ambient glow pulse ── */
.hero::after {
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); }
}

/* ── CTA glow pulse ── */
.cta::before {
  animation: ctaGlow 4s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.2); }
}

/* ── Commitment section subtle glow ── */
.commitment {
  position: relative;
  overflow: hidden;
}
.commitment::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,152,112,.08) 0%, transparent 70%);
  pointer-events: none;
  animation: glowDrift 8s ease-in-out infinite alternate;
}
@keyframes glowDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(60px, 40px); }
}

/* ── Label line reveal ── */
.label__line {
  transform-origin: left;
  transform: scaleX(1); /* default full — JS hides it via parent */
}

/* ── Approach card lift (enhanced in JS, CSS fallback) ── */
.approach-card { will-change: transform; }

/* ── Blog card lift ── */
.blog-card { will-change: transform; }

/* ── Key number shimmer on counter run ── */
.key-number__val {
  background: linear-gradient(90deg, var(--green-primary) 0%, #b8e0b4 45%, var(--green-accent) 75%, var(--green-primary) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: numberShimmer 4s linear infinite;
  filter: drop-shadow(0 0 20px rgba(146,196,142,.2));
}
@keyframes numberShimmer {
  0%   { background-position: 220% center; }
  100% { background-position: 0% center; }
}

/* ── Process step — green top border on hover ── */
.process-step {
  border-top: 3px solid transparent;
  transition: border-color .3s, padding-top .3s;
}
.process-step:hover {
  border-top-color: var(--green-primary);
}

/* ── Testimonial card hover ── */
.testimonial-card {
  transition: border-color .3s, box-shadow .3s;
}
.testimonial-card:hover {
  border-color: rgba(117,152,112,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

/* ── Commitment value hover ── */
.commitment-value {
  transition: background .3s, border-color .3s, transform .3s cubic-bezier(0.22,1,0.36,1);
}
.commitment-value:hover {
  background: rgba(117,152,112,.14);
  border-color: rgba(117,152,112,.35);
  transform: translateX(6px);
}

/* ── Feature list item hover ── */
.feature-list__item {
  transition: color .2s, padding-left .2s;
}
.feature-list__item:hover {
  color: rgba(255,255,255,.85);
  padding-left: 4px;
}
.feature-list__item:hover .feature-list__dot {
  background: var(--green-accent);
}

/* ── Footer social pulsing ring ── */
.social-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--green-primary);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity .3s, transform .3s;
}
.social-btn { position: relative; }
.social-btn:hover::after {
  opacity: 0.4;
  transform: scale(1.15);
}

/* ── Authority bar items ── */
.logos-strip__item:hover {
  color: rgba(255,255,255,.75);
}

/* ── Btn subtle scale on press ── */
.btn:active { transform: scale(0.97); }


/* ═══════════════════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════════════════════ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(117,152,112,.25);
  z-index: 9999;
  box-sizing: border-box;
  padding: 20px 40px;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin-inline: auto;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}
.cookie-banner__link { color: var(--green-primary); text-decoration: underline; }
.cookie-banner__link:hover { color: var(--green-accent); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-banner__btn--reject:hover {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.cookie-banner__btn--accept {
  background: linear-gradient(135deg, var(--green-primary), var(--green-accent));
  color: #0a0a0a;
  border: 1px solid transparent;
  box-shadow: 0 0 20px rgba(146,196,142,.2);
}
.cookie-banner__btn--accept:hover {
  box-shadow: 0 0 28px rgba(146,196,142,.35);
}
@media (max-width: 600px) {
  .cookie-banner { padding: 16px 20px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤1024px)
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --py: 80px; --px: 32px; }

  .services__grid   { grid-template-columns: 1fr; }
  .customized__grid { grid-template-columns: 1fr; }
  .about__grid      { grid-template-columns: 1fr; }
  .about__img       { order: -1; }
  .about__img img   { aspect-ratio: 4/3; object-position: center 20%; }
  .why__header      { grid-template-columns: 1fr; }
  .commitment__grid { grid-template-columns: 1fr; }
  .approach__grid   { grid-template-columns: 1fr; }
  .process__steps   { grid-template-columns: 1fr 1fr; }
  .footer__grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-col--lg { display: none; }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — mobile (≤768px)
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --py: 60px; --px: 20px; }

  /* Header */
  .header { padding: 16px 20px; }
  .header__hamburger { display: flex; margin-left: -8px; }
  .header__nav .btn-outline { display: none; }
  .header__links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    background: rgba(5,5,5,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
    border: 1px solid rgba(255,255,255,.06);
  }
  .header__links.is-open { display: flex; }
  .header__link {
    padding: 12px 16px;
    border-radius: 8px;
    color: rgba(255,255,255,.5);
  }
  .header__link:hover { background: rgba(255,255,255,.05); color: var(--white); }
  .header__bar { position: relative; }

  /* Hero */
  .hero { padding: 100px 20px 40px; min-height: unset; }
  .hero__body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .hero__visual {
    order: -1;
    justify-content: center;
  }
  .hero__photo-wrap {
    max-width: 100%;
    width: 100%;
  }
  .hero__photo {
    aspect-ratio: 3/4;
    border-radius: 18px;
  }
  .hero__photo img { object-position: center 10%; }
  .hero__stat {
    padding: 10px 14px;
    border-radius: 10px;
  }
  .hero__stat-num { font-size: 17px; }
  .hero__stat-lbl { font-size: 9px; }
  .hero__stat--tl { top: 16px;  left: 12px; }
  .hero__stat--br { bottom: 20px; right: 12px; }
  .hero__sub { max-width: none; font-size: 16px; }

  /* Authority strip — disable marquee, stack vertically */
  .logos-strip { mask-image: none; -webkit-mask-image: none; }
  .logos-strip__row {
    animation: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .logos-strip__item { border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 10px; width: 100%; }
  .logos-strip__item:last-child { border-bottom: none; }
  .logos-strip__sep { display: none; }

  /* Grids */
  .testimonials-col--md { display: none; }
  .approach__grid     { grid-template-columns: 1fr; }
  .process__steps     { grid-template-columns: 1fr; }
  .key-numbers        { grid-template-columns: 1fr; }
  .footer__grid       { grid-template-columns: 1fr; gap: 36px; }
}
