/* ===================================================
   AVNEESH KABRA — Premium Portfolio CSS
   =================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --c-bg-dark: #09090B;
  --c-bg-dark-2: #0F0F12;
  --c-bg-dark-3: #16161A;
  --c-bg-light: #F5F5F7;
  --c-bg-light-2: #EBEBEE;
  --c-accent: #E8340F;
  --c-accent-2: #FF6B47;
  --c-accent-hover: #F04020;
  --c-text-white: #FAFAFA;
  --c-text-light: #E4E4E7;
  --c-text-muted: #71717A;
  --c-text-dark: #09090B;
  --c-text-dark-2: #3F3F46;
  --c-border-dark: rgba(255, 255, 255, 0.07);
  --c-border-light: rgba(0, 0, 0, 0.08);
  --c-glass-bg: rgba(9, 9, 11, 0.80);
  --c-glass-light: rgba(255, 255, 255, 0.05);
  --fs-card-title: clamp(19px, 1.7vw, 21px);
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Outfit', sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --transition-fast: 0.18s ease;
  --transition-mid: 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --max-w: 1200px;
  --section-px: clamp(20px, 5vw, 80px);
  --section-py: clamp(64px, 9vw, 120px);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── Scroll Progress Bar ──────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
  z-index: 10000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

body {
  font-family: var(--ff-body);
  background: var(--c-bg-dark);
  color: var(--c-text-white);
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--c-accent);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 62, 29, 0.5);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--c-accent);
  background: rgba(255, 62, 29, 0.06);
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.35);
}



.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--ff-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: var(--transition-mid);
  cursor: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: inherit;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(232, 52, 15, 0);
  z-index: 1;
  transition: color 0.4s cubic-bezier(0.76, 0, 0.24, 1), transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
  border-radius: inherit;
}

.btn-primary:hover {
  color: var(--c-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 52, 15, 0.35);
}

.btn-primary:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.btn-primary:hover .arrow-icon svg {
  animation: btnArrowSlide 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes btnArrowSlide {
  0% {
    transform: translate(0, 0);
  }

  49% {
    transform: translate(150%, -150%);
  }

  50% {
    opacity: 0;
    transform: translate(-150%, 150%);
  }

  51% {
    opacity: 1;
  }

  100% {
    transform: translate(0, 0);
  }
}

.btn-outline-dark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--c-text-light);
  background: var(--c-glass-light);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid var(--c-border-light);
  color: var(--c-text-dark);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.arrow-icon {
  width: 11px;
  height: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.arrow-icon svg {
  width: 100% !important;
  height: 100% !important;
}

.btn:hover .arrow-icon {
  transform: translate(3px, -3px);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 4%;
  height: 100%;
}

.navbar.scrolled {
  background: var(--c-glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--c-border-dark);
}

.nav-logo {
  font-family: var(--ff-heading);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-text-white);
  transition: opacity var(--transition-fast);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo span {
  color: var(--c-accent);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-light);
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width var(--transition-mid);
}

.nav-links a:hover {
  color: var(--c-accent-2);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 12.5px;
  padding: 9px 20px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-text-white);
  border-radius: 2px;
  transition: var(--transition-mid);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  background: var(--c-bg-dark);
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #09090B;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Layered gradient system centered on the right-shifted face (72% horizontal, 35% vertical) 
     to blend the colored photo naturally with the solid black background */
  background:
    linear-gradient(90deg, #09090B 40%, transparent 80%),
    linear-gradient(270deg, #09090B 8%, transparent 55%),
    radial-gradient(circle at 72% 35%, transparent 20%, #09090B 62%);
  z-index: 1;
}

/* Subtle red ambient glow */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232, 52, 15, 0.05) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-bg img {
  position: absolute;
  right: 0;
  top: -10%;
  width: auto;
  height: 120%;
  opacity: 0.85;
  filter: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 82px 4% clamp(40px, 6vh, 90px);
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 60px;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.hero-left-col {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-bottom: 0;
}

.hero-statement {
  display: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-right-col {
  display: block;
}

.hero-intro-title {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* .hero-intro-tagline {
  font-size: clamp(14px, 1.15vw, 15.5px);
  line-height: 1.8;
  color: var(--c-text-muted);
  margin-bottom: 36px;
  max-width: 620px;
} */

.hero-intro-desc {
  font-size: clamp(14px, 1.15vw, 15.5px);
  line-height: 1.8;
  color: #d2d2d5;
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero-scroll span {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.scroll-line {
  width: 1.5px;
  height: 45px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  animation: scroll-anim 2.2s ease infinite;
}

@keyframes scroll-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* =============================================
   STATS SECTION — QUICK SNAPSHOT
   ============================================= */
.stats {
  background: var(--c-bg-light);
  padding: var(--section-py) 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-light), transparent);
}

.stats-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.stats-header {
  margin-bottom: 48px;
  text-align: left;
  width: 100%;
}

.stats-header p {
  font-size: 14.5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-border-light);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
}

.stat-card {
  background: #fff;
  padding: 32px 24px 28px;
  transition: background var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-card:hover {
  background: #f9f9fb;
}

/* top accent line on hover */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--c-text-dark-2);
  margin: 0;
}

/* =============================================
   BUSINESSES SECTION
   ============================================= */
.businesses {
  background: var(--c-bg-dark);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--c-border-dark);
}

.businesses-header {
  max-width: 1360px;
  margin: 0 auto 56px;
  padding: 0 4%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.businesses-header>div>.section-label {
  margin-bottom: 18px;
}

.businesses-header h2 {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--c-text-white);
  line-height: 1.08;
}

.businesses-header p {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.38);
  max-width: 380px;
  margin-left: auto;
  align-self: flex-end;
}

