/* ==========================================================================
   ALL CORE SOLUTION - Modern Corporate Enterprise Design System
   Brand Color Theme: Cyan (#00d2ff), Deep Blue (#0052d4), Neon Purple (#8a2be2)
   Supports Dual Theme Engine: Dark Mode (Default) & Corporate Light Mode
   ========================================================================== */

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

:root {
  /* DARK MODE PALETTE (DEFAULT) */
  --color-bg-main: #050811;
  --color-bg-card: rgba(11, 18, 35, 0.88);
  --color-bg-card-hover: rgba(18, 29, 56, 0.95);
  --color-bg-nav: rgba(5, 8, 17, 0.95);
  --color-primary: #00d2ff;
  --color-primary-glow: rgba(0, 210, 255, 0.45);
  --color-secondary: #0052d4;
  --color-accent-purple: #8a2be2;
  --color-accent-blue: #4364f7;
  --color-accent-cyan: #00f2fe;
  --color-success: #10b981;
  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;
  --color-border: rgba(0, 210, 255, 0.2);
  --color-border-hover: rgba(0, 210, 255, 0.55);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #00d2ff 0%, #0052d4 100%);
  --grad-accent: linear-gradient(135deg, #8a2be2 0%, #4364f7 100%);
  --grad-cyan-purple: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --grad-dark-card: linear-gradient(180deg, rgba(14, 23, 44, 0.88) 0%, rgba(7, 12, 24, 0.96) 100%);
  --grad-hero-overlay: radial-gradient(circle at 50% 20%, rgba(0, 82, 212, 0.3) 0%, rgba(5, 8, 17, 0) 75%);

  /* Shadow & Glow Effects */
  --glow-cyan: 0 0 30px rgba(0, 210, 255, 0.45);
  --glow-purple: 0 0 30px rgba(138, 43, 226, 0.45);
  --shadow-card: 0 15px 35px -10px rgba(0, 0, 0, 0.65);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   LIGHT MODE DESIGN SYSTEM - MATCHING CORPORATE PROFILE BROCHURE REFERENCE
   ========================================================================== */
[data-theme="light"] {
  --color-bg-main: #f8fafc;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #ffffff;
  --color-bg-nav: rgba(255, 255, 255, 0.96);
  --color-primary: #0052d4;
  --color-primary-glow: rgba(0, 82, 212, 0.25);
  --color-secondary: #003399;
  --color-accent-purple: #7c3aed;
  --color-accent-blue: #2563eb;
  --color-accent-cyan: #0284c7;
  --color-text-main: #0f172a;
  --color-text-muted: #334155;
  --color-text-dim: #64748b;
  --color-border: rgba(0, 82, 212, 0.18);
  --color-border-hover: rgba(0, 82, 212, 0.45);

  --grad-primary: linear-gradient(135deg, #0052d4 0%, #003399 100%);
  --grad-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --grad-cyan-purple: linear-gradient(135deg, #0052d4 0%, #7c3aed 100%);
  --grad-dark-card: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  --grad-hero-overlay: radial-gradient(circle at 50% 20%, rgba(0, 82, 212, 0.08) 0%, rgba(248, 250, 252, 0) 75%);

  --shadow-card: 0 10px 30px rgba(0, 82, 212, 0.08);
  --glow-cyan: 0 0 25px rgba(0, 82, 212, 0.3);
}

[data-theme="light"] body {
  background-color: #f8fafc;
  color: #0f172a;
}

[data-theme="light"] body::before {
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 82, 212, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(37, 99, 235, 0.05) 0%, transparent 45%);
}

[data-theme="light"] .top-bar {
  background: #051c42;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .main-navbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 82, 212, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .brand-name {
  color: #0f172a;
}

[data-theme="light"] .nav-link {
  color: #1e293b;
}

[data-theme="light"] .hero-title {
  color: #0f172a;
}

[data-theme="light"] .hero-subtext {
  color: #475569;
}

[data-theme="light"] .hero-hub-wheel {
  border-color: rgba(0, 82, 212, 0.35);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 15px 35px rgba(0, 82, 212, 0.1);
}

[data-theme="light"] .hub-center-logo {
  background: #ffffff;
  border-color: #0052d4;
  box-shadow: 0 0 30px rgba(0, 82, 212, 0.25);
}

[data-theme="light"] .hub-node {
  background: #ffffff;
  border-color: rgba(0, 82, 212, 0.25);
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(0, 82, 212, 0.12);
}

[data-theme="light"] .hub-node:hover,
[data-theme="light"] .hub-node.active {
  background: #0052d4;
  color: #ffffff;
  border-color: #0052d4;
  box-shadow: 0 8px 25px rgba(0, 82, 212, 0.4);
}

[data-theme="light"] .hub-node:hover i,
[data-theme="light"] .hub-node.active i {
  color: #ffffff;
}

[data-theme="light"] .hero-form-card {
  background: #ffffff;
  border-color: rgba(0, 82, 212, 0.2);
  box-shadow: 0 20px 50px rgba(0, 82, 212, 0.12);
}

[data-theme="light"] .form-control {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

[data-theme="light"] .form-control:focus {
  background: #ffffff;
  border-color: #0052d4;
}

[data-theme="light"] .stats-section,
[data-theme="light"] .about-section,
[data-theme="light"] .step02-about-section,
[data-theme="light"] .step04-vision-section,
[data-theme="light"] .step05-why-section,
[data-theme="light"] .clients-section,
[data-theme="light"] .industries-section,
[data-theme="light"] .why-us-section,
[data-theme="light"] .process-section,
[data-theme="light"] .recent-work-section {
  background: #f1f5f9;
  border-color: rgba(0, 82, 212, 0.12);
}

[data-theme="light"] .glass-card,
[data-theme="light"] .pillar-card,
[data-theme="light"] .industry-card,
[data-theme="light"] .ceo-card,
[data-theme="light"] .process-step-card,
[data-theme="light"] .work-card,
[data-theme="light"] .vision-card,
[data-theme="light"] .mission-card {
  background: #ffffff;
  border-color: rgba(0, 82, 212, 0.15);
  box-shadow: 0 10px 30px rgba(0, 82, 212, 0.08);
}

[data-theme="light"] .service-card h3,
[data-theme="light"] .product-card h3,
[data-theme="light"] .industry-header h3,
[data-theme="light"] .client-category-info h3,
[data-theme="light"] .process-step-card h4,
[data-theme="light"] .work-card h3,
[data-theme="light"] .vision-card h3,
[data-theme="light"] .mission-card h3,
[data-theme="light"] .step02-title,
[data-theme="light"] .step04-title,
[data-theme="light"] .step05-title,
[data-theme="light"] .ceo-info h3 {
  color: #0f172a;
}

[data-theme="light"] .step02-text p,
[data-theme="light"] .vision-card p,
[data-theme="light"] .mission-card p,
[data-theme="light"] .step05-check-item span {
  color: #334155;
}

[data-theme="light"] .step02-metrics-row {
  background: #ffffff;
  border-color: rgba(0, 82, 212, 0.15);
  box-shadow: 0 10px 30px rgba(0, 82, 212, 0.08);
}

[data-theme="light"] .step02-metric-num {
  color: #0052d4;
}

[data-theme="light"] .ceo-quote {
  color: #334155;
  border-left-color: #0052d4;
}

[data-theme="light"] .site-footer {
  background: #051c42;
  color: #e2e8f0;
}

[data-theme="light"] .footer-links a,
[data-theme="light"] .footer-contact-info,
[data-theme="light"] .footer-brand p {
  color: #cbd5e1;
}

[data-theme="light"] .mobile-bottom-bar {
  background: rgba(255, 255, 255, 0.96) !important;
  border-top-color: rgba(0, 82, 212, 0.2) !important;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .bottom-nav-item {
  color: #64748b;
}

[data-theme="light"] .bottom-nav-item.active {
  color: #0052d4;
}

/* Theme Toggle Button Style */
.theme-toggle-btn {
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  padding: 0.4rem 0.85rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--trans-fast);
}

.theme-toggle-btn:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--glow-cyan);
}

[data-theme="light"] .theme-toggle-btn {
  background: rgba(0, 82, 212, 0.1);
  border-color: rgba(0, 82, 212, 0.3);
  color: #0052d4;
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: #0052d4;
  color: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 210, 255, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(138, 43, 226, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(0, 82, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

a:hover {
  color: #fff;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.gradient-text-alt {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(0, 210, 255, 0.14);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
  letter-spacing: 0.5px;
}

/* STEP NUMBER RIBBON TAG STYLE (02, 04, 05, 06 BROCHURE BADGES) */
.step-ribbon-badge {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  background: #0052d4;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 82, 212, 0.4);
  margin-bottom: 1.25rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  display: inline-block;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--trans-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 25px rgba(0, 82, 212, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(0, 210, 255, 0.65);
  color: #fff;
}

.btn-accent {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 4px 25px rgba(138, 43, 226, 0.45);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(138, 43, 226, 0.65);
  color: #fff;
}

.btn-outline {
  background: rgba(14, 23, 44, 0.75);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(0, 210, 255, 0.18);
  color: var(--color-primary);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
  transition: var(--trans-smooth);
}

.glass-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: 0 20px 40px -10px rgba(0, 210, 255, 0.28);
  transform: translateY(-3px);
}

/* Section Common Headers */
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.75rem auto;
}

.section-header .section-subtitle {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: rgba(3, 5, 12, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.825rem;
  padding: 0.45rem 0;
  color: var(--color-text-muted);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-info-item i {
  color: var(--color-primary);
}

.top-right-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: var(--trans-fast);
}

.social-links a:hover {
  color: var(--color-primary);
}

/* MAIN NAVIGATION BAR */
.main-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg-nav);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: var(--trans-smooth);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

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

.brand-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.45));
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--trans-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  box-shadow: var(--glow-cyan);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 4.5rem 0 5.5rem 0;
  overflow: visible;
  background: var(--grad-hero-overlay);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.16;
  color: #fff;
  letter-spacing: -0.5px;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 590px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* HERO CENTER ROTATING CIRCULAR WHEEL (EXACTLY 6 HUB NODES) */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 510px;
  overflow: visible;
}

.hero-hub-wheel {
  position: relative;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  border: 2px dashed var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotateSlow 45s linear infinite;
  box-shadow: inset 0 0 50px rgba(0, 82, 212, 0.2);
}

.hero-hub-wheel:hover {
  animation-play-state: paused;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hub-center-logo {
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--color-bg-main);
  border: 3px solid var(--color-primary);
  box-shadow: 0 0 40px var(--color-primary-glow), inset 0 0 25px rgba(0, 82, 212, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  padding: 1rem;
  animation: counterRotate 45s linear infinite;
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.hub-center-logo img {
  height: 58px;
  width: auto;
}

.hub-center-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 1.2px;
  margin-top: 4px;
}

/* 6 Radial Node Pills displaying 6 Services / Products */
.hub-node {
  position: absolute;
  width: 125px;
  height: 64px;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.65);
  cursor: pointer;
  transition: var(--trans-fast);
  animation: counterRotate 45s linear infinite;
  text-align: center;
  padding: 0.3rem 0.5rem;
  backdrop-filter: blur(12px);
  z-index: 5;
}

.hub-node i {
  font-size: 1.15rem;
  color: var(--color-primary);
}

.hub-node:hover,
.hub-node.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 25px var(--color-primary-glow);
  background: var(--color-primary);
  color: #ffffff !important;
}

