/* ════════════════════════════════════════════
   NEXAFLOW — styles.css  v2.0  PRODUCTION
   Design: White/Light Blue, professional clean
   Fonts: Plus Jakarta Sans + Manrope
   ════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --off-white: #f8faff;
  --light-blue: #eef3ff;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --teal-400: #2dd4bf;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(37, 99, 235, 0.08);
  --shadow-lg: 0 8px 32px rgba(37, 99, 235, 0.12);
  --shadow-xl: 0 20px 60px rgba(37, 99, 235, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-500);
  border-radius: 4px;
}

/* ════════════════════════════════════════════
   SHARED UTILITIES
   ════════════════════════════════════════════ */
.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.section-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 56px;
}

.text-blue {
  color: var(--blue-600);
}

.text-green {
  color: var(--green-500);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--gray-700);
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
}

.btn-whatsapp:hover {
  border-color: #25d366;
  color: #15803d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp svg {
  color: #25d366;
}

/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.logo-nexa {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -0.5px;
}

.logo-flow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-400);
  letter-spacing: -0.5px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-600);
  background: var(--blue-50);
}

.dd-arrow {
  transition: transform 0.25s;
}

.nav-dropdown:hover .dd-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 280px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.dp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.dp-item:hover {
  background: var(--blue-50);
}

.dp-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.dp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dp-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
}

.dp-text small {
  font-size: 0.76rem;
  color: var(--gray-500);
}

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white !important;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(37, 99, 235, 0.35);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 800;
  padding: 16px 20px 100px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--gray-100);
}

.mobile-menu.open {
  display: flex;
}

.mob-link {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.mob-link:hover,
.mob-link.active {
  background: var(--blue-50);
  color: var(--blue-600);
}

.mob-section-label {
  padding: 8px 16px 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.mob-cta {
  margin: 12px 0 20px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white !important;
  padding: 16px !important;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  display: block !important;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
  min-height: 52px;
}

/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
.hero {
  padding: 100px 24px 80px;
  background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 50%, #f8f4ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-10px, 15px) scale(0.98);
  }
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Hero Left */
.hero-left {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--blue-100);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: slideInDown 0.6s ease both;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

h1 {
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-highlight {
  color: var(--blue-600);
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  border-radius: 2px;
  animation: lineGrow 0.8s ease 0.5s both;
}

@keyframes lineGrow {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-sub strong {
  color: var(--gray-800);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition);
}

.hero-stat:hover {
  transform: translateY(-2px);
}

.hero-stat svg {
  flex-shrink: 0;
}

.hero-stat div {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ── Hero Right ── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-person-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-person-bg {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #e0ecff 0%, #f0f9ff 60%, #e8f5e9 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: visible;
}

/* ── Hero Person Image ── */
.hero-person-img {
  position: absolute;
  bottom: 0;
  left: -120px;
  transform: none;
  height: 115%;
  width: auto;
  object-fit: contain;
  object-position: bottom left;
  z-index: 10;
  filter: drop-shadow(0 8px 24px rgba(37, 99, 235, 0.15));
}

@keyframes personFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* Decorative dots inside hero bg */
.hero-person-bg::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--blue-200) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.6;
}

.hero-person-bg::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, var(--teal-400) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.4;
}

/* Google Maps Result Card */
.google-card {
  position: absolute;
  top: 28px;
  right: -20px;
  width: 260px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  animation: floatCard 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }
}

