/* ================================================
   TRIM TECHNOLOGIES - PREMIUM CSS
   ================================================ */

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

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --emerald: #10b981;
  --emerald-light: #34d399;
  --emerald-dark: #059669;
  --emerald-50: rgba(16, 185, 129, 0.05);
  --emerald-100: rgba(16, 185, 129, 0.1);
  --emerald-200: rgba(16, 185, 129, 0.2);
  --bg: #030305;
  --bg-card: rgba(12, 12, 18, 0.8);
  --bg-card-solid: #0c0c12;
  --glass: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  --white: #f8f8fc;
  --gray-100: #e4e4ec;
  --gray-200: #c8c8d4;
  --gray-300: #a0a0b4;
  --gray-400: #787890;
  --gray-500: #585870;
  --gray-600: #3a3a52;
  --gray-700: #24243a;
  --gray-800: #18182a;
  --gray-900: #0e0e1a;
  --red: #ef4444;
  --amber: #f59e0b;
  --blue: #3b82f6;
  --purple: #a855f7;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --green: #22c55e;
  --orange: #f97316;
  --violet: #8b5cf6;
  --font-en: 'Inter', 'Space Grotesk', sans-serif;
  --font-ar: 'Noto Sans Arabic', 'Inter', sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

body {
  font-family: var(--font-en);
  background: var(--bg);
  color: var(--gray-300);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[dir="rtl"] {
  font-family: var(--font-ar);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--emerald);
}

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

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

/* ================================================
   ANIMATED ORBS
   ================================================ */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--emerald);
  top: -10%;
  left: -5%;
  animation: orbFloat1 25s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #06b6d4;
  bottom: 10%;
  right: -5%;
  animation: orbFloat2 30s ease-in-out infinite;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--purple);
  top: 50%;
  left: 40%;
  animation: orbFloat3 20s ease-in-out infinite;
}

@keyframes orbFloat1 {

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

  33% {
    transform: translate(80px, 60px)
  }

  66% {
    transform: translate(-40px, 100px)
  }
}

@keyframes orbFloat2 {

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

  33% {
    transform: translate(-70px, -50px)
  }

  66% {
    transform: translate(50px, -80px)
  }
}

@keyframes orbFloat3 {

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

  50% {
    transform: translate(-60px, 70px)
  }
}

/* ================================================
   CURSOR GLOW
   ================================================ */
#cursorGlow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: left, top;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(3, 3, 5, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.6rem 2rem;
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--emerald);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-center a {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  border-radius: 8px;
  transition: all 0.3s;
}

.nav-center a:hover {
  color: var(--white);
  background: var(--glass);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}

.lang-btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-en);
}

.lang-btn.active {
  background: var(--emerald);
  color: var(--bg);
}

.nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--emerald);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cta:hover {
  background: var(--emerald-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
}

/* Mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

/* ================================================
   HERO
   ================================================ */
.hero {
  padding-top: 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.6) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 5, 0.3) 0%, rgba(3, 3, 5, 0.6) 50%, var(--bg) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(16, 185, 129, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 185, 129, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--emerald-light);
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.4;
    transform: scale(1.6)
  }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease 0.12s forwards;
  opacity: 0;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 50%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--gray-400);
  max-width: 680px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.24s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.36s forwards;
  opacity: 0;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--emerald);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.35);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-700);
}

.btn-secondary:hover {
  border-color: var(--emerald);
  color: var(--emerald-light);
  background: var(--emerald-50);
  transform: translateY(-2px);
}

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

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
  animation: fadeInUp 0.8s ease 0.48s forwards;
  opacity: 0;
}

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

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-number .plus {
  color: var(--emerald);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ================================================
   MARQUEE TRUST
   ================================================ */
.trust-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.trust-label {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.marquee-wrap {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  white-space: nowrap;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.4;
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ================================================
   SECTIONS COMMON
   ================================================ */
.section {
  padding: 6rem 1.5rem;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--emerald);
  opacity: 0.4;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

body[dir="rtl"] .section-title,
body[dir="rtl"] .hero h1 {
  letter-spacing: 0;
}

/* ================================================
   PAIN POINTS
   ================================================ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.problem-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(239, 68, 68, 0.06);
  border-radius: var(--radius);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.12);
  transform: translateY(-4px);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(239, 68, 68, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #f87171;
}

.problem-icon svg {
  width: 20px;
  height: 20px;
}

.problem-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--gray-200);
  margin-bottom: 0.45rem;
}

.problem-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ================================================
   SERVICES
   ================================================ */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2.75rem;
}

.service-tab {
  padding: 0.45rem 1rem;
  background: var(--gray-900);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: var(--gray-500);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-en);
}

.service-tab:hover,
.service-tab.active {
  background: var(--emerald);
  color: var(--bg);
  border-color: var(--emerald);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--emerald-200), transparent, var(--emerald-200));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px var(--emerald-50);
  background: var(--bg-card-solid);
}

