/* ============================================================
   OVIO LAB — Creative Growth Studio
   Design language inspired by the Fluxen template:
   teal accent, tight display type, light canvas + dark CTA,
   smooth scroll-reveal motion.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --black: #0c0c0c;
  --ink: #141414;
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f2f2f2;
  --line: #e6e6e6;
  --muted: #6b7280;
  --dark-gray: #4d4d4d;

  --teal: #008d82;          /* primary brand teal (Olisedigital) */
  --teal-bright: #00d1c3;   /* logo highlight — hover / gradient */
  --teal-soft: #b9fdf6;
  --teal-tint: #e4fbf8;
  --teal-deep: #00312d;     /* logo wordmark dark */

  --bg: var(--white);
  --fg: var(--ink);

  /* type */
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Manrope", "Inter", sans-serif;

  --fs-hero: clamp(2.6rem, 6.2vw, 5.4rem);
  --fs-h2: clamp(2rem, 4vw, 3.4rem);
  --fs-h3: clamp(1.4rem, 2.4vw, 2rem);
  --fs-lead: clamp(1.05rem, 1.4vw, 1.25rem);

  --ls-tight: -0.03em;
  --ls-tighter: -0.045em;

  /* layout */
  --container: 1360px;
  --pad: 20px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --section-y: clamp(64px, 8vw, 130px);

  --shadow-sm: 0 1px 2px rgba(12, 12, 12, 0.05);
  --shadow: 0 18px 50px -20px rgba(12, 12, 12, 0.18);
  --shadow-lg: 0 40px 90px -30px rgba(12, 12, 12, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--teal); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--pad) * 2);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 5vw, 80px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(12, 181, 181, 0.18);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: var(--ls-tight); }
.h2 { font-size: var(--fs-h2); letter-spacing: var(--ls-tighter); }
.h3 { font-size: var(--fs-h3); }
.lead { font-size: var(--fs-lead); color: var(--muted); line-height: 1.6; }

