/* styles.css | Plexify Digital Marketing Agency | Generated: 2026-04-03 */
/*
  Colors:
    --lime:        #6EFF6A  (primary accent / hero background)
    --dark:        #0d0d0d  (base background)
    --dark-2:      #1a1a1a  (card backgrounds)
    --dark-green:  #1a3a1a  (about/testimonial bg)
    --green-mid:   #2d5a2d  (process section bg)
    --white:       #ffffff
    --muted:       #8a8a8a  (body text on dark)
    --cyan:        #00CFCF  (pen deco)
  Fonts:
    Playfair Display 900 — hero display / italic brand
    Syne 700/800           — section headings
    DM Sans 400/500/700    — body, UI
*/

/* =============================================================
   VARIABLES
   ============================================================= */
:root {
  --lime:         #6EFF6A;
  --lime-dark:    #52D84E;
  --dark:         #0d0d0d;
  --dark-2:       #1a1a1a;
  --dark-3:       #252525;
  --dark-green:   #0f2010;
  --green-mid:    #162816;
  --white:        #ffffff;
  --muted:        #9a9a9a;
  --cyan:         #00CFCF;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-heading: 'Syne', Helvetica, Arial, sans-serif;
  --font-body:    'DM Sans', Helvetica, Arial, sans-serif;

  --radius-card:  12px;
  --radius-pill:  50px;
  --nav-h:        68px;
  --pad-x:        clamp(1.25rem, 5vw, 5rem);
  --pad-section:  clamp(4rem, 8vh, 7rem);

  --transition:   0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* =============================================================
   SHARED COMPONENTS
   ============================================================= */

/* Pill button */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lime);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-pill:hover, .btn-pill:focus-visible {
  background: var(--lime-dark);
  transform: scale(1.04);
}
.btn-pill--outline {
  background: transparent;
  border: 2px solid var(--lime);
  color: var(--lime);
}
.btn-pill--outline:hover, .btn-pill--outline:focus-visible {
  background: var(--lime);
  color: var(--dark);
}
.btn-pill--dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-pill--dark:hover { background: var(--dark-2); }

/* JS reveal base */
.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.scrolled {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--pad-x);
}

/* Logo pill */
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--dark);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.1rem 0.45rem 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: 0.8; }

.nav__links {
  display: none;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

/* CTA magnetic wrapper */
.nav__cta-wrap {
  position: relative;
  display: inline-flex;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--dark);
  border-radius: var(--radius-pill);
  padding: 0.48rem 1.3rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  background: transparent;
  /* On lime hero background: dark border, dark text */
  will-change: transform;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  cursor: pointer;
  overflow: hidden;
}
.site-header.scrolled .nav__cta {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.nav__cta:hover, .nav__cta:focus-visible {
  background: var(--dark);
  color: var(--lime);
  border-color: var(--dark);
}
.site-header.scrolled .nav__cta:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--dark);
}
.nav__cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  pointer-events: none;
}
.nav__cta-arrow {
  display: inline-block;
  transition: transform var(--transition);
}
.nav__cta:hover .nav__cta-arrow { transform: translateX(4px); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  background: var(--lime);
  background-image: radial-gradient(ellipse 70% 60% at 55% 45%, #96FF92 0%, #6EFF6A 50%, #44CC40 100%);
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
}

/* Decorative elements */
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero__deco--tl { top: 8%; left: 22%; width: clamp(60px,9vw,130px); opacity: 0.6; transform: rotate(-8deg); }
.hero__deco--tr { top: 14%; right: 14%; width: clamp(28px,3.5vw,55px); opacity: 0.7; }
.hero__deco--pen { bottom: 24%; left: clamp(0.5rem,3vw,3.5rem); width: clamp(20px,2.5vw,35px); }
.hero__deco--br  { bottom: 12%; right: 22%; width: clamp(70px,10vw,150px); opacity: 0.55; transform: rotate(6deg); }

/* Content */
.hero__content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-x) clamp(2rem, 5vh, 4rem);
}

.hero__line {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  line-height: 0.88;
  position: relative;
}
.hero__line--1 { gap: 0 clamp(0.2rem, 1vw, 0.8rem); }
.hero__line--2 { margin-top: -0.04em; gap: 0 clamp(0.5rem, 2vw, 2rem); align-items: baseline; }

