/* ============================================================
   STYLE.CSS — Vinit Templates
   Layout · Navigation · Hero · All Sections
   ============================================================ */

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section { padding-block: var(--space-24); }

/* ===========================
   SECTION LABELS & HEADERS
=========================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-bg);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-label--dark {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-sub {
  font-family: var(--font-inter);
  font-size: var(--text-md);
  color: var(--color-text-3);
  line-height: var(--leading-loose);
  max-width: 580px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

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

/* ===========================
   HEADER / NAV
=========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(250,250,249,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--duration-base),
    box-shadow var(--duration-base);
}

.header.scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  width: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}
.nav__logo img{width:180px;}

.nav__logo-mark {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(var(--color-accent-rgb), 0.35);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.nav__logo-text em { font-style: normal; color: var(--color-accent); }
.footer__brand .nav__logo-text{color:#fff;}
/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-family: var(--font-inter);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-3);
  transition: color var(--duration-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover,
.nav__link--active { color: var(--color-text); }

.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

/* Nav actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-fast);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-inter);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast),
    background var(--duration-fast),
    color var(--duration-fast),
    border-color var(--duration-fast);
}

.btn:active { transform: scale(0.97); }

.btn--sm  { font-size: 13px; padding: 8px 18px; }
.btn--md  { font-size: var(--text-sm); padding: 11px 24px; }
.btn--lg  { font-size: var(--text-sm); padding: 14px 30px; }
.btn--xl  { font-size: var(--text-base); padding: 16px 36px; }

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(var(--color-accent-rgb),0.3);
}
.btn--primary:hover {
  background: #e55e00;
  box-shadow: var(--shadow-accent);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--color-dark);
  color: #fff;
}
.btn--dark:hover {
  background: var(--color-dark-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border-md);
}
.btn--outline:hover {
  border-color: var(--color-text);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(0,0,0,0.06);
  color: var(--color-text);
}
.btn--ghost:hover { background: rgba(0,0,0,0.1); transform: translateY(-1px); }

.btn--white {
  background: #fff;
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn--ghost-light {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  transform: translateY(-1px);
}

/* ===========================
   TAGS / CHIPS
=========================== */
.tag {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-3);
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-20));
  padding-bottom: var(--space-24);
  overflow: hidden;
}

/* Background decorations */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero__orb--1 {
  width: 600px; height: 600px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(255,106,0,0.12) 0%, transparent 70%);
}

.hero__orb--2 {
  width: 500px; height: 500px;
  bottom: -80px; left: -100px;
  background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 70%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 70%);
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__content { max-width: 580px; }

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface);
  border: 1px solid var(--color-border-md);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-2);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-xs);
}

.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  animation: pulse 2s infinite;
}

/* Headline */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.hero__headline .accent { color: var(--color-accent); }

/* Subtext */
.hero__sub {
  font-family: var(--font-inter);
  font-size: var(--text-md);
  color: var(--color-text-3);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 500px;
}

/* Actions */
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

/* Trust line */
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-inter);
  font-size: var(--text-xs);
  color: var(--color-text-3);
}

.hero__trust-icon {
  width: 18px; height: 18px;
  color: var(--color-success);
  flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: flex-end;
}

/* Audience pills */
.hero__audience {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-2);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
}

.hero__pill-icon { font-size: 14px; }

/* ===========================
   SOCIAL PROOF STRIP
=========================== */
.proof-strip {
  padding-block: var(--space-12);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  align-items: flex-start;
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.proof-item__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-accent-bg);
  border: 1px solid rgba(var(--color-accent-rgb), 0.15);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  flex-shrink: 0;
}

.proof-item__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 3px;
}

.proof-item__sub {
  font-family: var(--font-inter);
  font-size: var(--text-xs);
  color: var(--color-text-3);
  line-height: 1.5;
}

/* ===========================
   TEMPLATE SHOWCASE
=========================== */
.templates-showcase {
  background: var(--color-bg);
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Template Card */
.tpl-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition:
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out),
    border-color var(--duration-base);
  position: relative;
}

.tpl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--color-accent-rgb), 0.2);
}