.hub-node:hover i,
.hub-node.active i {
  color: #ffffff !important;
}

/* EXPLICIT CLASS-BASED RADIAL POSITIONING FOR ALL 6 HUB NODES (60° INCREMENTS) */
.hub-node.node-1 {
  top: -30px;
  left: calc(50% - 62.5px);
}

/* 1. Portfolio Web (0° Top) */
.hub-node.node-2 {
  top: 68px;
  right: -36px;
}

/* 2. Custom Software (60° Top Right) */
.hub-node.node-3 {
  bottom: 68px;
  right: -36px;
}

/* 3. Mobile Apps (120° Bottom Right) */
.hub-node.node-4 {
  bottom: -30px;
  left: calc(50% - 62.5px);
}

/* 4. AI & Automation (180° Bottom) */
.hub-node.node-5 {
  bottom: 68px;
  left: -36px;
}

/* 5. ERP & CRM (240° Bottom Left) */
.hub-node.node-6 {
  top: 68px;
  left: -36px;
}

/* 6. Digital Marketing (300° Top Left) */

/* HERO CONSULTATION QUICK FORM */
.hero-form-card {
  padding: 2.25rem;
  background: var(--grad-dark-card);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
}

.hero-form-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-align: center;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(5, 8, 17, 0.75);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--trans-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.3);
}