/* WE */
.hero__we {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  color: var(--dark);
  align-self: flex-end;
  padding-bottom: 0.05em;
  line-height: 1;
  flex-shrink: 0;
}

/* ARE A — rotated 90° counter-clockwise, reads bottom to top */
.hero__are-wrap {
  display: inline-flex;
  align-self: center;
  flex-shrink: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  height: clamp(3rem, 8vw, 8rem);
}
.hero__are {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.55rem, 1.1vw, 1.1rem);
  letter-spacing: 0.12em;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

/* digital */
.hero__word--digital {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 17vw, 17rem);
  color: var(--dark);
  line-height: 0.88;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

/* Badge — inline with DIGITAL, anchored to right side of line-1 */
.hero__badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  align-items: stretch;
  border: 2px solid rgba(0,0,0,0.3);
  border-radius: 6px;
  overflow: hidden;
  max-width: clamp(130px, 16vw, 210px);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}
.hero__badge p {
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 0.85vw, 0.78rem);
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
  padding: 0.55rem 0.25rem;
}
.hero__brace {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.4rem;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: var(--dark);
  background: rgba(0,0,0,0.08);
  line-height: 1;
  flex-shrink: 0;
}

/* marketing */
.hero__word--marketing {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.2rem, 15vw, 15rem);
  color: var(--dark);
  line-height: 0.88;
  letter-spacing: -0.035em;
  flex-shrink: 0;
}
.hero__word--marketing em { font-style: italic; }

/* AGENCY — on same line as marketing, small, baseline-aligned */
.hero__word--agency {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.8vw, 3.5rem);
  color: var(--dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-end;
  padding-bottom: 0.12em;
  flex-shrink: 0;
}

/* Social sidebar */
.hero__social {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 10;
}
.hero__social-link {
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.5);
  transition: color var(--transition);
}
.hero__social-link:hover { color: var(--dark); }

@media (max-width: 479px) {
  .hero__badge {
    position: relative;
    top: auto; right: auto;
    transform: none;
    max-width: 100%;
    margin-top: 0.5rem;
    align-self: flex-end;
  }
  .hero__social { display: none; }
  .hero__line--1 { flex-wrap: wrap; }
}

/* Hero entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__content .hero__line--1 { animation: heroFadeUp 0.8s 0.15s cubic-bezier(0.22,1,0.36,1) both; }
.hero__content .hero__line--2 { animation: heroFadeUp 0.8s 0.28s cubic-bezier(0.22,1,0.36,1) both; }
.hero__content .hero__line--3 { animation: heroFadeUp 0.8s 0.4s  cubic-bezier(0.22,1,0.36,1) both; }
.hero__badge                   { animation: heroFadeIn 0.8s 0.55s ease both; }
.hero__deco                    { animation: heroFadeIn 1s   0.35s ease both; }

/* Fix 5: smooth gradient shadow between hero (lime) and about (dark-green) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, rgba(15,32,16,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

/* =============================================================
   ABOUT
   ============================================================= */
.about {
  background: var(--dark-green);
  padding: var(--pad-section) var(--pad-x);
  /* Fix 6: sticky image needs relative container */
  position: relative;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .about__inner { grid-template-columns: 1fr 1.4fr; align-items: start; }
}

/* Fix 6: sticky image that follows scroll through the section */
.about__image-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  align-self: start;
  z-index: 2;
}
.about__img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-card);
  filter: saturate(1.1) brightness(0.9);
  /* green overlay */
  mix-blend-mode: normal;
  position: relative;
  z-index: 1;
}
.about__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  max-width: 480px;
  border-radius: var(--radius-card);
  background: rgba(110, 255, 106, 0.12);
  z-index: 2;
  pointer-events: none;
}
.about__ball {
  position: absolute;
  left: -20px;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff9a3c, #ff6b1a);
  z-index: 3;
  box-shadow: 0 8px 24px rgba(255,100,0,0.4);
}

/* Stats */
.about__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.about__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}
.about__stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 0.4rem;
}
.about__badge-circle {
  width: clamp(70px, 10vw, 100px);
  height: clamp(70px, 10vw, 100px);
  animation: rotateBadge 12s linear infinite;
}
@keyframes rotateBadge { to { transform: rotate(360deg); } }