/* Thumbnail */
.tpl-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.tpl-card__preview {
  width: 100%; height: 100%;
  transition: transform var(--duration-slow) var(--ease-out);
}

.tpl-card:hover .tpl-card__preview {
  transform: scale(1.04);
}

/* Preview colour themes */
.tpl-card__preview--health  { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.tpl-card__preview--design  { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
.tpl-card__preview--photo   { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%); }
.tpl-card__preview--physio  { background: linear-gradient(135deg, #fff7ed 0%, #fde8d0 100%); }

/* Preview inner skeleton */
.tpl-prev {
  width: 100%; height: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tpl-prev__nav {
  height: 8px;
  background: rgba(255,255,255,0.55);
  border-radius: 4px;
}

.tpl-prev__hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.tpl-prev__h { height: 14px; background: rgba(0,0,0,0.18); border-radius: 4px; }
.tpl-prev__h--w2 { width: 65%; background: rgba(0,0,0,0.12); }
.tpl-prev__h--light { background: rgba(255,255,255,0.5); }
.tpl-prev__h--light-2 { background: rgba(255,255,255,0.3); width: 55%; }
.tpl-prev__sub { height: 6px; width: 80%; background: rgba(0,0,0,0.1); border-radius: 3px; }
.tpl-prev__sub--light { background: rgba(255,255,255,0.2); }

.tpl-prev__btns { display: flex; gap: 6px; margin-top: 4px; }
.tpl-prev__btn { height: 18px; width: 64px; border-radius: 9px; background: var(--color-accent); opacity: 0.85; }
.tpl-prev__btn--ghost { background: transparent; border: 1.5px solid rgba(0,0,0,0.2); }
.tpl-prev__btn--light { background: rgba(255,255,255,0.5); }

.tpl-prev__cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 4px; }
.tpl-prev__card { height: 36px; background: rgba(255,255,255,0.5); border-radius: 4px; }
.tpl-prev__card--dark { background: rgba(255,255,255,0.1); }

/* Overlay */
.tpl-card__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-3);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--duration-base);
}

.tpl-card:hover .tpl-card__overlay { opacity: 1; }

/* Badge */
.tpl-card__badge {
  position: absolute;
  top: var(--space-3); left: var(--space-3);
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-inter);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

/* Body */
.tpl-card__body {
  padding: var(--space-6);
}

.tpl-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.tpl-card__category {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tpl-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--color-accent);
  display: flex;
  align-items: center;
}

.tpl-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-2);
}

.tpl-card__desc {
  font-family: var(--font-inter);
  font-size: var(--text-sm);
  color: var(--color-text-3);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

/* Outcome box */
.tpl-card__outcome {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}

.tpl-card__outcome-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tpl-card__outcome-label {
  font-family: var(--font-inter);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tpl-card__outcome-value {
  font-family: var(--font-inter);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-2);
}

.tpl-card__outcome-divider {
  height: 1px;
  width: auto;
  background: var(--color-border);
  align-self: stretch;
}

.tpl-card__tags {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.tpl-card__actions {
  display: flex;
  gap: var(--space-3);
}

.tpl-card__actions .btn { flex: 1; justify-content: center; }

/* ===========================
   INDUSTRIES SECTION
=========================== */
.industries {
  background: var(--color-dark);
  color: #fff;
}

.industries .section-title { color: #fff; }
.industries .section-sub   { color: rgba(255,255,255,0.55); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.industry-card {
  padding: var(--space-8);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  transition:
    background var(--duration-base),
    border-color var(--duration-base),
    transform var(--duration-slow) var(--ease-out);
  cursor: pointer;
}

.industry-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,106,0,0.35);
  transform: translateY(-4px);
}

.industry-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,106,0,0.15);
  border: 1px solid rgba(255,106,0,0.25);
  border-radius: var(--radius-lg);
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

.industry-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.industry-card__desc {
  font-family: var(--font-inter);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.industry-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-inter);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  transition: gap var(--duration-fast);
}

.industry-card:hover .industry-card__link { gap: var(--space-3); }

/* ===========================
   WHY THIS WORKS
=========================== */
.why-works {
  background: var(--color-bg-2);
}

.why-works__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-20);
  align-items: center;
}

