/* ===========================
   ROOT VARIABLES
=========================== */
:root {
  --accent: #a8ff3e;
  --accent-dark: #85d926;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --header-bg: rgba(10, 10, 10, 0.45);
  --header-border: rgba(255, 255, 255, 0.1);
  --header-blur: blur(18px);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(168,255,62,0.25);
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(168,255,62,0.04);
  --text-dim: rgba(255,255,255,0.4);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #0a0a0a;
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 17px;
}

a { text-decoration: none; color: inherit; }
.accent { color: var(--accent); }
.accent-green { color: var(--accent); }

/* ===========================
   GLOBAL CONTAINER
=========================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 1024px) {
  .container { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px) {
  .container { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  border-radius: 999px;
  background: var(--header-bg);
  border: 1px solid var(--header-border);
  backdrop-filter: var(--header-blur);
  -webkit-backdrop-filter: var(--header-blur);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(10,10,10,0.75);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 24px;
  gap: 16px;
  height: 64px;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 67px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: 999px;
  position: relative;
  letter-spacing: 0.01em;
  transition: color var(--transition), background var(--transition);
}

.nav__link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity var(--transition), transform var(--transition);
}

.nav__link:hover { color: var(--text-light); }
.nav__link:hover::before { opacity: 1; transform: scale(1); }
.nav__link.active { color: var(--text-light); }
.nav__link.active::before { opacity: 1; transform: scale(1); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: transform var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header__btn {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--accent);
  padding: 9px 22px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.header__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.header__btn:hover::before { left: 140%; }
.header__btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(168,255,62,0.35);
}
.header__btn:active { transform: translateY(0px); }

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  flex-shrink: 0;
}

.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-light);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.header__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0;
  border-top: 1px solid transparent;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease,
              padding 0.35s ease,
              visibility 0s linear 0.4s,
              border-color 0.35s ease;
}

.header__mobile-nav.open {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
  padding: 12px 20px 20px;
  border-top-color: var(--header-border);
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease,
              padding 0.35s ease,
              visibility 0s linear 0s,
              border-color 0.35s ease;
}

@media (max-width: 768px) {
  .header {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: 20px;
  }
  .header:not(.menu-open) { border-radius: 999px; }
  .header__inner { height: 52px; padding: 0 14px; }
  .header__logo img { height: 48px; }
  .header__nav { display: none; }
  .header__btn:not(.mobile-btn) { display: none; }
  .header__hamburger { display: flex; }
  .header.menu-open { border-radius: 20px; }
}

@media (max-width: 480px) {
  .header__inner { padding: 0 12px; height: 48px; }
  .header__logo img { height: 42px; }
}

/* ===========================
   ABOUT HERO
=========================== */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.45) 50%,
    rgba(10,10,10,0.85) 100%
  );
}

.about-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  animation: heroFadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.about-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(168, 255, 62, 0.35);
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(168, 255, 62, 0.08);
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.about-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-hero { max-height: 600px; }
  .about-hero__title { font-size: clamp(2.8rem, 12vw, 5rem); }
}

/* ===========================
   TYPEWRITER SECTION
=========================== */
.typewriter-section {
  width: 100%;
  background: #0a0a0a;
  padding: 90px 24px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.typewriter-section__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.typewriter-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.typewriter-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 10px;
}

.typewriter-brand { display: inline-block; }
.tw-shah { color: var(--text-light); }
.tw-infotech { color: var(--accent); }

.typewriter-cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  animation: blink 0.85s step-end infinite;
  margin-left: 2px;
  font-size: 1.1em;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@media (max-width: 480px) {
  .typewriter-section { padding: 70px 20px 50px; }
  .typewriter-heading { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}

/* ===========================
   WELCOME CONTENT SECTION
=========================== */
.welcome-section {
  width: 100%;
  background: #0a0a0a;
  padding: 90px 0 100px;
}

.welcome-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.welcome-left__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(168,255,62,0.08);
  border: 1px solid rgba(168,255,62,0.25);
  border-radius: 999px;
  padding: 6px 16px;
  width: fit-content;
}