.form-control::placeholder {
  color: var(--color-text-dim);
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.form-features {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.775rem;
  color: var(--color-text-muted);
}

.form-feature-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-feature-item i {
  color: var(--color-success);
}

/* ==========================================================================
   NEW STEP 02: ABOUT US SECTION (MATCHING REFERENCE IMAGE 02 DESIGN)
   ========================================================================== */
.step02-about-section {
  padding: 6.5rem 0;
  background: rgba(6, 10, 20, 0.75);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.step02-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.step02-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step01-title {
    width: 100%;
    text-align: center;
    display: block;
    margin: 0 auto 40px;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.step01-title .gradient-text {
    background: linear-gradient(90deg, #00d4ff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step02-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  position: relative;
}

.step02-title::after {
  content: '';
  display: block;
  width: 55px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin-top: 0.65rem;
}

.step02-text p {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.step02-image-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-border);
}

.step02-image-container img {
  width: 100%;
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--color-border);
}

.step02-image-container:hover img {
  transform: scale(1.04);
}

/* Step 02 Bottom High-Contrast Metrics Row */
.step02-metrics-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding: 2.25rem 1.5rem;
  background: var(--grad-dark-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.step02-metric-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
}

.step02-metric-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--color-border);
}

.step02-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.step02-metric-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.step02-metric-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ==========================================================================
   NEW STEP 04: OUR VISION & MISSION SECTION (MATCHING REFERENCE IMAGE 04)
   ========================================================================== */