.gc-search-bar {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.gc-google-logo {
  flex-shrink: 0;
}

.gc-input {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 5px 10px;
  font-size: 0.78rem;
  color: var(--gray-700);
}

.gc-tabs {
  display: flex;
  gap: 0;
  padding: 0 10px;
  border-bottom: 1px solid var(--gray-100);
  overflow-x: hidden;

}

.gc-tab {
  padding: 7px 10px;
  font-size: 0.73rem;
  color: var(--gray-500);
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}

.gc-tab.active {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
  font-weight: 600;
}

.gc-result {
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gc-result-left {
  flex: 1;
}

.gc-result-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.gc-result-subtitle {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.gc-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.gc-rating {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-800);
}

.gc-star-icons {
  font-size: 0.75rem;
  color: #fbbc04;
  letter-spacing: 1px;
}

.gc-reviews {
  font-size: 0.72rem;
  color: #1a73e8;
}

.gc-meta {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.gc-actions {
  display: flex;
  gap: 5px;
}

.gc-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: #1a73e8;
  cursor: pointer;
  transition: background 0.15s;
}

.gc-btn:hover {
  background: var(--blue-50);
}

.gc-result-right {
  flex-shrink: 0;
}

.gc-map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* +230% Stat Card */
.stat-card-hero {
  position: absolute;
  bottom: 28px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gray-100);
  animation: floatCard 3s ease-in-out infinite;
  animation-delay: 1.5s;
  z-index: 3;
}

.sc-text {
  display: flex;
  flex-direction: column;
}

.sc-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #22c55e;
}

.sc-text span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* ════════════════════════════════════════════
   SCROLL ANIMATIONS — FADE UP
   ════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease,
    transform 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ════════════════════════════════════════════
   TRUST / LOGO STRIP
   ════════════════════════════════════════════ */
.trust-strip {
  padding: 24px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.trust-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-400);
  white-space: nowrap;
  transition: color var(--transition);
}

.trust-logo-item:hover {
  color: var(--gray-600);
}

.trust-logo-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ════════════════════════════════════════════
   PROBLEMS SECTION
   ════════════════════════════════════════════ */
.problems-sec {
  padding: 20px 24px;
  background: var(--gray-50);
}

.problems-sec .section-title {
  margin-bottom: 40px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.problem-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  align-items: start;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.problem-card p,
.problem-card .pc-arrow {
  grid-column: 1 / -1;
}

.problem-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.problem-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.problem-card:hover::after {
  opacity: 1;
}

.pc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.problem-card:hover .pc-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.pc-icon-blue {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
}

.problem-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.problem-card .pc-arrow {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}

.problem-card:hover .pc-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════ */
.services-sec {
  padding: 80px 24px;
  background: var(--white);
}

.services-sec .section-label {
  text-align: center;
}

.services-sec .section-title {
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.svc-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  font-size: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover .svc-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}

.svc-learn {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.service-card:hover .svc-learn {
  gap: 8px;
}

/* ════════════════════════════════════════════
   RESULTS / STATS SECTION
   ════════════════════════════════════════════ */
.results-sec {
  padding: 80px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.results-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 32px;
  line-height: 1.2;
}

.results-real {
  color: var(--gray-900);
}

.results-growth {
  color: var(--blue-600);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-block {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.stat-block:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stat-block:hover::after {
  transform: scaleX(1);
}

.sb-icon {
  font-size: 1.6rem;
}

.sb-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-600);
}

.sb-label {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* Ranking chart card */
.ranking-chart-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition);
}

.ranking-chart-card:hover {
  box-shadow: var(--shadow-xl);
}

.rcc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.rcc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
}

.rcc-badge {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.rcc-graph {
  width: 100%;
  height: 100px;
  display: block;
}

.rcc-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--gray-400);
}

.rcc-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ════════════════════════════════════════════
   3-STEP PROCESS
   ════════════════════════════════════════════ */
.process-sec {
  padding: 80px 24px;
  background: var(--gray-50);
}

.process-sec .section-title {
  margin-bottom: 56px;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.process-step {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  position: relative;
  transition: all var(--transition);
}

.process-step:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.ps-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--transition);
}

.process-step:hover .ps-icon-wrap {
  transform: scale(1.08) rotate(-5deg);
}

.ps-blue {
  background: var(--blue-50);
}

.ps-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--blue-600);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.process-step p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.ps-arrow {
  flex-shrink: 0;
  opacity: 0.4;
}

/* ════════════════════════════════════════════
   CASE STUDIES SECTION
   ════════════════════════════════════════════ */
.case-studies-sec {
  padding: 80px 24px;
  background: var(--white);
}