.service-card:hover::after {
  opacity: 1;
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.svc-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--emerald-light);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.svc-tag {
  padding: 0.2rem 0.55rem;
  background: var(--emerald-50);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 5px;
  font-size: 0.7rem;
  color: var(--emerald-light);
  font-weight: 500;
}

/* Featured */
.service-featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  border: 1px solid var(--emerald-100);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(16, 185, 129, 0.02) 100%);
}

.service-featured h3 {
  font-size: 1.35rem;
}

.service-featured p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.featured-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.featured-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.featured-check {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--emerald-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  margin-top: 1px;
}

.featured-check svg {
  width: 12px;
  height: 12px;
}

.featured-item span {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.featured-item strong {
  color: var(--gray-200);
}

/* ================================================
   WHY US
   ================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.why-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all 0.4s;
  backdrop-filter: blur(10px);
}

.why-card:hover {
  border-color: rgba(16, 185, 129, 0.12);
  transform: translateY(-4px);
}

.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.why-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.55;
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-100), var(--emerald-200), var(--emerald-100));
}

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

.process-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--bg-card-solid);
  border: 2px solid var(--emerald-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  transition: all 0.4s;
}

.process-step:hover .process-circle {
  border-color: var(--emerald);
  box-shadow: 0 0 30px var(--emerald-100);
  transform: scale(1.06);
}

.process-circle svg {
  width: 28px;
  height: 28px;
  color: var(--emerald);
}

.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 210px;
  margin: 0 auto;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.testimonial-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  border-color: rgba(16, 185, 129, 0.1);
}

.t-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.85rem;
  color: #fbbf24;
}

.t-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.t-text {
  font-size: 0.92rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--bg);
}

.t-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
}

.t-role {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ================================================
   CTA
   ================================================ */
.cta-section {
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, transparent 50%, rgba(16, 185, 129, 0.04) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.cta-note span {
  color: var(--emerald);
  font-weight: 600;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 3.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-top: 0.85rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--emerald-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.78rem;
  color: var(--gray-600);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: var(--emerald-50);
}

.footer-social a svg {
  width: 15px;
  height: 15px;
}

/* ================================================
   REVEAL ANIMATION
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.reveal-d4 {
  transition-delay: 0.32s;
}

.reveal-d5 {
  transition-delay: 0.40s;
}

.reveal-d6 {
  transition-delay: 0.48s;
}

/* ================================================
   RESPONSIVE
   ================================================ */

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

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

  .service-featured {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

/* Mobile */
@media(max-width:768px) {
  .nav-center {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 5, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 998;
  }

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

  .nav-center a {
    font-size: 1.15rem;
    padding: 0.6rem 1.2rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .desktop-lang {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

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

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

  .service-featured {
    padding: 1.5rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .section {
    padding: 4rem 1.25rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  /* Language switch in mobile menu */
  .lang-switch {
    order: 10;
    margin-top: 1rem;
  }

  .nav-center .nav-cta-mobile {
    display: inline-flex;
    order: 11;
    margin-top: 0.5rem;
  }
}

/* Small phones */
@media(max-width:380px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

/* Large screens */
@media(min-width:1440px) {
  .hero h1 {
    font-size: 4.5rem;
  }

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

/* RTL overrides */
body[dir="rtl"] .logo {
  flex-direction: row-reverse;
}

body[dir="rtl"] .nav-center a {
  direction: rtl;
}

body[dir="rtl"] .hero-buttons {
  direction: rtl;
}

body[dir="rtl"] .featured-item {
  flex-direction: row-reverse;
}

body[dir="rtl"] .t-author {
  flex-direction: row-reverse;
}

body[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
}

body[dir="rtl"] .section-eyebrow {
  direction: rtl;
}

body[dir="rtl"] .footer-grid {
  direction: rtl;
}

/* Print hidden */
@media print {

  .orb,
  .hero-bg,
  .hero-grid,
  #cursorGlow {
    display: none;
  }
}