/* =====================================================
   GMakesIT - Main Stylesheet
   Design System: Blue #2563EB + Navy #0F172A
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --orange: #0061c2;
  --orange-light: #60a5fa;
  --orange-dark: #2563eb;
  --orange-glow: rgba(59, 130, 246, 0.15);
  --navy: #0F172A;
  --navy-800: #1E293B;
  --navy-700: #334155;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --slate-bg: #F8FAFC;
  --white: #FFFFFF;
  --border: rgba(100, 116, 139, 0.12);
  --card-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --card-shadow-hover: 0 16px 48px rgba(37, 99, 235, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  color: var(--slate);
  line-height: 1.75;
}

/* ── Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-orange {
  color: var(--orange);
}

.text-white {
  color: var(--white);
}

.text-center {
  text-align: center;
}

/* ── Custom Brand Text ── */
.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy);
}

.brand-gmakes {
  color: #0061C2;
  /* Primary Logo Blue */
}

.brand-i {
  color: #EAB308;
  position: relative;
  display: inline-block;
}

.brand-i::after {
  content: "";
  width: 0.22em;
  height: 0.22em;
  background-color: #EF4444;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 0.23em;
  /* Moved down slightly */
  transform: translateX(-50%);
}

.brand-t {
  color: #0061C2;
  /* Primary Logo Blue */
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-700);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-orange {
  background: rgba(37, 99, 235, 0.12);
  color: var(--orange);
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.badge-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.badge-navy {
  background: rgba(15, 23, 42, 0.08);
  color: var(--navy);
  border: 1px solid rgba(15, 23, 42, 0.12);
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header .badge {
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* ── Section Layout ── */
section {
  padding: 100px 0;
}

.section-bg {
  background: var(--slate-bg);
}

.section-navy {
  background: var(--navy);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 1.5rem;
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 20px;
}

.divider.center {
  margin: 16px auto 20px;
}

/* ── Grid Layouts ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 40px;
  display: flex;
  align-items: center;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar i {
  color: var(--white);
  font-size: 0.95rem;
}

.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 12px;
  max-height: 240px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.top-social a {
  font-size: 1.1rem;
  transition: var(--transition);
}

.top-social a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 24px rgba(15, 23, 42, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px var(--orange-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(37, 99, 235, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
  border: 1px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--orange);
  border-color: rgba(37, 99, 235, 0.15);
}

.mobile-nav .btn {
  margin-top: 12px;
  justify-content: center;
}

/* ════════════════════════════════════════
   SERVICES DROPDOWN
════════════════════════════════════════ */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active {
  color: var(--orange);
  background: rgba(37, 99, 235, 0.08);
}

.nav-caret {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-dropdown-wrap:hover .nav-caret {
  transform: rotate(180deg);
}

/* The dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
  overflow: hidden;
}

/* Triangle pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-left: 1px solid rgba(15, 23, 42, 0.06);
  transform: translateX(-50%) rotate(45deg);
}

/* Show on hover */
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 2-column grid of service items */
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 16px;
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--navy);
  transition: var(--transition);
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: rgba(37, 99, 235, 0.07);
}

.nav-dropdown-item:hover .ndi-title {
  color: var(--orange);
}

.ndi-icon {
  width: 38px;
  height: 38px;
  background: rgba(37, 99, 235, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.nav-dropdown-item:hover .ndi-icon {
  background: rgba(37, 99, 235, 0.18);
}

.ndi-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ndi-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}

.ndi-sub {
  font-size: 0.78rem;
  color: var(--slate-light);
  font-weight: 400;
}

/* Footer link inside dropdown */
.nav-dropdown-footer {
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  background: var(--slate-bg);
}

.nav-dropdown-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap 0.2s ease;
}

.nav-dropdown-footer a:hover {
  gap: 12px;
}

/* ── Mobile Services Accordion ── */
.mobile-services-wrap {
  display: flex;
  flex-direction: column;
}

.mobile-services-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-family: var(--font-main);
  width: 100%;
}

.mobile-services-trigger:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--orange);
  border-color: rgba(37, 99, 235, 0.15);
}

.mobile-services-trigger i {
  transition: transform 0.3s ease;
}

.mobile-services-trigger.open i {
  transform: rotate(180deg);
}

.mobile-services-sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 0 0 14px 14px;
  border-left: 3px solid rgba(37, 99, 235, 0.2);
  margin-left: 16px;
}

.mobile-services-sub.open {
  max-height: 400px;
}

.mobile-services-sub a {
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
  color: var(--slate) !important;
  border-radius: 8px !important;
}

.mobile-services-sub a:hover {
  color: var(--orange) !important;
  background: rgba(37, 99, 235, 0.06) !important;
}

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 112px;
  background: var(--navy);
}

