/* ==========================================================================
   Shams Al-Maha IT Solutions - Main Stylesheet
   ========================================================================== */

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

:root {
  --primary: #1B9E4F;
  --primary-light: #2DC76A;
  --primary-dark: #0F7A38;
  --accent: #00D9A3;
  --accent-2: #4FACFE;
  --bg-dark: #0A0E1A;
  --bg-darker: #050810;
  --bg-card: #0F1623;
  --bg-card-hover: #131C2E;
  --text-light: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(27, 158, 79, 0.3);

  --gradient-primary: linear-gradient(135deg, #1B9E4F 0%, #00D9A3 100%);
  --gradient-accent: linear-gradient(135deg, #00D9A3 0%, #4FACFE 100%);
  --gradient-dark: linear-gradient(180deg, #0A0E1A 0%, #050810 100%);
  --gradient-mesh: radial-gradient(at 20% 0%, rgba(27, 158, 79, 0.15) 0%, transparent 50%),
                   radial-gradient(at 80% 30%, rgba(0, 217, 163, 0.12) 0%, transparent 50%),
                   radial-gradient(at 50% 100%, rgba(79, 172, 254, 0.08) 0%, transparent 50%);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(27, 158, 79, 0.3);
  --shadow-glow-strong: 0 0 60px rgba(27, 158, 79, 0.5);

  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1280px;
  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  z-index: 10000;
}
.cursor-outline {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  transition: width 0.3s ease, height 0.3s ease, transform 0.15s ease, border-color 0.2s ease;
}
.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  border-color: var(--primary);
  background: rgba(27, 158, 79, 0.1);
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-outline { display: none; }
  body { cursor: auto; }
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-darker);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
}
.loader-circle {
  animation: loader-spin 1.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes loader-spin {
  0% { stroke-dashoffset: 280; transform: rotate(0deg); }
  50% { stroke-dashoffset: 70; }
  100% { stroke-dashoffset: 280; transform: rotate(360deg); }
}
.loader-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text-light);
  margin-top: 16px;
}
.loader-bar {
  margin: 20px auto 0;
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  animation: loader-fill 1.8s ease-in-out forwards;
}
@keyframes loader-fill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

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

::selection {
  background: var(--primary);
  color: var(--text-light);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Utility */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 6px 24px rgba(27, 158, 79, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(27, 158, 79, 0.55);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(27, 158, 79, 0.08);
  transform: translateY(-2px);
}
.btn-outline-large {
  padding: 18px 36px;
  font-size: 16px;
}
.btn-large {
  padding: 18px 38px;
  font-size: 16px;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background: #1eb556;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: rgba(10, 14, 26, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.85);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
}
.logo-tag {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 4px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}
.nav-link.active {
  color: var(--primary-light);
  background: rgba(27, 158, 79, 0.1);
}
.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 10px 22px !important;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: var(--gradient-primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 158, 79, 0.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all var(--transition-fast);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 0 80px;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 158, 79, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 158, 79, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black, transparent);
  z-index: 1;
}
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.orb-1 {
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 158, 79, 0.6), transparent);
  animation: orb-float 12s ease-in-out infinite;
}
.orb-2 {
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 217, 163, 0.5), transparent);
  animation: orb-float 14s ease-in-out infinite reverse;
}
.orb-3 {
  top: 40%;
  right: 30%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.3), transparent);
  animation: orb-float 16s ease-in-out infinite;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(27, 158, 79, 0.1);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--primary-light);
  margin-bottom: 28px;
  font-weight: 500;
  animation: fadeInDown 0.8s 0.3s both;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0; transform: scale(2); }
}

.hero-title {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 28px;
}
.title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}
.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s forwards;
}