.case-studies-sec .section-title {
  margin-bottom: 48px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.cs-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.cs-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.cs-card:hover::before {
  transform: scaleX(1);
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  width: fit-content;
}

.cs-badge-blue {
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-100);
}

.cs-badge-green {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #dcfce7;
}

.cs-badge-orange {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.cs-client {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
}

.cs-challenge {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.6;
  font-style: italic;
  padding: 10px 14px;
  background: var(--gray-50);
  border-left: 3px solid var(--blue-200);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.cs-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
}

.cs-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  transition: background var(--transition);
}

.cs-card:hover .cs-result {
  background: var(--blue-50);
}

.cs-result strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.cs-result span {
  font-size: 0.68rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ════════════════════════════════════════════
   TESTIMONIALS SECTION
   ════════════════════════════════════════════ */
.testimonials-sec {
  padding: 80px 24px;
  background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 100%);
  overflow: hidden;
}

.testimonials-sec .section-title {
  margin-bottom: 8px;
}

.testimonials-sec .section-sub {
  margin-bottom: 48px;
}

.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f0f6ff, transparent);
}

.testimonials-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.testimonials-track {
  display: flex;
  gap: 20px;
  animation: scrollTrack 35s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testi-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}

.testi-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
  transform: translateY(-3px);
}

.testi-stars {
  display: flex;
  gap: 2px;
  color: #fbbc04;
  font-size: 0.85rem;
}

.testi-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--gray-100);
  padding-top: 12px;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-800);
}

.testi-biz {
  font-size: 0.72rem;
  color: var(--gray-500);
}

.testi-badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   BLOG PREVIEW SECTION
   ════════════════════════════════════════════ */
.blog-sec {
  padding: 80px 24px;
  background: var(--gray-50);
}

.blog-sec .section-title {
  margin-bottom: 8px;
}

.blog-sec .section-sub {
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto 40px;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(37, 99, 235, 0.08));
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-cat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.45;
  transition: color var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--blue-600);
}

.blog-excerpt {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.72rem;
  color: var(--gray-400);
}

.blog-read-more {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-600);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.blog-card:hover .blog-read-more {
  gap: 8px;
}

.blog-cta-wrap {
  display: flex;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   FREE AUDIT / CONTACT SECTION
   ════════════════════════════════════════════ */
.audit-sec {
  padding: 80px 24px;
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
}

.audit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.audit-left .section-label {
  margin-bottom: 12px;
}

.audit-left h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.audit-left p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}

.audit-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.audit-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: transform var(--transition);
}

.audit-features li:hover {
  transform: translateX(4px);
}

/* Audit Form */
.audit-form {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--transition);
}

.audit-form:hover {
  box-shadow: var(--shadow-xl);
}

.audit-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.audit-form>p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group select option {
  background: var(--white);
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.12));
  opacity: 0;
  transition: opacity var(--transition);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.form-submit:hover::after {
  opacity: 1;
}

.form-submit:active {
  transform: translateY(0);
}

/* Spinner for submit */
.form-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.form-submit.loading::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-note {
  font-size: 0.76rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 10px;
}

.form-success {
  padding: 14px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-sm);
  color: #15803d;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  margin-top: 12px;
  animation: fadeInSuccess 0.4s ease;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════
   FAQ SECTION
   ════════════════════════════════════════════ */
.faq-sec {
  padding: 80px 24px;
  background: var(--white);
}

.faq-sec .section-title {
  margin-bottom: 8px;
}

.faq-sec .section-sub {
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-col {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  transition: background 0.15s;
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  gap: 16px;
  transition: color 0.2s;
  user-select: none;
}

.faq-item:hover .faq-q {
  color: var(--blue-600);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--blue-600);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  font-weight: 400;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue-600);
  color: white;
}