.businesses-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 4%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.biz-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-bg-dark-3);
}

.biz-card img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease;
  filter: brightness(0.68) saturate(0.85);
}

.biz-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.45) saturate(0.65);
}

/* Shine sweep on hover */
.biz-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 2;
}

.biz-card:hover::after {
  transform: translateX(100%);
}

.biz-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(9, 9, 11, 0.96) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  transition: var(--transition-mid);
  z-index: 1;
}

.biz-logo-wrapper {
  position: absolute;
  top: 28px;
  left: 32px;
  width: 56px;
  height: 56px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.biz-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  filter: brightness(1) contrast(1) !important;
}

.biz-card:hover .biz-logo-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.biz-tag {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--c-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.biz-name {
  font-family: var(--ff-heading);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 8px;
}

.biz-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s ease;
}

.biz-card:hover .biz-desc {
  opacity: 1;
  max-height: 180px;
  margin-top: 8px;
}

.biz-arrow {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 0.4s ease, transform 0.4s ease, background var(--transition-fast), border-color var(--transition-fast);
  z-index: 3;
}

.biz-card:hover .biz-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.biz-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform var(--transition-fast);
}

.biz-card:hover .biz-arrow:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
}

/* =============================================
   EXPERIENCE SECTION
   ============================================= */
.experience {
  background: var(--c-bg-light);
  padding: var(--section-py) 0;
}

.experience-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 4%;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.exp-left .section-label {
  color: var(--c-text-muted);
  margin-bottom: 20px;
}

.exp-left h2 {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--c-text-dark);
  line-height: 1.1;
  margin-bottom: 18px;
}

.exp-left p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-dark-2);
  margin-bottom: 32px;
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.exp-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 32px;
  padding-top: 8px;
}

.exp-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--c-accent) 0%, rgba(232, 52, 15, 0.15) 70%, transparent 100%);
}

.exp-item {
  position: relative;
  padding-bottom: 44px;
  transition: var(--transition-fast);
}

.exp-item:last-child {
  padding-bottom: 0;
}

.exp-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  background: var(--c-bg-light);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.exp-item:hover::before {
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232, 52, 15, 0.12);
}

.exp-date {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 6px;
}