.why-works__left .section-title { margin-bottom: var(--space-5); }

.why-works__left p {
  font-family: var(--font-inter);
  font-size: var(--text-md);
  color: var(--color-text-3);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-8);
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.why-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base),
    border-color var(--duration-fast);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--color-accent-rgb), 0.25);
}

.why-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-accent-bg);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.why-card p {
  font-family: var(--font-inter);
  font-size: var(--text-sm);
  color: var(--color-text-3);
  line-height: 1.65;
}

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works {
  background: var(--color-surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(255,106,0,0.1) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-md);
  color: var(--color-text-3);
  margin: 0 auto var(--space-5);
  transition: border-color var(--duration-base), color var(--duration-base);
}

.step:hover .step__num {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.step__desc {
  font-family: var(--font-inter);
  font-size: var(--text-sm);
  color: var(--color-text-3);
  line-height: 1.65;
}

/* ===========================
   WHO THIS IS FOR
=========================== */
.who-for {
  background: var(--color-bg);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.who-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base),
    border-color var(--duration-fast);
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--color-accent-rgb), 0.2);
}

.who-card__emoji {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-2);
  border-radius: var(--radius-lg);
}

.who-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.who-card__desc {
  font-family: var(--font-inter);
  font-size: var(--text-sm);
  color: var(--color-text-3);
  line-height: 1.65;
}

/* ===========================
   BLOG SECTION
=========================== */
.blog-preview {
  background: var(--color-bg-2);
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Reuse .blog-card from blog.css */

/* ===========================
   FINAL CTA SECTION
=========================== */
.final-cta {
  padding-block: 0;
}

.final-cta .container { padding-block: var(--space-6); }

.final-cta__inner {
  position: relative;
  text-align: center;
  padding: var(--space-24) var(--space-8);
  background: var(--color-dark);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.final-cta__bg {
  position: absolute; inset: 0; pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-orb--1 {
  width: 400px; height: 400px;
  top: -80px; left: -60px;
  background: rgba(255,106,0,0.18);
}

.cta-orb--2 {
  width: 300px; height: 300px;
  bottom: -40px; right: 0;
  background: rgba(34,197,94,0.1);
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
  position: relative;
}

.final-cta__sub {
  font-family: var(--font-inter);
  font-size: var(--text-md);
  color: rgba(255,255,255,0.55);
  margin: 0 auto var(--space-10);
  max-width: 480px;
  line-height: 1.75;
  position: relative;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--color-dark-2);
  padding-block: var(--space-16) var(--space-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand p {
  font-family: var(--font-inter);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-4);
  line-height: 1.7;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer__social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.4);
  transition: color var(--duration-fast), border-color var(--duration-fast), background var(--duration-fast);
}

.footer__social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

.footer__nav-group h4 {
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--space-5);
}

.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav-group a {
  font-family: var(--font-inter);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--duration-fast);
}

.footer__nav-group a:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.footer__bottom p {
  font-family: var(--font-inter);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer__bottom-links a {
  font-family: var(--font-inter);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  transition: color var(--duration-fast);
}

.footer__bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 0%, transparent 80%);
  opacity: 0.4;
}

.page-hero .container { position: relative; }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.page-hero__sub {
  font-family: var(--font-inter);
  font-size: var(--text-md);
  color: var(--color-text-3);
  max-width: 520px;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.2); }
}

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

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--duration-slower) var(--ease-out),
    transform var(--duration-slower) var(--ease-out);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up--d1 { transition-delay: 80ms; }
.fade-up--d2 { transition-delay: 160ms; }
.fade-up--d3 { transition-delay: 240ms; }
.fade-up--d4 { transition-delay: 320ms; }

/* Hero always visible */
.hero .fade-up {
  opacity: 1; transform: none;
  animation: slideUp var(--duration-slower) var(--ease-out) both;
}

.hero .fade-up--d1 { animation-delay: 80ms; }
.hero .fade-up--d2 { animation-delay: 160ms; }
.hero .fade-up--d3 { animation-delay: 240ms; }
.hero .fade-up--d4 { animation-delay: 320ms; }
.hero .fade-up--d5 { animation-delay: 400ms; }