.hero-typing {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 36px;
  height: 28px;
  opacity: 0;
  animation: fadeInUp 0.8s 1s forwards;
}
.typing-prefix {
  color: var(--text-muted);
  margin-right: 8px;
}
.typing-cursor {
  animation: blink 1s infinite;
  color: var(--primary);
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s forwards;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeInUp 0.8s 1.4s forwards;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num, .stat-suffix {
  display: inline;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 500px;
  opacity: 0;
  animation: fadeInUp 1s 1.6s forwards;
}
.visual-card {
  position: relative;
  background: rgba(15, 22, 35, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.card-floating {
  animation: card-float 6s ease-in-out infinite;
}
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-glow {
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  filter: blur(20px);
  z-index: -1;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.card-dots {
  display: flex;
  gap: 6px;
}
.card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.card-dots span:nth-child(1) { background: #FF5F56; }
.card-dots span:nth-child(2) { background: #FFBD2E; }
.card-dots span:nth-child(3) { background: #27C93F; }
.card-title-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.card-body {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.8;
}
.code-line {
  white-space: pre;
}
.c-purple { color: #C778DD; }
.c-blue { color: #82AAFF; }
.c-green { color: var(--primary-light); }
.c-yellow { color: #FFCB6B; }
.c-orange { color: #F78C6C; }
.c-comment { color: var(--text-dim); }

.floating-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-light);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.icon-1 {
  top: -30px;
  right: -20px;
  animation: icon-float 5s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(27, 158, 79, 0.2), rgba(0, 217, 163, 0.1));
  color: var(--accent);
}
.icon-2 {
  bottom: 20px;
  left: -30px;
  animation: icon-float 6s ease-in-out infinite 0.5s;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 217, 163, 0.1));
  color: var(--accent-2);
}
.icon-3 {
  top: 50%;
  right: -40px;
  animation: icon-float 7s ease-in-out infinite 1s;
  background: linear-gradient(135deg, rgba(247, 140, 108, 0.2), rgba(255, 203, 107, 0.1));
  color: #FFCB6B;
}
.icon-4 {
  bottom: -30px;
  right: 40%;
  animation: icon-float 6s ease-in-out infinite 1.5s;
  background: linear-gradient(135deg, rgba(199, 120, 221, 0.2), rgba(130, 170, 255, 0.1));
  color: #C778DD;
}
@keyframes icon-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  z-index: 3;
  animation: fadeInUp 1s 1.8s both;
}
.mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}
.wheel {
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--primary-light);
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}
.scroll-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Section Common */
section {
  padding: 100px 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tag-line {
  width: 32px;
  height: 1px;
  background: var(--primary-light);
}
.section-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Trusted Bar */
.trusted-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(15, 22, 35, 0.4);
}
.trusted-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trusted-marquee {
  overflow: hidden;
  position: relative;
}
.trusted-marquee::before, .trusted-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.trusted-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}
.trusted-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark), transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trusted-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.trusted-item i {
  color: var(--primary-light);
  font-size: 18px;
}

/* Services Preview */
.services-preview {
  background: var(--bg-dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}
.card-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(27, 158, 79, 0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.service-card:hover .card-shine {
  left: 100%;
}
.service-card-featured {
  background: linear-gradient(180deg, rgba(27, 158, 79, 0.08) 0%, var(--bg-card) 100%);
  border-color: var(--border-bright);
}
.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--gradient-primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}
.service-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  border-radius: 16px;
  opacity: 0.15;
  transition: opacity var(--transition);
}
.service-card:hover .service-icon-bg {
  opacity: 0.3;
}
.service-icon-wrap i {
  font-size: 28px;
  color: var(--primary-light);
  position: relative;
  z-index: 1;
}
.service-name {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-features {
  margin-bottom: 24px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
}
.service-features i {
  color: var(--primary-light);
  font-size: 12px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 14px;
  transition: gap var(--transition);
}
.service-link:hover {
  gap: 14px;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Why Us */
.why-us {
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  pointer-events: none;
}
.bg-shape-1 {
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary);
}
.bg-shape-2 {
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--accent);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-content .section-tag, .ai-content .section-tag {
  margin-bottom: 16px;
}
.why-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.why-content .section-subtitle {
  margin-bottom: 40px;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(27, 158, 79, 0.1);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 20px;
}
.why-feature h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.why-feature p {
  color: var(--text-muted);
  font-size: 15px;
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.why-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}
.why-stat-card.primary {
  background: linear-gradient(135deg, rgba(27, 158, 79, 0.15), rgba(0, 217, 163, 0.05));
  border-color: var(--border-bright);
}
.why-stat-icon {
  width: 40px;
  height: 40px;
  background: rgba(27, 158, 79, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.why-stat-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  line-height: 1;
}
.why-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}
.why-visual-extra {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.why-tag {
  padding: 8px 16px;
  background: rgba(27, 158, 79, 0.08);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* Process */
.process {
  background: var(--bg-dark);
  position: relative;
}
.process-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  z-index: 0;
  display: none;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-light);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
}
.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  box-shadow: 0 8px 20px rgba(27, 158, 79, 0.3);
}
.process-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* AI Showcase */
.ai-showcase {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
}
.ai-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(27, 158, 79, 0.1), transparent 60%);
  opacity: 0.6;
}
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ai-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}
.ai-content .section-subtitle {
  margin-bottom: 32px;
}
.ai-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.ai-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.ai-feature:hover {
  border-color: var(--border-bright);
  transform: translateX(4px);
}
.ai-feature i {
  color: var(--primary-light);
  font-size: 18px;
}
.ai-feature span {
  font-size: 14px;
  font-weight: 500;
}