/* ── Slideshow Background ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.58) 0%, rgba(15, 23, 42, 0.35) 50%, rgba(15, 23, 42, 0.52) 100%);
  z-index: 1;
}

/* Animated floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: float 8s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--orange);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 350px;
  height: 350px;
  background: #0061c2;
  bottom: -50px;
  left: 30%;
  animation-delay: 3s;
}

.hero-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  background: var(--orange);
  bottom: 20%;
  right: 20%;
  animation-delay: 6s;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  margin-bottom: 28px;
}

.hero-heading {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-heading .highlight {
  color: var(--orange);
  position: relative;
}

.hero-sub {
  max-width: 620px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
  line-height: 1.7;
}



.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

/* ── Slideshow Dots ── */
.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.hero-stat-num span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* 
   SERVICES SECTION
 */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.2);
}

.svc-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.service-card:hover .svc-img {
  transform: scale(1.07);
}

.service-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.service-card-body p {
  font-size: 0.88rem;
  margin-bottom: 20px;
  color: var(--slate);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  /* Pushes the list to the bottom of the flex container */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 500;
  transition: var(--transition);
}

.service-features li i {
  color: var(--orange);
  /* Use the new blue theme color for checkmarks */
  font-size: 1.25rem;
  flex-shrink: 0;
}

.service-features li:hover {
  color: var(--navy);
  transform: translateX(4px);
}

/* ════════════════════════════════════════
   STATS SECTION
════════════════════════════════════════ */
.stats-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange);
  font-size: 1.4rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--orange);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
  text-align: center;
}

.about-img-badge .num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-img-badge .label {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
}

.about-text .badge {
  margin-bottom: 16px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.about-feature .dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   PROCESS SECTION
════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(37, 99, 235, 0.2));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08);
}

.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.875rem;
}

/* ════════════════════════════════════════
   PORTFOLIO PREVIEW
════════════════════════════════════════ */
.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-info .role {
  font-size: 0.8rem;
  color: var(--slate-light);
}

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.cta-section {
  background: var(--orange);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.why-item h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
}

/* ════════════════════════════════════════
   TEAM CARDS
════════════════════════════════════════ */
.team-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
  border: 1px solid #E2E8F0;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.team-img {
  position: relative;
  width: 100%;
  height: 250px;
  /* Tall portrait height */
  overflow: hidden;
}

.team-img img,
.team-img>div {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* Ensures faces stay in frame */
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
  /* Optional subtle zoom effect on hover */
}

.team-info {
  padding: 32px 24px;
}

.team-info h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-info .role-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
}

.team-info p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 0.85rem;
}

.contact-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.contact-text strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.footer-newsletter .newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--orange);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 190px 0 80px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb .current {
  color: var(--orange);
}

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(37, 99, 235, 0.2);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--orange);
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-input {
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

textarea.form-input {
  resize: vertical;
  min-height: 130px;
}

select.form-input {
  cursor: pointer;
}

/* ════════════════════════════════════════
   TEAM CARDS
════════════════════════════════════════ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.team-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--navy-800));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.team-info {
  padding: 24px;
}

.team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-info .role-tag {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.team-info p {
  font-size: 0.85rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--slate-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: var(--transition);
  font-size: 0.85rem;
}

.team-social a:hover {
  background: var(--orange);
  color: white;
}

/* ════════════════════════════════════════
   BLOG CARDS
════════════════════════════════════════ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--navy-800));
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--slate-light);
}

.blog-content h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content h3 a:hover {
  color: var(--orange);
}

.blog-content p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.read-more:hover {
  gap: 10px;
}

/* ════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.faq-question:hover {
  background: rgba(37, 99, 235, 0.04);
  color: var(--orange);
}

.faq-question.active {
  background: rgba(37, 99, 235, 0.06);
  color: var(--orange);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   TAGS & FILTERS
════════════════════════════════════════ */
.tag-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--slate);
}

.tag-btn:hover,
.tag-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

/* ════════════════════════════════════════
   VALUES CARDS
════════════════════════════════════════ */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(37, 99, 235, 0.2);
}

.value-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 12px;
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(-6px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(6px);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Reveal classes (activated by JS) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.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;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }

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

@media (max-width: 768px) {
  .top-bar-right {
    display: none;
    /* Hide social and support text on small screens to save space */
  }

  .top-bar-inner {
    justify-content: center;
  }

  .top-bar-left {
    width: 100%;
    justify-content: space-evenly;
    gap: 8px;
  }

  .top-bar-left a {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  section {
    padding: 70px 0;
  }

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

  .hamburger {
    display: flex;
  }

  .grid-3,
  .grid-2,
  .grid-4,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    gap: 28px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

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

/* ════════════════════════════════════════
     FAQ ACCORDION
════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  /* Slate border */
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.2);
  /* Blue border hover */
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--blue);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question {
  color: var(--blue);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.faq-item.active .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #F8FAFC;
}

.faq-answer-inner {
  padding: 24px;
  color: var(--slate);
  line-height: 1.8;
  font-size: 1.05rem;
}