.faq-a {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s;
  padding-bottom: 0;
  padding-left: 4px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 18px;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 60px 24px 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo .logo-nexa {
  color: white;
}

.footer-brand .footer-logo .logo-flow {
  color: var(--blue-400);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: white;
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.fc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

a.fc-item:hover {
  color: white;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  margin-top: 4px;
}

.footer-wa-btn:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom-links a {
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* ════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
   ════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: max(28px, calc(env(safe-area-inset-bottom, 0px) + 28px));
  right: max(24px, calc(env(safe-area-inset-right, 0px) + 24px));
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  animation: floatWA 3s ease-in-out infinite;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

@keyframes floatWA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Tooltip on WA float */
.wa-float::before {
  content: 'Chat with us!';
  position: absolute;
  right: calc(100% + 12px);
  background: var(--gray-900);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s;
  pointer-events: none;
}

.wa-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════════
   SCROLL TO TOP BUTTON
   ════════════════════════════════════════════ */
#scroll-top {
  position: fixed;
  bottom: max(96px, calc(env(safe-area-inset-bottom, 0px) + 96px));
  left: max(24px, calc(env(safe-area-inset-right, 0px) + 24px));
  z-index: 801;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top:hover {
  background: var(--blue-600);
  color: white;
  border-color: var(--blue-600);
  transform: translateY(-3px);
}

/* ════════════════════════════════════════════
   COUNTER ANIMATION
   ════════════════════════════════════════════ */
.counter-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════════
   PAGE PROGRESS BAR
   ════════════════════════════════════════════ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ════════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  background: var(--gray-900);
  color: var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 850;
  display: none;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideInUp 0.4s ease;
}

#cookie-banner.show {
  display: flex;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--gray-400);
}

.cookie-text a {
  color: var(--blue-400);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.cookie-accept {
  flex: 1;
  background: var(--blue-600);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--blue-700);
}