/* AI Chat Mockup */
.ai-chat-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ai-chat-mockup::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  opacity: 0.3;
  filter: blur(20px);
  z-index: -1;
}
.chat-header {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.chat-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  position: relative;
}
.ai-pulse {
  position: absolute;
  inset: -6px;
  background: var(--gradient-primary);
  border-radius: 14px;
  opacity: 0.5;
  animation: pulse-ring 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}
.chat-name {
  font-weight: 600;
  font-size: 15px;
}
.chat-status {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--primary-light);
}
.chat-body {
  padding: 24px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat-msg {
  display: flex;
  max-width: 85%;
}
.msg-user {
  align-self: flex-end;
}
.msg-ai {
  align-self: flex-start;
}
.msg-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.msg-user .msg-bubble {
  background: var(--gradient-primary);
  color: white;
  border-bottom-right-radius: 4px;
}
.msg-ai .msg-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.msg-typing-line {
  padding: 4px 0;
  opacity: 0;
  animation: msg-line-in 0.4s forwards;
}
.msg-typing-line:nth-child(1) { animation-delay: 0.5s; }
.msg-typing-line:nth-child(2) { animation-delay: 1.0s; }
.msg-typing-line:nth-child(3) { animation-delay: 1.5s; }
.msg-typing-line:nth-child(4) { animation-delay: 2.0s; }
@keyframes msg-line-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg-typing {
  display: flex;
  gap: 4px;
  padding: 16px 18px;
}
.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing-bounce 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-8px); opacity: 1; }
}

/* Industries */
.industries {
  background: var(--bg-dark);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card {
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.industry-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.industry-card i {
  font-size: 28px;
  color: var(--primary-light);
  margin-bottom: 12px;
  display: block;
  transition: transform var(--transition);
}
.industry-card:hover i {
  transform: scale(1.15);
}
.industry-card span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.industry-card:hover span {
  color: var(--text-light);
}

/* Testimonials */
.testimonials {
  background: var(--bg-darker);
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
}
.quote-icon {
  font-size: 32px;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  font-family: var(--font-heading);
}
.author-name {
  font-weight: 600;
  font-size: 15px;
}
.author-role {
  font-size: 13px;
  color: var(--text-muted);
}
.rating {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  gap: 2px;
}
.rating i {
  color: #FFCB6B;
  font-size: 12px;
}

/* CTA Section */
.cta-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-orb-1 {
  top: -150px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: rgba(27, 158, 79, 0.4);
}
.cta-orb-2 {
  bottom: -150px;
  right: 20%;
  width: 400px;
  height: 400px;
  background: rgba(0, 217, 163, 0.3);
}
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(15, 22, 35, 0.7), rgba(10, 14, 26, 0.7));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
}
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(27, 158, 79, 0.15);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
}
.cta-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta-meta i {
  color: var(--primary-light);
}

/* Footer */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 158, 79, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 158, 79, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}
.footer-about {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  border-color: transparent;
}
.footer-col h4 {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-light);
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  color: var(--text-muted);
  font-size: 14px;
  transition: all var(--transition-fast);
}
.footer-col ul a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-contact i {
  color: var(--primary-light);
  margin-top: 4px;
  font-size: 14px;
  flex-shrink: 0;
}
.footer-contact a:hover {
  color: var(--primary-light);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}
.footer-license {
  font-family: var(--font-mono);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: whatsapp-pulse 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 0; }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-light);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
}

/* Page Hero */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 158, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 158, 79, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb i { font-size: 10px; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.7;
}