.welcome-left__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(168,255,62,0.7);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

.welcome-left__title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-light);
}

.welcome-left__divider {
  width: 56px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(168,255,62,0.5);
}

.welcome-left__body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.9;
}

.welcome-stats {
  display: flex;
  gap: 32px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.welcome-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.welcome-stat__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.welcome-stat__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.welcome-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-right__frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: visible;
}

.welcome-right__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.welcome-right__frame:hover .welcome-right__img {
  transform: scale(1.02);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(168,255,62,0.15);
}

.welcome-right__glow {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(168,255,62,0.2), transparent 60%);
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}

.welcome-right__tag {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: #111;
  border: 1px solid rgba(168,255,62,0.3);
  border-radius: 999px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

@media (max-width: 1024px) {
  .welcome-section__inner { padding: 0 40px; gap: 60px; }
}

@media (max-width: 768px) {
  .welcome-section { padding: 70px 0 80px; }
  .welcome-section__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 48px;
  }
  .welcome-right { order: -1; }
  .welcome-right__tag { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .welcome-section__inner { padding: 0 16px; gap: 36px; }
  .welcome-left__title { font-size: 1.8rem; }
  .welcome-stats { gap: 20px; }
  .welcome-stat__num { font-size: 1.8rem; }
}

/* ===========================
   MISSION & VISION CARDS
=========================== */
.mv-section {
  width: 100%;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 100px 0 120px;
}

.mv-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.mv-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 28px 28px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.mv-card:hover::before { transform: scaleX(1); }

.mv-card:hover {
  border-color: rgba(168,255,62,0.3);
  box-shadow: 0 20px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(168,255,62,0.1);
  transform: translateY(-6px);
}

.mv-card__number {
  position: absolute;
  top: 28px;
  right: 36px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(168,255,62,0.06);
  line-height: 1;
  user-select: none;
  transition: color 0.4s ease;
}

.mv-card:hover .mv-card__number { color: rgba(168,255,62,0.1); }

.mv-card__icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(168,255,62,0.08);
  border: 1px solid rgba(168,255,62,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.mv-card:hover .mv-card__icon-wrap {
  background: rgba(168,255,62,0.15);
  border-color: rgba(168,255,62,0.45);
  transform: scale(1.08) rotate(-4deg);
}

.mv-card__icon { width: 30px; height: 30px; color: var(--accent); }

.mv-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.15;
}

.mv-card__divider {
  width: 44px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(168,255,62,0.4);
}

.mv-card__body {
  font-family: var(--font-body);
  font-size: clamp(0.97rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.9;
}

.mv-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.mv-pill {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(168,255,62,0.08);
  border: 1px solid rgba(168,255,62,0.25);
  border-radius: 999px;
  padding: 5px 16px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.mv-card:hover .mv-pill {
  background: rgba(168,255,62,0.14);
  border-color: rgba(168,255,62,0.45);
}

@media (max-width: 1024px) {
  .mv-section__inner { padding: 0 40px; }
  .mv-card { padding: 44px 36px; }
}

@media (max-width: 768px) {
  .mv-section { padding: 70px 0 80px; }
  .mv-section__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 24px;
  }
  .mv-card { padding: 40px 30px; }
  .mv-card__number { font-size: 3.5rem; top: 20px; right: 24px; }
}

@media (max-width: 480px) {
  .mv-section__inner { padding: 0 16px; }
  .mv-card { padding: 32px 22px; border-radius: 20px; }
  .mv-card__title { font-size: 1.6rem; }
  .mv-card__body { font-size: 0.95rem; }
}

/* ===========================
   CLIENTS HERO
=========================== */
.clients-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
}

.clients-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.clients-hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}