/* Text */
.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.about__highlight { color: var(--lime); }
.about__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

/* Feature cards grid — sticky vertical cards */
.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-card--offset { margin-top: 1.5rem; }
.feature-card:hover {
  border-color: rgba(110,255,106,0.35);
  transform: translateY(-4px);
}
.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.feature-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lime);
  margin-top: auto;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.feature-card__link:hover { gap: 0.5rem; }

/* =============================================================
   WORK — SCROLL-DRIVEN HORIZONTAL (sticky pin)
   ============================================================= */
/* Outer sets the scroll height budget */
.work__sticky-outer {
  /* height = viewport * (number of cards + 1) so JS has room to pan */
  height: 500vh;
  position: relative;
}

/* Inner sticks to viewport while outer is in view */
.work__sticky-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--lime);
  background-image: radial-gradient(ellipse 80% 60% at 50% 50%, #89FF85 0%, #6EFF6A 60%, #4ACC46 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work__bg-text {
  position: absolute;
  bottom: -0.05em;
  left: 0;
  right: 0;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 22vw, 26rem);
  font-weight: 800;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  text-align: left;
  padding-left: var(--pad-x);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Progress ring */
.work__progress {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work__progress-ring {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}
.work__progress-track {
  fill: none;
  stroke: rgba(0,0,0,0.2);
  stroke-width: 3;
}
.work__progress-fill {
  fill: none;
  stroke: var(--dark);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
  transition: stroke-dashoffset 0.05s linear;
}
.work__progress-pct {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--dark);
  z-index: 1;
}

/* Track — JS moves this via translateX */
.work__track-wrap {
  padding: clamp(2rem,5vh,4rem) var(--pad-x);
  position: relative;
  z-index: 5;
  overflow: visible;
}
.work__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  /* JS drives translateX */
}

.work-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(260px, 38vw, 560px);
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-2);
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}
.work-card:hover { transform: scale(1.025) translateY(-4px); }
.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work-card:hover .work-card__img { transform: scale(1.06); }
.work-card__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(6px);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* =============================================================
   SERVICES
   ============================================================= */
.services {
  background: var(--dark);
  padding: var(--pad-section) 0 0;
}