.cookie-decline {
  flex: 1;
  background: transparent;
  color: var(--gray-400);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-decline:hover {
  border-color: var(--gray-500);
  color: var(--gray-200);
}

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   ════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 90px 20px 60px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-right {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }

  .hero-person-wrap {
    max-width: 320px;
    width: 100%;
  }

  .hero-person-bg {
    height: 320px;
    overflow: visible;
  }

  .hero-person-img {
    height: 100%;
    left: -30px;
    right: auto;
    z-index: 2;
    transform: scaleX(-1);
  }

 .google-card { 
  display: block; 
  width: min(220px, 95vw) !important; 
  left: 130px; 
  right: auto;
  top: 12px; 
  font-size: 0.7rem;
}

  .stat-card-hero {
    display: flex;
    right: -10px;
    bottom: 12px;
    padding: 8px 12px;
  }

  /* Problems */
  .problems-grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Results */
  .results-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Process */
  .process-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .process-step {
    max-width: 100%;
  }

  .ps-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  /* Case studies */
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testi-card {
    width: 260px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Audit */
  .audit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audit-form {
    padding: 24px 20px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-col:last-child .faq-item:first-child {
    border-top: none;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Form row */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Cookie */
  #cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  /* Show hero right section on mobile as stacked */
  .hero-right {
    display: flex;
  }

  .hero-person-wrap {
    max-width: 100%;
  }

  .hero-person-bg {
    height: 280px;
  }

  .google-card {
    width: 200px;
    right: -8px;
    top: 16px;
  }

  .stat-card-hero {
    right: -8px;
    bottom: 16px;
  }

  /* Bigger text on mobile */
  .hero-sub {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

  /* Problem cards horizontal scroll on mobile */
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Services 2-col on mobile looks better */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stats side by side */
  .hero-stats {
    gap: 16px;
  }

  .hero-stat strong {
    font-size: 1rem;
  }

  /* Process steps full width */
  .process-step {
    min-width: unset;
    max-width: 100%;
  }

  /* Bigger tap targets */
  .btn-primary,
  .btn-whatsapp {
    padding: 14px 24px;
    font-size: 1rem;
  }

  /* Case study results stack nicely */
  .cs-results {
    grid-template-columns: repeat(3, 1fr);
  }

  /* FAQ full width readable */
  .faq-q {
    font-size: 0.88rem;
  }

}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cs-results {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.85rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ════════════════════════════════════════════
   PRINT STYLES
   ════════════════════════════════════════════ */
@media print {

  #navbar,
  .wa-float,
  #scroll-top,
  #cookie-banner,
  .hamburger,
  .mobile-menu {
    display: none !important;
  }

  body {
    padding-top: 0;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}

.dropdown-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.rcc-trust-float {
  animation: floatCard 3s ease-in-out infinite;
}

#social-float-icons .social-float-icon {
  pointer-events: none;
}

#social-float-icons.open .social-float-icon {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: all;
}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {
  .hero {
    padding: 90px 24px 60px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-person-bg {
    height: 360px;
  }

  .hero-person-img {
    left: -60px;
    height: 110%;
  }

  .google-card {
    width: 220px;
    right: -10px;
  }

  .stat-card-hero {
    right: -10px;
  }

  .hero-stats {
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audit-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  #social-float-wrap {
    bottom: 80px !important;
  }
}

@media (max-width: 375px) {
  #scroll-top {
    display: none !important;
  }

  .mobile-menu {
    padding-bottom: 160px;
  }
}

body.dark {
  --white: #0f172a;
  --off-white: #1e293b;
  --gray-50: #1e293b;
  --gray-100: #334155;
  --gray-200: #475569;
  --gray-300: #64748b;
  --gray-400: #94a3b8;
  --gray-500: #cbd5e1;
  --gray-600: #e2e8f0;
  --gray-700: #f1f5f9;
  --gray-800: #f8faff;
  --gray-900: #ffffff;
  background: #0f172a;
  color: #e2e8f0;
}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark p,
body.dark span,
body.dark li,
body.dark a:not(.btn-primary):not(.nav-cta):not(.mob-cta) {
  color: inherit;
}

body.dark .hero-highlight {
  color: var(--blue-400);
}

body.dark #navbar {
  background: rgba(15, 23, 42, 0.95);
  border-bottom-color: #334155;
}

body.dark .hero {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

body.dark .hero-badge {
  background: #1e293b;
  border-color: #334155;
  color: var(--blue-300);
}

body.dark .hero-sub,
body.dark .hero-stat span {
  color: #94a3b8;
}

body.dark .btn-whatsapp {
  background: #1e293b;
  border-color: #475569;
  color: #e2e8f0;
}

body.dark .google-card,
body.dark .stat-card-hero {
  background: #1e293b;
  border-color: #334155;
}

body.dark .gc-input {
  background: #0f172a;
  border-color: #475569;
  color: #e2e8f0;
}

body.dark .gc-result-title,
body.dark .gc-rating {
  color: #f1f5f9;
}

body.dark .gc-meta {
  color: #94a3b8;
}

body.dark .gc-btn {
  background: #0f172a;
  border-color: #475569;
}

body.dark .problem-card,
body.dark .service-card,
body.dark .cs-card,
body.dark .stat-block,
body.dark .process-step,
body.dark .testi-card,
body.dark .blog-card,
body.dark .ranking-chart-card {
  background: #1e293b;
  border-color: #334155;
}

body.dark .problems-sec,
body.dark .process-sec,
body.dark .blog-sec {
  background: #0f172a;
}

body.dark .audit-sec {
  background: #1e293b;
  border-color: #334155;
}

body.dark .audit-form {
  background: #0f172a;
  border-color: #334155;
}

body.dark .form-group input,
body.dark .form-group select,
body.dark .form-group textarea {
  background: #1e293b;
  border-color: #475569;
  color: #e2e8f0;
}

body.dark .faq-item {
  border-color: #334155;
}

body.dark .faq-q {
  color: #f1f5f9;
}

body.dark .cs-challenge {
  background: #0f172a;
}

body.dark .cs-result {
  background: #0f172a;
}


/*footer dark theme*/
body.dark footer {
  background: #020617;
  border-top: 1px solid #1e293b;
}

body.dark .footer-col ul li a,
body.dark .footer-col h5,
body.dark .footer-brand p,
body.dark .fc-item,
body.dark .footer-bottom p,
body.dark .footer-bottom-links a {
  color: #94a3b8;
}

body.dark .footer-col h5 {
  color: #f1f5f9;
}

body.dark .social-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .logo-nexa {
  color: #f1f5f9;
}

/*for testimonial cards*/
body.dark .cs-card:hover .cs-result {
  background: #0f172a;
}

body.dark .cs-result span {
  color: #94a3b8;
}

body.dark .cs-challenge {
  background: #0f172a;
  border-left-color: var(--blue-400);
  color: #94a3b8;
}

body.dark .cs-client {
  color: #f1f5f9;
}

/*faq dark theme*/
body.dark .faq-icon {
  background: #1e293b;
  color: var(--blue-400);
  border: 1px solid #334155;
}

body.dark .faq-item.open .faq-icon {
  background: var(--blue-600);
  color: white;
  border-color: var(--blue-600);
}

body.dark .faq-item {
  border-color: #334155;
}

/*nav bar dark theme*/

body.dark .nav-link {
  color: #94a3b8;
}

body.dark .nav-link:hover,
body.dark .nav-link.active {
  color: var(--blue-400);
  background: #1e293b;
}

body.dark .dropdown-panel {
  background: #1e293b;
  border-color: #334155;
}

body.dark .dp-item:hover {
  background: #0f172a;
}

body.dark .dp-text strong {
  color: #f1f5f9;
}

body.dark .dp-text small {
  color: #94a3b8;
}

#social-float-btn {
  transition: transform 0.3s ease;
}

#social-float-btn:hover {
  transform: rotate(-15deg) scale(1.1);
}

/* ---------- BLOGS ---------- */
.blogs {
  padding: 80px 24px;
  background: var(--gray-50);
}
.blogs__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.blogs__inner .section-label {
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.blogs__carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-300);
  box-shadow: var(--shadow-xl);
}
.blog-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.blog-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.45;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.blog-card__excerpt {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.blog-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-card__link:hover { gap: 10px; }

/* Dark mode */
body.dark .blogs { background: var(--gray-50); }
body.dark .blog-card {
  background: #1e293b;
  border-color: #334155;
}
body.dark .blog-card__title { color: #f1f5f9; }

/* Mobile Carousel */
@media (max-width: 768px) {
  .blogs__carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .blogs__carousel::-webkit-scrollbar { display: none; }
  .blog-card {
    min-width: 80vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ════════════════════════════════════════════
   FOUNDER SECTION
   ════════════════════════════════════════════ */
.founder-sec {
  padding: 80px 24px;
  background: linear-gradient(160deg, #f0f6ff 0%, var(--white) 60%, #f5f0ff 100%);
  position: relative;
  overflow: hidden;
}

.founder-sec::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.founder-label-row {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--blue-100);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-700);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

/* ── GRID ── */
.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── LEFT: PHOTO COLUMN ── */
.founder-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-photo-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: visible;
}

/* The actual photo */
.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-200);
  display: block;
}

/* Shown when image fails / no-photo class */
.founder-photo-placeholder {
  display: none;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, var(--blue-50) 0%, var(--blue-100) 100%);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--blue-200);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.founder-photo-wrap.no-photo .founder-photo { display: none; }
.founder-photo-wrap.no-photo .founder-photo-placeholder { display: flex; }

.founder-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo-placeholder span {
  font-size: 0.82rem;
  color: var(--blue-600);
  font-weight: 600;
}

/* Floating card on photo */
.founder-float-card {
  position: absolute;
  bottom: -18px;
  left: 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: floatCard 3s ease-in-out infinite;
  z-index: 2;
}

.ffc-icon { font-size: 1.2rem; flex-shrink: 0; }

.founder-float-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.founder-float-card span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* Social buttons row */
.founder-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.founder-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  transition: all var(--transition);
  flex-shrink: 0;
}