.clients-hero__glow--left {
  background: rgba(168, 255, 62, 0.06);
  top: -150px;
  left: -250px;
}

.clients-hero__glow--right {
  background: rgba(168, 255, 62, 0.05);
  bottom: -200px;
  right: -200px;
}

.clients-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.clients-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(168,255,62,0.08);
  border: 1px solid var(--border-accent);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseBadge 2s ease infinite;
}

@keyframes pulseBadge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.65); }
}

.clients-hero__title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 0 12px;
  animation: fadeUp 0.7s 0.1s ease both;
}

#typewriter-static {
  color: var(--text-light);
  white-space: nowrap;
}

#typewriter-accent {
  color: var(--accent);
  white-space: nowrap;
}

.clients-hero__sub {
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 52px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.clients-hero__stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: fadeUp 0.7s 0.3s ease both;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 18px 36px;
  backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 28px;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.accent-text { color: var(--accent); }

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.clients-hero__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-accent), transparent);
  z-index: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .clients-hero__stats { padding: 14px 20px; }
  .stat-item { padding: 0 16px; }
}

@media (max-width: 480px) {
  .clients-hero__stats { flex-wrap: wrap; border-radius: 20px; gap: 12px; padding: 16px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 12px; }
}

/* ===========================
   CLIENTS SECTION & GRID
=========================== */
.clients-section {
  padding: 80px 0 120px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-accent));
}

.eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, var(--border-accent));
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ===========================
   CLIENT CARD
=========================== */
.client-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  animation: cardIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
  transition: border-color 0.4s ease,
              box-shadow 0.4s ease,
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s ease;
}

.client-card:nth-child(1)  { animation-delay: 0.05s; }
.client-card:nth-child(2)  { animation-delay: 0.10s; }
.client-card:nth-child(3)  { animation-delay: 0.15s; }
.client-card:nth-child(4)  { animation-delay: 0.20s; }
.client-card:nth-child(5)  { animation-delay: 0.25s; }
.client-card:nth-child(6)  { animation-delay: 0.30s; }
.client-card:nth-child(7)  { animation-delay: 0.35s; }
.client-card:nth-child(8)  { animation-delay: 0.40s; }
.client-card:nth-child(9)  { animation-delay: 0.45s; }
.client-card:nth-child(10) { animation-delay: 0.50s; }
.client-card:nth-child(11) { animation-delay: 0.55s; }
.client-card:nth-child(12) { animation-delay: 0.60s; }
.client-card:nth-child(13) { animation-delay: 0.65s; }
.client-card:nth-child(14) { animation-delay: 0.70s; }
.client-card:nth-child(15) { animation-delay: 0.75s; }

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.client-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(168, 255, 62, 0.1),
              0 0 28px rgba(168, 255, 62, 0.07);
}

.client-card__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.client-card__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(168,255,62,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.client-card:hover .client-card__shine { left: 160%; }

.client-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(30%) brightness(0.95);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.client-card:hover .client-card__logo {
  filter: grayscale(0%) brightness(1.05);
  transform: scale(1.05);
}

.client-card--coming {
  border-style: solid;
  border-color: var(--border);
}

.client-card--coming:hover {
  border-color: var(--border-accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(168, 255, 62, 0.1),
              0 0 28px rgba(168, 255, 62, 0.07);
  transform: translateY(-5px) scale(1.02);
}

@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .clients-section { padding: 60px 0 80px; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal, .reveal-card {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--d1 { transition-delay: 0.12s; }
.reveal--d2 { transition-delay: 0.24s; }
.reveal--d3 { transition-delay: 0.38s; }

.reveal.visible, .reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   WE WORK WITH — HERO
=========================== */
.wwwith-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 100px;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,255,62,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,255,62,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}

.hero-orb--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(168,255,62,0.11) 0%, transparent 70%);
  top: -120px; left: 50%; transform: translateX(-50%);
  animation: orb-breathe 7s ease-in-out infinite;
}

.hero-orb--2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(168,255,62,0.07) 0%, transparent 70%);
  bottom: 80px; right: 8%;
  animation: orb-float 9s ease-in-out infinite 1s;
}