.exp-role {
  font-family: var(--ff-heading);
  font-size: var(--fs-card-title);
  /* was: 17px */
  font-weight: 700;
  color: var(--c-text-dark);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.exp-company {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-bottom: 12px;
}

.exp-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--c-text-dark-2);
}

.exp-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.exp-skill-tag {
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--c-bg-light-2);
  color: var(--c-text-dark-2);
  border: 1px solid var(--c-border-light);
  letter-spacing: 0.01em;
}

/* =============================================
   TESTIMONIAL SECTION
   ============================================= */
.testimonial {
  background: #09090B;
  padding: clamp(80px, 10vh, 140px) var(--section-px);
  position: relative;
}

.testimonial-inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testi-slides {
  position: relative;
}

.testi-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.testi-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testi-quote-icon {
  margin-bottom: 24px;
  color: rgb(255 255 255 / 71%);
}

.testi-quote-icon svg {
  transform: scaleX(-1);
  display: block;
}

.testi-quote {
  font-family: var(--ff-heading);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 44px;
  font-style: normal;
}

.testi-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  width: 100%;
  margin-bottom: 32px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.testi-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-accent);
  background: rgba(232, 52, 15, 0.08);
}

.testi-name {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.testi-role {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 2px;
}

.testi-nav {
  position: absolute;
  right: 0;
  bottom: 12px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: none;
}

.testi-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .testi-nav {
    position: static;
    margin-top: 24px;
    justify-content: flex-start;
  }
}

/* =============================================
   FOCUS AREAS SECTION
   ============================================= */
.focus {
  background: var(--c-bg-light);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--c-border-light);
  position: relative;
}

.focus-header {
  max-width: 1360px;
  margin: 0 auto 56px;
  padding: 0 4%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.focus-header>div>.section-label {
  margin-bottom: 18px;
}

.focus-header p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-dark-2);
  max-width: 380px;
  margin-left: auto;
  align-self: flex-end;
}

.focus-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.focus-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.focus-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: none;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.focus-img-wrapper img {
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.focus-img-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.focus-item:hover .focus-img-wrapper img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1) brightness(1);
}

/* Color Fallbacks from Reference */
.bg-cream-blue {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.bg-cream-hand {
  background: linear-gradient(135deg, #fdf4e3 0%, #fae8c3 100%);
}

.bg-cream-cup {
  background: linear-gradient(135deg, #f5e6d3 0%, #e5d3be 100%);
}

.bg-focus-orange {
  background: linear-gradient(135deg, #fff1e6 0%, #fdd5b1 100%);
}

.bg-focus-teal {
  background: linear-gradient(135deg, #e6f7f5 0%, #b2e8e2 100%);
}

.bg-focus-slate {
  background: linear-gradient(135deg, #eef2f7 0%, #cdd8e8 100%);
}

.focus-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  pointer-events: none;
}

.focus-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-card-title);
  /* was: 21px */
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--c-text-dark);
  margin: 0;
  line-height: 1.2;
  transition: color var(--transition-fast);
}

.focus-item:hover .focus-title {
  color: var(--c-accent);
}

.focus-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--c-text-dark-2);
  margin: 0;
}

/* =============================================
   ONLINE PRESENCE SECTION
   ============================================= */
.online {
  background: var(--c-bg-light);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--c-border-light);
}

.online-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 4%;
}

.online-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.online-header>div>.section-label {
  margin-bottom: 18px;
}

.online-header p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--c-text-dark-2);
  max-width: 380px;
  margin-left: auto;
  align-self: flex-end;
}

.online-mentions {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  /* increased gap to look premium with white cards */
}

.online-mention {
  grid-column: span 2;
  background: #ffffff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg);
  /* matches our standard radius */
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Items 4 and 5 span full half-width (3 of 6 columns) */
.online-mention:nth-child(4),
.online-mention:nth-child(5) {
  grid-column: span 3;
}

/* Top accent glow on hover */
.online-mention::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.online-mention:hover::before {
  transform: scaleX(1);
}

.online-mention:hover {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

/* Numbered badge from data-num attribute */
.online-mention::after {
  content: attr(data-num);
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.15);
}

.online-mention-platform {
  font-family: var(--ff-heading);
  font-size: var(--fs-card-title);
  /* was: 18px */
  font-weight: 800;
  color: var(--c-text-dark);
  line-height: 1.3;
  letter-spacing: -0.02em;
  padding-right: 36px;
}

.online-mention-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.online-mention-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin: 0;
  flex: 1;
}