.section__head { max-width: 720px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .h2 { margin-top: 18px; }
.section__head .lead { margin-top: 16px; }

.teal { color: var(--teal); }

/* ---------- Buttons ---------- */
.btn {
  --b-bg: var(--ink);
  --b-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  background: var(--b-bg);
  color: var(--b-fg);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn .btn__arrow {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.4s var(--ease);
}
.btn:hover .btn__arrow { transform: rotate(45deg); }
.btn--teal { --b-bg: var(--teal); }
.btn--teal:hover { --b-bg: var(--teal-bright); }
.btn--ghost {
  --b-bg: transparent; --b-fg: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost .btn__arrow { background: var(--light-gray); }
.btn--ghost:hover { --b-bg: var(--off-white); }
.btn--light { --b-bg: #fff; --b-fg: var(--ink); }
.btn--block { width: 100%; justify-content: center; }

.txt-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--teal);
  transition: gap 0.3s var(--ease);
}
.txt-link svg { transition: transform 0.3s var(--ease); }
.txt-link:hover { gap: 12px; }
.txt-link:hover svg { transform: translateX(2px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo { height: 42px; width: auto; display: block; }
.footer__about .brand__logo { height: 44px; }
.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 9px 14px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 0.95rem; color: var(--dark-gray);
  transition: color 0.25s, background 0.25s;
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); background: var(--light-gray); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); }
.nav__toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px auto; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: 130px; padding-bottom: clamp(40px, 5vw, 70px); overflow: hidden; }
.hero__glow {
  position: absolute; z-index: -1; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  top: -20%; right: -10%;
  background: radial-gradient(circle, rgba(12,181,181,0.16) 0%, rgba(12,181,181,0) 60%);
  filter: blur(10px);
}
.hero__inner { text-align: center; max-width: 920px; margin-inline: auto; }
.hero__title { font-size: var(--fs-hero); letter-spacing: var(--ls-tighter); margin-top: 26px; }
.hero__title em { font-style: normal; color: var(--teal); }
.hero__sub { margin: 26px auto 0; max-width: 620px; }
.hero__cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__rating { margin-top: 28px; display: inline-flex; align-items: center; gap: 12px; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -10px;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-sm);
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__rating-txt { text-align: left; font-size: 0.85rem; color: var(--muted); }
.hero__rating-txt strong { display: block; color: var(--ink); font-size: 0.95rem; }
.stars { color: #f5a623; letter-spacing: 2px; }

.hero__media {
  position: relative; margin-top: 54px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 8;
  background: linear-gradient(135deg, #0e2a2a, #04181c);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero__play {
  position: absolute; inset: 0; margin: auto;
  width: 86px; height: 86px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.hero__play::after { content: ""; width: 0; height: 0; border-left: 18px solid var(--teal); border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 5px; }
.hero__play:hover { transform: scale(1.08); background: #fff; }
.hero__play-ring { position: absolute; inset: 0; margin: auto; width: 86px; height: 86px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); animation: pulse-ring 2.4s ease-out infinite; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.9); opacity: 0; } }

/* ============================================================
   Logo marquee
   ============================================================ */
.marquee-wrap { padding-block: clamp(40px, 5vw, 64px); border-block: 1px solid var(--line); background: var(--off-white); }
.marquee-title { text-align: center; color: var(--muted); font-size: 0.95rem; margin-bottom: 30px; }
.marquee-title b { color: var(--ink); }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 64px; padding-right: 64px; flex-shrink: 0; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #9aa3ad; letter-spacing: -0.02em; white-space: nowrap; display: flex; align-items: center; gap: 8px; transition: opacity 0.3s, filter 0.3s; opacity: 0.85; filter: grayscale(100%); }
.marquee__item:hover { opacity: 1; }
/* real logo images: drop <img> inside .marquee__item — auto greyscale */
.marquee__item img { height: 30px; width: auto; display: block; filter: grayscale(100%); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Results / stats
   ============================================================ */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.result-card {
  padding: 32px; border-radius: var(--radius); background: var(--off-white);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s;
}
.result-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; }
.result-card__name { font-weight: 700; font-family: var(--font-display); font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.result-card__name i { width: 30px; height: 30px; border-radius: 8px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; font-style: normal; font-weight: 800; }
.result-card__stat { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.04em; margin-top: 24px; color: var(--ink); }
.result-card__stat .teal { background: linear-gradient(120deg, var(--teal), var(--teal-bright)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.result-card__desc { color: var(--muted); margin-top: 6px; font-size: 0.95rem; }

/* ============================================================
   About split
   ============================================================ */
.about { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.about__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 2.8vw, 2.5rem); line-height: 1.18; letter-spacing: -0.03em; }
.about__big span { color: var(--muted); }
.about__copy { margin-top: 22px; }
.about__cta { margin-top: 28px; }
.about__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.metric { padding: 28px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.metric:nth-child(2) { background: var(--teal); }
.metric:nth-child(3) { background: var(--off-white); color: var(--ink); border: 1px solid var(--line); }
.metric:nth-child(4) { background: var(--teal-tint); color: var(--ink); }
.metric__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.8rem); letter-spacing: -0.04em; }
.metric__label { margin-top: 6px; opacity: 0.85; font-size: 0.92rem; }

/* ============================================================
   Services
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.service {
  position: relative; overflow: hidden;
  padding: 30px; border-radius: var(--radius);
  background: var(--off-white); border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), color 0.45s, background 0.45s;
  isolation: isolate;
}
.service::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(155deg, var(--teal) 0%, #0a3f3f 100%);
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: #fff; border-color: transparent; }
.service:hover::before { opacity: 1; }
.service__num { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); transition: color 0.45s; }
.service:hover .service__num { color: var(--teal-soft); }
.service__icon { width: 52px; height: 52px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; margin: 18px 0; font-size: 1.5rem; transition: transform 0.45s var(--ease); }
.service:hover .service__icon { transform: rotate(-8deg) scale(1.05); }
.service__title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.service__desc { margin-top: 10px; color: var(--muted); font-size: 0.95rem; transition: color 0.45s; }
.service:hover .service__desc { color: rgba(255,255,255,0.82); }
.service__more { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s; }
.service:hover .service__more { opacity: 1; transform: translateY(0); }

/* ============================================================
   Projects
   ============================================================ */
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.project {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16 / 11; background: #0e1f1f;
  box-shadow: var(--shadow-sm);
}
.project__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.project:hover .project__img { transform: scale(1.05); }
.project__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,18,18,0.82) 0%, rgba(8,18,18,0) 55%); }
.project__body { position: absolute; left: 26px; right: 26px; bottom: 24px; color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.project__tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.project__tags span { font-size: 0.75rem; font-weight: 600; padding: 5px 11px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.16); backdrop-filter: blur(6px); }
.project__name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; }
.project__arrow {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: #fff; color: var(--ink); display: grid; place-items: center;
  transform: translateY(8px) scale(0.9); opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease), background 0.3s;
}
.project:hover .project__arrow { transform: translateY(0) scale(1); opacity: 1; }
.project__arrow:hover { background: var(--teal); color: #fff; }

/* ============================================================
   Feature cards (growth grid)
   ============================================================ */
.section--dark { background: var(--black); color: #fff; }
.section--dark .lead { color: rgba(255,255,255,0.62); }
.section--dark .eyebrow { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: var(--teal-soft); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; }
.feature { background: var(--black); padding: 38px 32px; transition: background 0.4s var(--ease); }
.feature:hover { background: #161616; }
.feature__icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(12,181,181,0.14); color: var(--teal-bright); font-size: 1.35rem; }
.feature__title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-top: 20px; }
.feature__desc { color: rgba(255,255,255,0.6); margin-top: 10px; font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   Testimonials carousel
   ============================================================ */
.tst { background: var(--off-white); }
.tst__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.tst__nav { display: flex; gap: 10px; }
.tst__nav button { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; transition: background 0.3s, color 0.3s, transform 0.3s; }
.tst__nav button:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.tst__viewport { overflow: hidden; margin-top: 46px; }
.tst__track { display: flex; gap: 22px; transition: transform 0.6s var(--ease); }
.tst-card { flex: 0 0 calc((100% - 44px) / 3); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.tst-card__stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 18px; }
.tst-card__quote { font-size: 1.08rem; line-height: 1.6; color: var(--ink); flex: 1; }
.tst-card__author { display: flex; align-items: center; gap: 12px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.tst-card__avatar { width: 46px; height: 46px; border-radius: 50%; background-size: cover; background-position: center; background-color: var(--teal-tint); }
.tst-card__name { font-weight: 700; font-family: var(--font-display); }
.tst-card__role { color: var(--muted); font-size: 0.88rem; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: stretch; }
.plan { position: relative; padding: 34px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--off-white); display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.plan__badge { position: absolute; top: 22px; right: 22px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--teal-bright); color: #042020; }
.plan__name { font-weight: 600; font-size: 1.05rem; }
.plan__desc { color: var(--muted); font-size: 0.92rem; margin-top: 6px; min-height: 42px; }
.plan--featured .plan__desc { color: rgba(255,255,255,0.6); }
.plan__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3rem); letter-spacing: -0.04em; margin: 22px 0 4px; }
.plan__price small { font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan--featured .plan__price small { color: rgba(255,255,255,0.6); }
.plan__quote { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 1.9rem); letter-spacing: -0.03em; margin: 22px 0 4px; color: var(--teal); }
.plan--featured .plan__quote { color: var(--teal-soft); }
.plan__quote small { display: block; font-size: 0.9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-top: 4px; }
.plan--featured .plan__quote small { color: rgba(255,255,255,0.6); }
.plan__cta { margin: 24px 0; }
.plan__features { display: grid; gap: 13px; }
.plan__features li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; color: var(--dark-gray); }
.plan--featured .plan__features li { color: rgba(255,255,255,0.82); }
.plan__features i { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; font-style: normal; font-size: 0.7rem; font-weight: 800; margin-top: 1px; }
.plan--featured .plan__features i { background: rgba(12,181,181,0.22); color: var(--teal-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; margin-top: 46px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; }
.faq-item__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: background 0.3s, color 0.3s; }
.faq-item__icon::before, .faq-item__icon::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s; }
.faq-item__icon::before { width: 12px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-item__icon { background: var(--teal); color: #fff; border-color: var(--teal); }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); opacity: 0; }
.faq-item__a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-item__a p { padding: 0 4px 26px; color: var(--muted); line-height: 1.65; max-width: 660px; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.post { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post__thumb { aspect-ratio: 16 / 10; background-size: cover; background-position: center; background-color: #0e1f1f; }
.post__body { padding: 24px; }
.post__meta { display: flex; gap: 10px; align-items: center; font-size: 0.82rem; color: var(--muted); }
.post__meta span:first-child { color: var(--teal); font-weight: 600; }
.post__title { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; line-height: 1.3; margin-top: 14px; letter-spacing: -0.01em; }
.post__link { margin-top: 18px; }

/* ============================================================
   Final CTA
   ============================================================ */
.cta-final { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--black); color: #fff; padding: clamp(48px, 8vw, 100px) clamp(24px, 5vw, 80px); text-align: center; }
.cta-final__glow { position: absolute; z-index: 0; width: 70%; height: 200%; left: 15%; top: -50%; background: radial-gradient(circle, rgba(12,181,181,0.22) 0%, rgba(12,181,181,0) 60%); }
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: var(--ls-tighter); }
.cta-final p { margin: 20px auto 0; max-width: 540px; color: rgba(255,255,255,0.66); }
.cta-final__btns { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--off-white); border-top: 1px solid var(--line); padding-block: clamp(56px, 7vw, 90px) 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer__about { max-width: 320px; }
.footer__about p { color: var(--muted); margin-top: 18px; font-size: 0.95rem; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; transition: background 0.3s, color 0.3s, transform 0.3s; }
.footer__social a:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.footer__col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-family: var(--font-body); font-weight: 600; }
.footer__col ul { margin-top: 18px; display: grid; gap: 12px; }
.footer__col a { color: var(--dark-gray); font-size: 0.95rem; transition: color 0.25s; }
.footer__col a:hover { color: var(--teal); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 64px); padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; }
.footer__status { display: inline-flex; align-items: center; gap: 8px; }
.footer__status i { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.18); font-style: normal; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .results-grid, .services-grid, .features-grid, .pricing-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-card { flex-basis: calc((100% - 22px) / 2); }
  .about { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 760px) {
  .nav__menu, .nav__actions .btn { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 76px; left: var(--pad); right: var(--pad);
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 12px; box-shadow: var(--shadow);
  }
  .results-grid, .services-grid, .features-grid, .pricing-grid, .blog-grid, .projects-grid, .about__metrics { grid-template-columns: 1fr; }
  .tst-card { flex-basis: 100%; }
  .plan--featured { order: -1; }
  .hero__cta .btn, .cta-final__btns .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Contact form modal
   ============================================================ */
.cf-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 20px;
  background: rgba(12, 12, 12, 0.55); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.cf-overlay.is-open { opacity: 1; visibility: visible; }
.cf-modal {
  position: relative; width: 100%; max-width: 560px; max-height: 92vh; overflow: auto;
  background: #fff; border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.cf-overlay.is-open .cf-modal { transform: none; }
.cf-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--light-gray); color: var(--ink); font-size: 0.95rem;
  display: grid; place-items: center; transition: background 0.25s;
}
.cf-close:hover { background: var(--line); }
.cf-head .cf-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.6rem); letter-spacing: -0.02em; margin-top: 12px; }
.cf-sub { color: var(--muted); margin-top: 8px; font-size: 0.95rem; }
.cf-form { margin-top: 24px; display: grid; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: grid; gap: 7px; }
.cf-field span { font-size: 0.85rem; font-weight: 600; color: var(--dark-gray); }
.cf-field input, .cf-field select, .cf-field textarea {
  font-family: var(--font-body); font-size: 0.95rem; width: 100%;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--off-white); color: var(--ink);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 209, 195, 0.12);
}
.cf-field textarea { resize: vertical; min-height: 96px; }
.cf-submit { margin-top: 4px; }
.cf-note { font-size: 0.88rem; color: var(--muted); text-align: center; min-height: 1em; margin: 0; }
.cf-success { text-align: center; padding: 24px 0 8px; }
.cf-success__icon { width: 58px; height: 58px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 18px; }
.cf-success h3 { font-family: var(--font-display); font-size: 1.4rem; }
.cf-success p { color: var(--muted); margin: 10px 0 22px; }
@media (max-width: 560px) { .cf-row { grid-template-columns: 1fr; } }