.step04-vision-section {
  padding: 6.5rem 0;
  position: relative;
}

.step04-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.step04-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.vision-card,
.mission-card {
  padding: 2.25rem 1.75rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vision-icon-box,
.mission-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--glow-cyan);
}

.vision-card h3,
.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.85rem;
  color: var(--color-text-main);
}

.vision-card p,
.mission-card p {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.step04-hero-visual {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--color-border);
}

.step04-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   NEW STEP 05: WHY CHOOSE ALL CORE SOLUTION? SECTION (MATCHING REFERENCE IMAGE 05)
   ========================================================================== */
.step05-why-section {
  padding: 6.5rem 0;
  background: rgba(6, 10, 20, 0.75);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.step05-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.step05-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin-top: 1.75rem;
}

.step05-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.step05-check-item i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.step05-visual-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--color-border);
}

.step05-visual-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* STATS SECTION (250+ Projects, 200+ Happy Clients, 15+ Team Members) */
.stats-section {
  padding: 3.25rem 0;
  background: rgba(8, 14, 28, 0.7);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-card {
  padding: 1.25rem 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* ABOUT SECTION */
.about-section {
  padding: 6.5rem 0;
  background: rgba(6, 10, 20, 0.75);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.35rem;
}

.about-text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.68;
  margin-bottom: 1.25rem;
}

.corporate-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar-card {
  padding: 1.25rem;
  background: rgba(14, 23, 44, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.pillar-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pillar-card p {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.ceo-card {
  padding: 2.5rem;
  background: var(--grad-dark-card);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ceo-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.ceo-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ceo-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-primary);
  padding: 3px;
  box-shadow: var(--glow-cyan);
}

.ceo-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #080d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
}

.ceo-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.ceo-info p {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.ceo-quote {
  font-style: italic;
  color: var(--color-text-main);
  font-size: 0.975rem;
  line-height: 1.68;
  border-left: 3px solid var(--color-primary);
  padding-left: 1.25rem;
  margin-top: 1rem;
}

/* SERVICES SECTION (12 CORE SERVICES) */
.services-section {
  padding: 6.5rem 0;
  position: relative;
}

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

.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(0, 210, 255, 0.4);
  background: rgba(0, 210, 255, 0.08);
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.service-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.18) 0%, rgba(138, 43, 226, 0.18) 100%);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--color-text-main);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.925rem;
  line-height: 1.62;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--color-text-muted);
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.service-link i {
  transition: transform var(--trans-fast);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* OUR 7-STEP DELIVERY PROCESS SECTION (MATCHING REFERENCE IMAGE 06) */
.process-section {
  padding: 6.5rem 0;
  background: rgba(6, 10, 20, 0.75);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}

.process-step-card {
  padding: 1.5rem 0.85rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.process-num-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  box-shadow: var(--glow-cyan);
}

.process-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.2) 0%, rgba(0, 82, 212, 0.2) 100%);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.process-step-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-main);
}