.founder-social-btn:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.founder-social-wa:hover {
  border-color: #25d366;
  color: #15803d;
}

/* ── RIGHT: CONTENT COLUMN ── */
.founder-right {
  padding-top: 8px;
}

.founder-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.founder-meta-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.founder-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}

.founder-bio {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Pull quote */
.founder-quote {
  position: relative;
  background: linear-gradient(135deg, var(--blue-50), #f5f0ff);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px 36px;
  margin: 24px 0;
  overflow: hidden;
}

.founder-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue-500), var(--teal-400));
  border-radius: 4px 0 0 4px;
}

.founder-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--blue-300);
  position: absolute;
  top: 8px;
  left: 16px;
  font-weight: 700;
}

.founder-quote p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  padding-top: 8px;
}

.founder-quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fqa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 2px solid var(--blue-200);
}
.founder-quote-author strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-900);
}

.founder-quote-author span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* Value items */
.founder-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.founder-value-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: all var(--transition);
}

.founder-value-item:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.fvi-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.founder-value-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 3px;
}

.founder-value-item span {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* CTA row */
.founder-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.founder-learn-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-600);
  transition: gap var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.founder-learn-more:hover {
  color: var(--blue-700);
  gap: 8px;
}

/* ── DARK MODE ── */
body.dark .founder-sec {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #120f2a 100%);
}