.hero-orb--3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(168,255,62,0.06) 0%, transparent 70%);
  top: 180px; left: 8%;
  animation: orb-float 8s ease-in-out infinite 2.5s;
}

@keyframes orb-breathe {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.12); }
}

@keyframes orb-float {
  0%, 100% { opacity: 0.7; transform: scale(1) translateY(0); }
  50% { opacity: 1; transform: scale(1.1) translateY(-16px); }
}

.wwwith-hero__inner {
  position: relative; z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(168,255,62,0.09);
  border: 1px solid var(--border-accent);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: dot-blink 1.4s ease-in-out infinite;
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: 1.2rem; color: var(--text-muted);
  font-weight: 600; margin-bottom: 40px;
}

.hero-stat {
  display: inline-flex; align-items: baseline; gap: 2px;
  flex-wrap: wrap; justify-content: center;
  background: rgba(168,255,62,0.07);
  border: 1px solid var(--border-accent);
  border-radius: 16px; padding: 16px 32px;
  position: relative; overflow: hidden;
}

.hero-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,255,62,0.5), transparent);
}

.hero-stat__num {
  font-size: 2.6rem; font-weight: 900;
  color: var(--accent); letter-spacing: -0.02em;
}

.hero-stat__plus {
  font-size: 1.6rem; font-weight: 900; color: var(--accent);
  margin-right: 12px;
}

.hero-stat__label {
  font-size: 0.95rem; font-weight: 600;
  color: var(--text-muted); align-self: center;
}

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}

.hero-scroll-hint span {
  display: block; width: 2px; height: 10px;
  background: var(--accent); border-radius: 2px;
  animation: scroll-cascade 1.4s ease-in-out infinite;
}

.hero-scroll-hint span:nth-child(2) { animation-delay: 0.15s; }
.hero-scroll-hint span:nth-child(3) { animation-delay: 0.3s; }

@keyframes scroll-cascade {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.6); }
}

/* ===========================
   CLIENT SECTIONS
=========================== */
.client-section {
  padding: 96px 0;
}

.client-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(168,255,62,0.08);
  border: 1px solid var(--border-accent);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
}

.section-tag svg { color: var(--accent); }

.client-section__title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.12;
  margin-bottom: 16px;
}

.client-section__desc {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.8; font-weight: 500;
}

/* ===========================
   CARDS GRID
=========================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
}

/* ===========================
   WORK CARD
=========================== */
.work-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  overflow: hidden;
  cursor: default;
  transition: border-color var(--transition), background var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

.work-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.work-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168,255,62,0.05) 0%, transparent 55%);
  opacity: 0; border-radius: var(--radius);
  transition: opacity var(--transition);
  pointer-events: none;
}

.work-card:hover {
  border-color: var(--border-accent);
  background: rgba(168,255,62,0.03);
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 40px rgba(168,255,62,0.06);
}

.work-card:hover::before { opacity: 1; }
.work-card:hover::after { opacity: 1; }

.work-card__icon-wrap {
  width: 54px; height: 54px;
  background: rgba(168,255,62,0.09);
  border: 1px solid var(--border-accent);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.work-card:hover .work-card__icon-wrap {
  background: rgba(168,255,62,0.16);
  box-shadow: 0 0 24px rgba(168,255,62,0.22);
  transform: rotate(-4deg) scale(1.07);
}

.work-card__icon {
  width: 26px; height: 26px;
  stroke: currentColor;
}

.work-card__num {
  position: absolute; top: 18px; right: 22px;
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.03); line-height: 1;
  pointer-events: none;
  transition: color var(--transition);
}

.work-card:hover .work-card__num { color: rgba(168,255,62,0.06); }