/* Step 06 Process Bottom Banner */
.process-bottom-banner {
  margin-top: 3rem;
  padding: 1.75rem 2.5rem;
  background: #051c42;
  border-radius: 16px;
  border: 1px solid rgba(0, 210, 255, 0.3);
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* OUR RECENT WORK / PORTFOLIO SHOWCASE SECTION */
.recent-work-section {
  padding: 6.5rem 0;
}

.work-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.work-card {
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-img-wrapper {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  overflow: hidden;
  position: relative;
}

.work-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-smooth);
}

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

.work-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.work-card p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* CLIENTS TRACK RECORD BY SERVICE CATEGORY SECTION */
.clients-section {
  padding: 6.5rem 0;
  background: rgba(6, 10, 20, 0.75);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.clients-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
}

.client-category-card {
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.client-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.client-category-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  border: 1px solid var(--color-border);
}

.client-category-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.25;
}

.client-category-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.client-count-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-top: 1rem;
}

.client-count-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
}

.client-count-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-main);
}

/* PRODUCTS HUB SECTION */
.products-section {
  padding: 6.5rem 0;
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.25rem;
}

.filter-btn {
  padding: 0.65rem 1.35rem;
  border-radius: 30px;
  background: rgba(14, 23, 44, 0.7);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.35);
}

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

.product-card {
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-features-list {
  margin: 1rem 0 1.5rem 0;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.product-feature-item i {
  color: var(--color-primary);
  font-size: 0.75rem;
}

/* INDUSTRIES WE SERVE */
.industries-section {
  padding: 6.5rem 0;
  background: rgba(6, 10, 20, 0.75);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.industry-card {
  padding: 2rem;
  border-radius: 18px;
  background: var(--grad-dark-card);
  border: 1px solid var(--color-border);
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.22) 0%, rgba(67, 100, 247, 0.22) 100%);
  color: var(--color-accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.industry-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.industry-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.industry-item i {
  color: var(--color-primary);
  font-size: 0.8rem;
}

/* FUTURE VISION & TECH STACK */
.vision-tech-section {
  padding: 6.5rem 0;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.25rem;
}

.tech-category-card {
  padding: 1.65rem;
}

.tech-category-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.38rem 0.78rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tech-badge i {
  color: var(--color-primary);
}

/* WHY CHOOSE US & TROPHY SECTION */
.why-us-section {
  padding: 6.5rem 0;
  background: rgba(6, 10, 20, 0.75);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.features-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-box {
  padding: 1.65rem;
}

.feature-box i {
  font-size: 1.85rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.feature-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.feature-box p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.trophy-card {
  text-align: center;
  padding: 3.25rem 2.25rem;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.18) 0%, rgba(0, 210, 255, 0.18) 100%);
  border: 1px solid var(--color-border-hover);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.trophy-icon {
  font-size: 4.25rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.5));
}

.trophy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.trophy-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* BOTTOM CTA BANNER */
.cta-banner-section {
  padding: 5.5rem 0;
  position: relative;
}

.cta-box {
  padding: 3.75rem 2.75rem;
  background: linear-gradient(135deg, rgba(0, 82, 212, 0.45) 0%, rgba(138, 43, 226, 0.45) 100%);
  border: 1px solid var(--color-border-hover);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* FOOTER */
.site-footer {
  background: #020408;
  border-top: 1px solid var(--color-border);
  padding: 5.5rem 0 2.25rem 0;
  font-size: 0.9rem;
}

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

.footer-brand p {
  color: var(--color-text-muted);
  margin: 1rem 0 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
}

.footer-links a {
  color: var(--color-text-muted);
  transition: var(--trans-fast);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.88rem;
  color: var(--color-text-muted);
}

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

.footer-contact-item i {
  color: var(--color-primary);
  margin-top: 3px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: #fff;
  outline: none;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-dim);
  font-size: 0.825rem;
}

/* FLOATING WIDGETS */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--trans-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
}

/* MODALS SYSTEM */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 12, 0.88);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: 100%;
  max-width: 680px;
  background: var(--grad-dark-card);
  border: 1px solid var(--color-border-hover);
  border-radius: 22px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--trans-smooth);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans-fast);
}

.modal-close:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: #ff4757;
  color: #ff4757;
}

/* TOAST NOTIFICATION */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  padding: 1rem 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.35);
  animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

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