.services__inner {
  padding: 0 var(--pad-x);
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.services__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.services__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
}
.services__heading span { display: block; }
.services__header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.services__badge {
  display: flex;
  align-items: stretch;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  overflow: hidden;
  max-width: 200px;
  background: rgba(255,255,255,0.04);
}
.services__badge p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
  padding: 0.55rem 0.25rem;
}
.services__brace {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.45rem;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted);
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* Fix 9: Services bottom fades into process dark-green */
.services {
  background: linear-gradient(to bottom, var(--dark) 0%, var(--dark) 80%, var(--dark-green) 100%);
  padding: var(--pad-section) 0 0;
  position: relative;
}
.services::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--dark-green));
  pointer-events: none;
}
.services__cta-circle {
  width: 64px;
  height: 64px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.services__cta-circle:hover { transform: scale(1.1) rotate(45deg); background: var(--lime-dark); }

/* Grid */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(110,255,106,0.3);
  transform: translateY(-6px);
}
.service-card__tag {
  display: inline-block;
  background: var(--lime);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
  align-self: flex-start;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card__list li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.service-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lime);
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}
.service-card__btn:hover { background: var(--lime-dark); transform: scale(1.04); }
.service-card__deco {
  font-size: 1.5rem;
  opacity: 0.7;
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 0;
  margin-top: 3rem;
}
.marquee__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__inner span {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.marquee__italic { font-style: italic; }
.marquee__dot  { color: #ff6b8a; font-size: 1.2rem !important; }
.marquee__ring { color: #ffb347; font-size: 1.3rem !important; }
.marquee__star { color: #ff6b8a; font-size: 1.1rem !important; }
.marquee__star--green { color: var(--lime) !important; }

/* =============================================================
   PROCESS — blends from dark-green (services bottom) into deeper dark-green
   ============================================================= */
.process {
  background: var(--dark-green);
  padding: var(--pad-section) 0 0;
  position: relative;
  overflow: hidden;
}

/* deco lines */
.process::before, .process::after {
  content: '';
  position: absolute;
  border-radius: 3px;
  pointer-events: none;
}
.process::before {
  width: 40px; height: 6px;
  background: var(--lime);
  top: 30%; right: 8%;
  transform: rotate(-30deg);
}
.process::after {
  width: 24px; height: 5px;
  background: #ff6b8a;
  bottom: 35%; left: 6%;
  transform: rotate(20deg);
  border-radius: 50px;
}

.process__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.process__header {
  text-align: center;
  margin-bottom: 4rem;
}
.process__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.process__sub {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Timeline */
.process__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* The dashed SVG line — positioned absolutely in the center */
.process__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  display: none;
  z-index: 1;
}
@media (min-width: 768px) { .process__line { display: block; } }

.process__line-svg {
  width: 4px;
  height: 100%;
  display: block;
}

/* Rocket emoji that rides the line */
.process__rocket {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(0px);
  width: 28px;
  z-index: 10;
  filter: drop-shadow(0 0 8px rgba(110,255,106,0.7));
  will-change: transform;
  transition: transform 0.05s linear;
  display: none;
}
@media (min-width: 768px) { .process__rocket { display: block; } }

.process__step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.process__step--left  { flex-direction: row;         justify-content: flex-end; }
.process__step--right { flex-direction: row-reverse; justify-content: flex-end; }

@media (min-width: 768px) {
  .process__step--left  { padding-right: 50%; }
  .process__step--right { padding-left: 50%; flex-direction: row; }
}

.process__dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--dark);
  border: 2px solid var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  z-index: 2;
}

.process-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  flex: 1;
  transition: border-color var(--transition), transform var(--transition);
}
.process-card:hover {
  border-color: rgba(110,255,106,0.3);
  transform: translateY(-3px);
}
.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.7rem 0 0.4rem;
  line-height: 1.3;
}
.process-card__sub {
  font-size: 0.82rem;
  color: var(--lime);
  font-weight: 600;
}
.process-card__num {
  position: absolute;
  bottom: -0.1em;
  right: 0.5rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

/* CTA band */
.process__cta-band {
  margin-top: 4rem;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(110,255,106,0.08) 0%, transparent 70%);
  text-align: center;
  padding: 3rem var(--pad-x) 4rem;
}
.process__cta-band p {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* =============================================================
   BLOG — STICKY STACK CARDS
   ============================================================= */
.blog {
  background: var(--dark-green);
  padding: var(--pad-section) var(--pad-x);
}

.blog__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 1024px) {
  .blog__inner { grid-template-columns: 1fr 1.6fr; }
}

.blog__left {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.blog__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.blog__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 340px;
}

/* Stack container — JS animates cards inside */
.blog__stack {
  position: relative;
  /* height set by JS: cards.length * step */
}

/* Each stacking card */
.blog-card--stack {
  position: sticky;
  /* top offsets staggered by JS */
  top: calc(var(--nav-h) + 1.5rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  margin-bottom: 1rem;
  /* Scale + brightness driven by JS via CSS var */
  transform: scale(var(--card-scale, 1));
  transform-origin: top center;
  transition: border-color var(--transition), filter 0.3s ease;
  will-change: transform, filter;
  z-index: calc(var(--card-z, 1));
}
.blog-card--stack:hover {
  border-color: rgba(110,255,106,0.3);
}

.blog-card__text { flex: 1; min-width: 0; }
.blog-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.blog-card__excerpt {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.blog-card__date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.05em;
}
.blog-card__author {
  font-size: 0.72rem;
  color: var(--lime);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.blog-card__img {
  flex-shrink: 0;
  width: clamp(90px, 18vw, 150px);
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials {
  background: var(--green-mid);
  padding: var(--pad-section) var(--pad-x);
  position: relative;
  overflow: hidden;
}

/* deco squiggles */
.testimonials::before, .testimonials::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.testimonials__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .testimonials__inner { grid-template-columns: 1fr 1.8fr; align-items: center; }
}

/* Left rating card */
.testimonials__rating-card {
  background: var(--lime);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonials__score {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.testimonials__rating-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.testimonials__exp {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

/* Right slider */
.testimonials__header { margin-bottom: 2rem; }
.testimonials__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.testimonials__rated {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}

/* Slider */
.testimonials__track {
  position: relative;
  min-height: 180px;
}

.testimonial-slide {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 2rem;
  animation: slideIn 0.45s ease both;
}
.testimonial-slide.active { display: flex; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.testimonial-slide__stars { color: #FFB347; font-size: 1.1rem; letter-spacing: 0.1em; }
.testimonial-slide p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}
.testimonial-slide__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-style: normal;
  margin-top: 0.5rem;
}
.testimonial-slide__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime);
  background: var(--dark-3);
}
.testimonial-slide__name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-slide__company {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}
.testimonials__dots { display: flex; gap: 0.5rem; }
.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.testimonials__dot.active { background: var(--lime); width: 28px; border-radius: 5px; }
.testimonials__arrows { display: flex; gap: 0.75rem; }
.testimonials__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.testimonials__arrow:hover { background: var(--lime); border-color: var(--lime); color: var(--dark); }

/* =============================================================
   FAQ
   ============================================================= */
.faq {
  background: var(--dark);
  padding: var(--pad-section) var(--pad-x);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 1024px) {
  .faq__inner { grid-template-columns: 1fr 1.4fr; }
}

.faq__img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-card);
  object-fit: cover;
}
.faq__image-wrap {
  position: relative;
}
.faq__image-wrap::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  right: 8px;
  top: 8px;
  border: 2px solid var(--lime);
  border-radius: var(--radius-card);
  opacity: 0.25;
}