body.dark .founder-badge {
  background: #1e293b;
  border-color: #334155;
  color: var(--blue-300);
}

body.dark .founder-photo-placeholder {
  background: linear-gradient(150deg, #1e293b, #2a3550);
  border-color: #334155;
}

body.dark .founder-float-card,
body.dark .founder-social-btn,
body.dark .founder-chip,
body.dark .founder-value-item {
  background: #1e293b;
  border-color: #334155;
}

body.dark .founder-float-card strong,
body.dark .founder-value-item strong {
  color: #f1f5f9;
}

body.dark .founder-float-card span,
body.dark .founder-value-item span,
body.dark .founder-chip {
  color: #94a3b8;
}

body.dark .founder-quote {
  background: linear-gradient(135deg, #1e293b, #1a1535);
  border-color: #334155;
}

body.dark .founder-quote p {
  color: var(--blue-300);
}

body.dark .founder-quote-author strong { color: #f1f5f9; }

body.dark .founder-bio { color: #94a3b8; }

body.dark .founder-social-btn {
  color: #94a3b8;
}
body.dark .founder-social-btn:hover {
  color: var(--blue-300);
  border-color: var(--blue-500);
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  .founder-grid {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }
}


/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 767px) {
  .founder-sec {
    padding: 60px 20px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* On mobile: photo goes full width, portrait style */
  .founder-left {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
  }

  .founder-photo-wrap {
    width: 100%;
    max-width: 320px;
    flex-shrink: unset;
  }

  .founder-photo,
  .founder-photo-placeholder {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    width: 100%;
  }

  .founder-float-card {
    display: flex;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  /* Socials go horizontal below photo */
  .founder-socials {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 8px;
    gap: 10px;
    width: 100%;
  }

  .founder-social-btn {
    font-size: 0.82rem;
    padding: 9px 16px;
    width: auto;
    justify-content: center;
  }

  .founder-name {
    font-size: 1.45rem;
  }

  .founder-meta-chips {
    gap: 6px;
  }

  .founder-chip {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .founder-bio {
    font-size: 0.9rem;
  }

  .founder-quote {
    padding: 20px 18px 16px 28px;
  }

  .founder-quote p {
    font-size: 0.9rem;
  }

  .founder-values {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .founder-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .founder-cta-row .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .founder-learn-more {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .founder-photo-wrap {
    max-width: 280px;
  }

  .founder-social-btn {
    font-size: 0.78rem;
    padding: 8px 12px;
  }
}

.founder-chip i,
.ffc-icon i {
  color: var(--blue-600);
  font-size: 0.85rem;
}

.fvi-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fvi-icon i {
  color: var(--blue-600);
  font-size: 0.95rem;
}

body.dark .fvi-icon {
  background: #1e293b;
  border-color: #334155;
}

body.dark .fvi-icon i,
body.dark .founder-chip i,
body.dark .ffc-icon i {
  color: var(--blue-400);
}