.work-card__title {
  font-size: 1.12rem; font-weight: 800;
  color: var(--text-light); margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.work-card__desc {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.78; font-weight: 500; margin-bottom: 22px;
}

.work-card__bar {
  height: 2px; background: var(--border); border-radius: 2px; overflow: hidden;
}

.work-card__bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-card__bar span { width: 100%; }

.work-card--wide {
  padding: 36px 32px 30px;
}

/* ===========================
   SECTION DIVIDER
=========================== */
.section-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 8px auto;
}

.divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.divider-icon {
  color: var(--accent); font-size: 1rem; opacity: 0.55;
}

/* ===========================
   TRUST STRIP
=========================== */
.trust-strip {
  margin: 0;
  padding: 40px 0;
  opacity: 1 !important;
  transform: none !important;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
  background: linear-gradient(135deg, rgba(168,255,62,0.04) 0%, rgba(255,255,255,0.02) 60%, rgba(168,255,62,0.03) 100%);
  border: 1px solid rgba(168,255,62,0.3);
  border-radius: 28px;
  padding: 52px 32px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-shadow:
    0 0 0 1px rgba(168,255,62,0.08) inset,
    0 24px 80px rgba(0,0,0,0.4),
    0 0 60px rgba(168,255,62,0.04);
}

/* Top accent line */
.trust-strip__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168,255,62,0.7), transparent);
  border-radius: 0 0 4px 4px;
}

/* Ambient glow */
.trust-strip__inner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 50% -10%, rgba(168,255,62,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 30% 50% at 15% 50%, rgba(168,255,62,0.03) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 85% 50%, rgba(168,255,62,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Stat items */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 8px 16px;
  transition: transform 0.3s ease;
}

.trust-item:hover { transform: translateY(-4px); }

/* Number + plus wrapper */
.trust-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(168,255,62,0.35);
  transition: text-shadow 0.3s ease;
}

.trust-item:hover .trust-num {
  text-shadow: 0 0 60px rgba(168,255,62,0.6);
}

.trust-plus {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.85;
}

.trust-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.trust-item:hover .trust-label { color: rgba(255,255,255,0.8); }

/* Vertical dividers */
.trust-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(168,255,62,0.25), transparent);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .trust-strip__inner { padding: 40px 20px; border-radius: 20px; }
  .trust-num { font-size: clamp(2rem, 6vw, 2.8rem); }
  .trust-divider { height: 44px; }
}

@media (max-width: 480px) {
  .trust-strip__inner {
    flex-wrap: wrap;
    border-radius: 16px;
    gap: 24px;
    padding: 32px 20px;
  }
  .trust-divider { display: none; }
  .trust-item { min-width: 45%; }
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  /* CHANGED: trimmed top margin so it sits flush after trust-strip */
  margin: 0 0 60px;
  position: relative; overflow: hidden;
}

.cta-banner__glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(168,255,62,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 28px; padding: 52px 56px;
  position: relative;
}

.cta-banner__inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,255,62,0.4), transparent);
}

.cta-banner__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; letter-spacing: -0.02em; margin-bottom: 10px;
}

.cta-banner__text p {
  font-size: 1rem; color: var(--text-muted); font-weight: 500;
}

.cta-banner__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #0a0a0a;
  font-family: var(--font-body); font-size: 1rem; font-weight: 800;
  padding: 16px 32px; border-radius: 999px;
  white-space: nowrap; flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cta-banner__btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168,255,62,0.4);
}

.cta-banner__btn svg { transition: transform var(--transition); }
.cta-banner__btn:hover svg { transform: translateX(4px); }

@media (max-width: 768px) {
  .cta-banner__inner { flex-direction: column; padding: 36px 28px; text-align: center; }
}

/* ===========================
   BLOG HERO
=========================== */
.blog-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 100px;
  overflow: hidden;
  text-align: center;
}