.faq__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.faq__sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.faq__list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq__item {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  background: var(--dark-2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1.1rem 1.25rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}
.faq__q[aria-expanded="true"] {
  background: var(--lime);
  color: var(--dark);
  border-color: var(--lime);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.faq__icon { font-size: 0.75rem; flex-shrink: 0; }

.faq__a {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-top: none;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  max-height: 300px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 1rem 1.25rem;
}
.faq__a--closed {
  max-height: 0;
  padding: 0 1.25rem;
}
.faq__a p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================================
   BRANDS
   ============================================================= */
.brands {
  background: var(--lime);
  padding: 2rem var(--pad-x);
}
.brands__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.brands__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.brands__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.brands__rating strong { font-weight: 900; color: var(--dark); font-size: 1rem; }
.brands__score { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.brands__stars { color: #FF6B00; font-size: 0.8rem; }
.brands__reviews { font-size: 0.72rem; color: rgba(0,0,0,0.5); }
.brands__divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.brands__logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  flex: 1;
}
.brands__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.6;
  transition: opacity var(--transition);
}
.brands__logo:hover { opacity: 1; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--dark);
  padding: var(--pad-section) var(--pad-x) 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse 60% 70% at 100% 100%, rgba(22,56,22,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1.4fr; align-items: start; }
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.footer__brand {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--lime);
}

.footer__social {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.footer__social-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__social-link:hover { color: var(--lime); }

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__illustration {
  display: flex;
  justify-content: flex-end;
}
.footer__illustration svg {
  width: clamp(120px, 20vw, 200px);
  height: auto;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 600px) {
  .footer__nav { grid-template-columns: 1fr 1fr; }
}
.footer__nav-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--lime); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 3rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer__copy { font-size: 0.78rem; color: var(--muted); }
.footer__logo-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

/* =============================================================
   SCROLL TO TOP — with SVG progress ring + percentage
   ============================================================= */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: var(--dark-2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover { transform: translateY(-3px); }

/* SVG ring */
.scroll-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.scroll-top__track {
  fill: rgba(255,255,255,0.08);
  stroke: rgba(255,255,255,0.08);
  stroke-width: 3;
}
.scroll-top__fill {
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 150.8;   /* 2π × 24 (r=24) */
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.12s linear;
}

/* Percentage / arrow label */
.scroll-top__pct {
  position: relative;
  z-index: 1;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1;
  user-select: none;
}

/* =============================================================
   RESPONSIVE — Mobile specific
   ============================================================= */
@media (max-width: 767px) {
  .about__cards { grid-template-columns: 1fr; }
  .feature-card--offset { margin-top: 0; }
  .process__step--left,
  .process__step--right { flex-direction: column; padding: 0; }
  .process__dot { align-self: flex-start; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .services__header { flex-direction: column; }
  .services__header-right { flex-wrap: wrap; }
}

/* =============================================================
   ACCESSIBILITY — focus & reduced motion
   ============================================================= */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