.online-mention-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-accent);
  text-decoration: none;
  transition: gap var(--transition-fast), opacity var(--transition-fast);
}

.online-mention-link:hover {
  gap: 10px;
  opacity: 0.85;
}

.mention-arrow {
  font-size: 14px;
  transition: transform var(--transition-fast);
}

.online-mention-link:hover .mention-arrow {
  transform: translate(2px, -2px);
}

.online-mention-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER / LET'S CONNECT
   ============================================= */
.footer {
  background: var(--c-bg-dark-2);
  /* elegant shift from #09090B to #0F0F12 */
  padding: var(--section-py) 0 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* glowing gradient divider line at top of footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 52, 15, 0.28) 50%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* ambient glow at top of footer */
.footer::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(232, 52, 15, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 1;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  align-items: start;
}

.footer-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-label {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--c-text-white);
  line-height: 1.12;
  margin-bottom: 24px;
}

.footer-heading span {
  color: var(--c-accent);
}

.footer-sub {
  font-size: 15px;
  color: var(--c-text-muted);
  max-width: 500px;
  margin: 0 0 36px 0;
  line-height: 1.8;
  text-align: left;
}

.footer-cta {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-right-col {
  display: flex;
  flex-direction: column;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
}

.footer-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-info-title {
  font-family: var(--ff-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.footer-info-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-nav a {
  font-size: 13px;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-info-nav a:hover {
  color: var(--c-text-white);
}

.footer-details-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.footer-details-content p {
  margin: 0;
}

.footer-details-content strong {
  color: var(--c-text-white);
  font-weight: 600;
}

.footer-detail-link {
  color: var(--c-accent);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-detail-link:hover {
  opacity: 0.8;
}

.footer-divider {
  max-width: 1360px;
  margin: 0 auto;
  width: calc(100% - 8%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-dark), transparent);
}

.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--c-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--c-text-white);
  background: var(--c-glass-light);
}

.footer-copy,
.footer-powered {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.01em;
}

.footer-powered a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-powered a:hover {
  color: var(--c-accent);
}

.footer-bg-name {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-heading);
  font-size: clamp(72px, 13vw, 170px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  /* subtle gradient shimmer */
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 40%, rgba(232, 52, 15, 0.08) 60%, transparent 100%);
  -webkit-background-clip: text;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
    height: auto;
  }

  .hero-left-col {
    padding-bottom: 0;
    align-self: center;
    max-width: 100%;
  }

  .hero-right-col {
    display: none;
  }

  .hero-bg img {
    object-position: center center;
    opacity: 0.55;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .stat-card {
    border: 1px solid var(--c-border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  }

  .businesses-header {
    grid-template-columns: 1fr;
  }

  .businesses-header p {
    margin-left: 0;
  }

  .experience-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .focus-header {
    grid-template-columns: 1fr;
  }

  .focus-header p {
    margin-left: 0;
  }

  .online-header {
    grid-template-columns: 1fr;
  }

  .online-header p {
    margin-left: 0;
  }

  .online-mentions {
    grid-template-columns: repeat(2, 1fr);
  }

  .online-mention,
  .online-mention:nth-child(4),
  .online-mention:nth-child(5) {
    grid-column: span 1;
  }

  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .businesses-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }

  .online-mentions {
    grid-template-columns: 1fr;
  }

  .online-mention,
  .online-mention:nth-child(4),
  .online-mention:nth-child(5) {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .testi-slides {
    min-height: 320px;
  }
}

@media (max-width: 480px) {


  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta {
    flex-direction: column;
    align-items: center;
  }
}