.blog-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.blog-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.blog-hero__glow--left {
  background: rgba(168, 255, 62, 0.07);
  top: -100px;
  left: -200px;
}

.blog-hero__glow--right {
  background: rgba(168, 255, 62, 0.05);
  bottom: -150px;
  right: -180px;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.blog-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(168,255,62,0.08);
  border: 1px solid var(--border-accent);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(168,255,62,0.6);
  animation: pulse 2s ease infinite;
}

.blog-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.blog-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
  animation: fadeUp 0.7s 0.2s ease both;
}

.br-hide { display: block; }

.blog-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.blog-hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollLine 1.8s ease infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@media (max-width: 768px) {
  .blog-hero { padding: 130px 20px 80px; min-height: 52vh; }
  .blog-hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .blog-hero__sub { font-size: 1rem; }
  .br-hide { display: none; }
}

@media (max-width: 480px) {
  .blog-hero { padding: 110px 16px 70px; }
  .blog-hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .blog-hero__label { font-size: 0.72rem; padding: 5px 14px; }
}

/* ===========================
   BLOG GRID SECTION
=========================== */
.blog-section {
  padding: 60px 0 120px;
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===========================
   BLOG CARD
=========================== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(36px);
  animation: cardReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-card:nth-child(2) { animation-delay: 0.12s; }
.blog-card:nth-child(3) { animation-delay: 0.19s; }
.blog-card:nth-child(4) { animation-delay: 0.26s; }
.blog-card:nth-child(5) { animation-delay: 0.33s; }
.blog-card:nth-child(6) { animation-delay: 0.40s; }

@keyframes cardReveal {
  to { opacity: 1; transform: translateY(0); }
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(168, 255, 62, 0.12),
              0 0 40px rgba(168, 255, 62, 0.06);
}

.blog-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), filter 0.55s ease;
}

.blog-card:hover .blog-card__img {
  transform: scale(1.06);
  filter: brightness(0.55);
}

.blog-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  z-index: 2;
  transition: opacity var(--transition);
}

.blog-card:hover .blog-card__tag { opacity: 0; }

.blog-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.blog-card__read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}

.blog-card__read-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.blog-card:hover .blog-card__read-btn::before { left: 150%; }

.blog-card:hover .blog-card__read-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.blog-card__read-btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 28px rgba(168,255,62,0.4);
  transform: translateY(-2px) scale(1.03) !important;
}

.blog-card__read-btn svg { transition: transform 0.3s ease; }
.blog-card__read-btn:hover svg { transform: translateX(4px); }

.blog-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text-light);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.blog-card:hover .blog-card__title { color: var(--accent); }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  position: relative;
  z-index: 2;
}

.footer__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 60px 55px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer__logo {
  display: inline-block;
  width: fit-content;
  line-height: 0;
}

.footer__logo img {
  height: 115px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.footer__logo:hover img { opacity: 0.85; }

.footer__tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 390px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 12px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-light);
  position: relative;
  padding-bottom: 14px;
}

.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.footer__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  margin-left: -14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.footer__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.footer__link:hover { color: var(--text-light); transform: translateX(4px); }
.footer__link:hover::before { opacity: 1; transform: scale(1); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 60px;
}

.footer__copy {
  max-width: 1300px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; padding: 60px 40px 50px; gap: 50px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { padding: 20px 40px; }
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; padding: 50px 24px 42px; gap: 42px; }
  .footer__logo img { height: 88px; }
  .footer__tagline { max-width: 100%; }
  .footer__bottom { padding: 18px 24px; }
}

@media (max-width: 480px) {
  .footer__inner { padding: 42px 20px 34px; }
  .footer__logo img { height: 70px; }
  .footer__col-title { font-size: 1.05rem; }
  .footer__link { font-size: 0.95rem; }
  .footer__copy { font-size: 0.82rem; line-height: 1.6; }
}