@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =========================
   COMMON SECTION STYLES
========================= */

:root {
  /* Brand Accent Tokens (Vibrant Electric Emerald & Mint) */
  /* --primary: #10B981;          Core Emerald - used for primary CTAs and major highlights */
  --primary: #10B981;          /* Core Emerald - used for primary CTAs and major highlights */
  --primary-glow: rgba(16, 185, 129, 0.35); /* For beautiful soft glowing drop shadows */
  --secondary: #00F5A0;        /* Pure Mint Hyper-Accent - used sparingly for active states or micro-badges */
  --accent: #059669;           /* Deep Emerald - used for subtle borders and secondary interactions */

  /* Surface & Canvas Layering (Pure Premium Dark Mode) */
  --bg-main: #06080F;          /* Deepest cosmic blue-black base canvas background */
  --bg-light: #0D121F;         /* Primary container/card layer background (creates elevation depth) */
  --bg-section: #131A2E;       /* Secondary pop layers, hover backgrounds, or input fields */
  --bg-dark: #03050A;          /* Absolute black for navigation structural headers or side panels */
  --bg-footer: #020306;        /* Bottom grounding contrast */

  /* Advanced Typography Hierarchy */
  --text-dark: #F3F4F6;        /* High-contrast crisp off-white for primary headlines (avoids eye strain) */
  --text-gray: #9CA3AF;        /* Soft neutral gray for body copy and main explanatory text */
  --text-light: #6B7280;       /* Subdued dark gray for captions, meta info, or decorative borders */

  /* Structural Accents & Utility */
  --border: rgba(255, 255, 255, 0.06);       /* Razor-sharp translucent border line for premium glass look */
  --border-active: rgba(16, 185, 129, 0.3);  /* Focus states, highlight card perimeters */

  /* Micro-Interaction Shadows & Glows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 50px var(--primary-glow);
  
  /* Smooth UI System Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Foundation Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
}

body {
  background-color: var(--bg-main);
  color: var(--text-gray);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

/* HEADER */
/* Premium Floating Glass Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 60px;
  background-color: rgba(6, 8, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

/* Logo Optimization */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 52px; /* Marginally scaled down for crisp, professional alignment */
  width: auto;
  object-fit: contain;
}

/* Modern Navigation Menu */
.nav-menu {
  justify-content: center;
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

/* Micro-Interaction Underline Effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

/* High-Converting Glowing Action Button */
.btn-consultation {
  background: var(--primary);
  color: var(--bg-dark); /* Crisp dark text over bright neon for premium readability */
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  transition: var(--transition);
}

.btn-consultation svg {
  transition: var(--transition);
}

.btn-consultation:hover {
  background: var(--secondary);
  box-shadow: 0 0 30px var(--primary-glow);
  transform: translateY(-2px);
}

/* Smooth arrow nudge animation on button hover */
.btn-consultation:hover svg {
  transform: translateX(3px);
}

.header-actions {
  flex-shrink: 0;
  margin-left: auto;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--text-dark);
  text-decoration: none;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transition: var(--transition);
  white-space: nowrap;
}

.header-call-btn i {
  color: var(--secondary);
  font-size: 14px;
}

.header-call-btn:hover {
  transform: translateY(-2px);
  background: rgba(16, 185, 129, 0.2);
}

.header-call-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Responsive adjustments for mid-size viewports */
@media (max-width: 1024px) {
  .header {
    padding: 15px 30px;
  }
  .nav-menu {
    gap: 18px;
  }
  .nav-link {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .header {
    padding: 14px 18px;
    gap: 12px;
  }

  .logo img {
    height: 42px;
  }

  .header-actions {
    margin-left: 10px;
  }

  .header-call-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
  }

  .header-call-text {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-light);
    transition: var(--transition);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(7, 10, 16, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: rgba(16, 185, 129, 0.08);
  }
}

@media (min-width: 981px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 980px) {

  /* Hide Navbar */
  .nav-menu {
    display: none !important;
  }

  /* Keep Call Button Visible */
  .header-actions {
    display: flex !important;
    margin-left: auto;
  }

  .header {
    padding: 14px 20px;
    justify-content: space-between;
  }

  .logo img {
    height: 42px;
  }

  /* Optional: make call button circular */
  .header-call-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
  }

  .header-call-text {
    display: none;
  }
}

/* hero section */

/* ==========================================================================
   HERO CORE SECTION ARCHITECTURE
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px 60px; /* Enhanced top offset protection for fixed navbar */
  background-color: var(--bg-main);
}

/* Background Grids & High-End Blurs */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.hero-ambient-glow {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: var(--primary);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  max-width: 1300px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* ==========================================================================
   LEFT SIDE CONTENT TYPOGRAPHY
   ========================================================================== */
.hero-left {
  flex: 1;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  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 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-left h1 {
  font-weight: 800;
  line-height: 1.15;
  font-size: 56px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-left h1 span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-left .desc {
  margin-top: 24px;
  color: var(--text-gray);
  font-size: 17px;
  line-height: 1.65;
  max-width: 540px;
}

/* Feature Badges */
.hero-badges {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /*background: var(--bg-light);*/
  /*border: 1px solid var(--border);*/
  color: var(--text-dark);
  padding: 8px 16px;
  /*border-radius: 12px;*/
  font-size: 14px;
  font-weight: 500;
}

/* Left Buttons Group */
.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 16px;
}

.primary-btn {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  transition: var(--transition);
}

.primary-btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 0 35px var(--primary-glow);
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--text-gray);
  transform: translateY(-3px);
}

/* ==========================================================================
   RIGHT CONVERSION FORM CONSOLE (GLASSMORPHIC)
   ========================================================================== */
.hero-right {
  /* width: 440px; */
  background: rgba(13, 18, 31, 0.65); /* var(--bg-light) with glass opacity */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.hero-right h2 {
  font-size: 22px;
  color: var(--text-dark) !important;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-right p {
  font-size: 14px;
  color: var(--text-gray) !important;
  margin-top: 8px;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Premium Floating Input Architectures */
.hero-right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-img{
  height:300px
}

.input-group {
  position: relative;
  width: 100%;
}

.input-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(6, 8, 15, 0.5); /* Deep inset fields */
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  color: var(--text-dark);
  font-size: 14px;
  transition: var(--transition);
}

.input-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 14px;
  pointer-events: none;
  transition: var(--transition);
}

/* Animation triggers on inputs */
.input-group input:focus,
.input-group input:not(:placeholder-shown) {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 12px;
  color: var(--primary);
  background: var(--bg-light);
  padding: 0 6px;
  transform: translateY(-50%) scale(0.95);
  border-radius: 4px;
}

/* Custom Shiny Action Key on Form */
.form-submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
  transition: var(--transition);
}

.form-submit-btn svg {
  transition: var(--transition);
}

.form-submit-btn:hover {
  background: var(--secondary);
  box-shadow: 0 0 25px var(--primary-glow);
  transform: translateY(-2px);
}

.form-submit-btn:hover svg {
  transform: translateX(4px);
}

.hero-right small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light) !important;
}

/* ==========================================================================
   RESPONSIVE LAYOUT MATRIX
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }
  .hero-left h1 {
    font-size: 44px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 100px 24px 60px 24px;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .hero-left .desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badges, .hero-buttons {
    justify-content: center;
  }
  .hero-right {
    width: 100%;
    max-width: 480px;
  }
}

/* =========================
   MARQUEE SECTION
========================= */

.clients {
  background: #f1f5f9;
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.marquee-content span {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-right: 50px;
  position: relative;
}

.marquee-content span::after {
  content: "✦";
  color: #14b8a6;
  margin-left: 20px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   SERVICES GRID SECTION DYNAMICS
   ========================================================================== */
.services {
  padding: 60px 60px;
  background-color: var(--bg-main); /* Continuous clean system theme canvas */
  width: 100%;
}

/* Central Header Blocks */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 42px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title h2 span {
  color: var(--primary);
}

.section-title p {
  color: var(--text-gray);
  font-size: 16px;
  margin-top: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Fully Optimized Service Flex-Grid Engine */
.service-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Elegant 3-column architecture */
  gap: 30px;
}

/* Premium Dashboard Card Foundations */
.service-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Dynamic Glowing Card State */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

/* Icon Shell Matrices */
.card-icon-frame {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
  margin-bottom: 20px;
}

.card-icon-frame i {
  font-size: 28px;
}

.service-card:hover .card-icon-frame {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Content Element Hierarchies */
.service-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.65;
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONFIGURATION
   ========================================================================== */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr); /* Seamless transition down to 2 columns */
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 24px;
  }
  .section-title h2 {
    font-size: 32px;
  }
  .service-grid {
    grid-template-columns: 1fr; /* Stack layout on small mobile displays */
  }
  .service-card {
    padding: 28px;
  }
}


/* ==========================================================================
   WHY CHOOSE US ARCHITECTURE
   ========================================================================== */
.why-choose-us {
  padding: 120px 60px;
  background-color: var(--bg-main); /* Flawless integration with theme foundation */
  width: 100%;
  position: relative;
  overflow: hidden;
}

.why-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ==========================================================================
   LEFT ASSET CONTAINER MATRIX
   ========================================================================== */
.why-image-wrapper {
  flex: 1.1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Back Glow preventing flat presentation of image components */
.why-image-ambient {
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--primary);
  opacity: 0.15;
  border-radius: 40px;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.why-image-wrapper img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  /* Muted tone conversion to blend beautifully with dark layouts */
  filter: brightness(0.9) contrast(1.05); 
}

/* ==========================================================================
   RIGHT CONTENT ENGINE
   ========================================================================== */
.why-content {
  flex: 1.9;
}

.why-subtitle-tag {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-main-title {
  font-size: 42px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
}

.why-lead-desc {
  color: var(--text-gray);
  font-size: 16.5px;
  line-height: 1.65;
  margin-top: 16px;
  margin-bottom: 44px;
  max-width: 680px;
}

/* Clean 2-Column System Grid Layout */
.features-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 28px;
}

/* Micro Node Core Card Frameworks */
.feature-card {
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: var(--transition);
}

/* Neon Digital Counter Rings */
.feature-indicator {
  font-family: monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 3px;
  text-shadow: 0 0 10px var(--primary-glow);
  transition: var(--transition);
}

.feature-card:hover .feature-indicator {
  background: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.feature-text-block h3 {
  font-size: 19px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.feature-card:hover .feature-text-block h3 {
  color: var(--primary);
}

.feature-text-block p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVE LAYOUT MATRIX
   ========================================================================== */
@media (max-width: 1150px) {
  .why-wrapper {
    gap: 40px;
  }
  .features-subgrid {
    grid-template-columns: 1fr; /* Drop execution tracks to a single column cascade */
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .why-choose-us {
    padding: 80px 24px;
  }
  .why-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .why-image-wrapper {
    width: 100%;
    max-width: 440px;
  }
  .why-main-title {
    font-size: 32px;
  }
}

/* =========================
   PROCESS
========================= */

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.step {
  text-align: center;
  position: relative;
}

.step span {
  width: 80px;
  height: 80px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  background:
    linear-gradient(135deg,
      var(--primary),
      var(--accent));
}

.step h3 {
  color: #0f172a;
}

/* =========================
   APP SHOWCASE
========================= */

.showcase {
  background: #f8fafc;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.showcase-grid img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
}

/* ==========================================================================
   PRICING CARD SUITE
   ========================================================================== */
.pricing-section {
  padding: 120px 60px;
  background-color: var(--bg-main);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.pricing-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
}

/* Section Header Tracking */
.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 2;
}

.pricing-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-header h2 {
  font-size: 42px;
  margin: 0;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-header p {
  color: var(--text-gray);
  font-size: 16px;
  margin-top: 14px;
}

/* Main Pricing Structural Container */
.pricing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch; /* Forces equal height columns */
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   CARD STYLING ARCHITECTURE
   ========================================================================== */
.pricing-card {
  flex: 1;
  max-width: 380px;
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

/* Base Pricing Tier Properties */
.pricing-card.base-plan {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pricing-card.base-plan:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Growth Tier Highlight Model */
.pricing-card.featured-plan {
  background-color: var(--bg-section);
  border: 2px solid var(--primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.15);
  transform: scale(1.03);
}

.pricing-card.featured-plan:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.25);
}

/* Popular Accent Badge */
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bg-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Content Element Sizing Rules */
.plan-meta h3 {
  font-size: 22px;
  /* color: var(--text-dark); */
  color: white;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 6px;
}

/* Numerical Pricing Formats */
.price-container {
  margin: 32px 0 24px 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.sub-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.price {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-top: 4px;
}

/* Feature Unordered Lists */
.plan-features {
  margin: 0 0 36px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-features li {
  font-size: 14px;
  color: var(--text-gray);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Form Submission Callouts */
.plan-btn {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.plan-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-gray);
}

/* Overriding Button Configuration rules for Focus plan */
.featured-btn {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.featured-btn:hover {
  background: var(--secondary) !important;
  color: var(--bg-dark);
  box-shadow: 0 0 25px var(--primary-glow) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE MATRIX BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .pricing-wrapper {
    flex-direction: column; /* Re-flow layout parameters laterally */
    align-items: center;
    gap: 40px;
  }
  .pricing-card {
    width: 100%;
    max-width: 440px;
  }
  .pricing-card.featured-plan {
    transform: scale(1);
  }
  .pricing-card.featured-plan:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 24px;
  }
  .pricing-header h2 {
    font-size: 32px;
  }
}

/* ==========================================================================
   METRIC DATA AND STATISTICS SECTION
   ========================================================================== */
.stats-section {
  padding: 120px 60px;
  background-color: var(--bg-main); /* Continuous dark theme canvas harmony */
  width: 100%;
  position: relative;
}

.stats-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header Text Trackers */
.stats-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stats-section .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.stats-section .section-title p {
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 14px;
  margin-bottom: 64px;
}

/* Re-engineered High-Efficiency 4-Column Layout Matrix */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card Module Architecture */
.stat-card {
  padding: 36px 28px;
  border-radius: 20px;
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Micro interaction left green glowing strip tracker */
.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-card:hover::before {
  opacity: 1;
}

/* Large Tech Typography Metrics */
.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.05);
}

.star-accent {
  font-size: 26px;
  vertical-align: middle;
  margin-left: 2px;
  color: var(--secondary);
}

.stat-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.stat-card span {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.5;
  display: block;
}

/* Section Bottom Content Styling */
.stats-footer {
  margin-top: 64px;
  font-size: 16px;
  color: var(--text-gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.9;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr); /* Step down to 3 columns precisely */
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr); /* Standard twin layout on tablets */
  }
  .stats-section .section-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 550px) {
  .stats-section {
    padding: 80px 24px;
  }
  .stats-grid {
    grid-template-columns: 1fr; /* Stack into a clean full-width vertical list */
    gap: 20px;
  }
  .stat-card {
    padding: 28px 24px;
  }
}



/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  background: #f8fafc;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.testimonial-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  color: #10B981;
}

/* ==========================================================================
   PORTFOLIO APPS GRID CORE
   ========================================================================== */
.apps-section {
  padding: 80px 60px;
  background-color: var(--bg-main);
  width: 100%;
  position: relative;
}

.apps-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header Text Trackers */
.apps-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 64px auto;
}

.apps-mini-tag {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.apps-header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.apps-header p {
  color: var(--text-gray);
  font-size: 16.5px;
  line-height: 1.6;
}

/* ==========================================================================
   APPS PORTFOLIO - ALTERNATING LEFT-RIGHT LAYOUT
   ========================================================================== */
.apps-portfolio {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.app-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

/* Left-aligned project (image on left, content on right) */
.app-project-left {
  grid-template-columns: 1fr 1fr;
}

.app-project-left .app-project-image {
  grid-column: 1;
  order: 1;
}

.app-project-left .app-project-content {
  grid-column: 2;
  order: 2;
}

/* Right-aligned project (image on right, content on left) */
.app-project-right {
  grid-template-columns: 1fr 1fr;
}

.app-project-right .app-project-image {
  grid-column: 2;
  order: 2;
}

.app-project-right .app-project-content {
  grid-column: 1;
  order: 1;
}

/* Image Container */
.app-project-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}

/* Image Wrapper with Glow Effect */
.app-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.app-image-wrapper::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary);
  opacity: 0.1;
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.app-image-wrapper img {
  width: 100%;
  /* max-width: 220px; */
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}


/* Content Container */
.app-project-content {
  padding: 20px 0;
}

.app-project-content .sector-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.app-project-content h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}

.app-project-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Tech Tags */
.app-project-content .tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.app-project-content .tech-tags span {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.app-project-content .tech-tags span:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--primary);
}

/* CTA Button */
.project-cta-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.project-cta-btn:hover {
  background: #0d9668;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   PORTFOLIO LAYER MEDIA QUERY MATRIX
   ========================================================================== */
@media (max-width: 1150px) {
  .app-project {
    gap: 50px;
  }
  
  .app-project-content h3 {
    font-size: 28px;
  }
  
  .app-project-image {
    min-height: 400px;
  }
  
  .app-image-wrapper img {
    /* max-width: 180px; */
  }
}

@media (max-width: 950px) {
  .apps-portfolio {
    gap: 60px;
  }
  
  .app-project {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .app-project-left,
  .app-project-right {
    grid-template-columns: 1fr;
  }
  
  .app-project-left .app-project-image {
    grid-column: 1;
    order: 1;
  }
  
  .app-project-left .app-project-content {
    grid-column: 1;
    order: 2;
  }
  
  .app-project-right .app-project-image {
    grid-column: 1;
    order: 1;
  }
  
  .app-project-right .app-project-content {
    grid-column: 1;
    order: 2;
  }
  
  .app-project-image {
    min-height: 350px;
  }
  
  .app-image-wrapper img {
    /* max-width: 160px; */
  }
  
  .app-project-content h3 {
    font-size: 26px;
  }
  
  .app-project-content p {
    font-size: 15px;
  }
}

@media (max-width: 650px) {
  .apps-section {
    padding: 60px 24px;
  }
  
  .apps-portfolio {
    gap: 50px;
  }
  
  .app-project {
    gap: 30px;
  }
  
  .app-project-image {
    min-height: 300px;
  }
  
  .app-image-wrapper img {
    /* max-width: 140px; */
  }
  
  .app-image-wrapper::before {
    width: 200px;
    height: 200px;
  }
  
  .app-project-content h3 {
    font-size: 22px;
  }
  
  .app-project-content .sector-badge {
    font-size: 10px;
    padding: 5px 12px;
  }
  
  .app-project-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .app-project-content .tech-tags {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .app-project-content .tech-tags span {
    font-size: 12px;
    padding: 5px 12px;
  }
  
  .project-cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* ==========================================================================
   AGILE PROCESS ENGINEERING PIPELINE
   ========================================================================== */
.process-section {
  padding: 120px 60px;
  background-color: var(--bg-main);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.process-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header Context Trackers */
.process-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 64px auto;
}

.process-subtitle-tag {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.process-header p {
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 14px;
  line-height: 1.6;
}

/* ==========================================================================
   SPLIT WORKSPACE LAYOUT ENGINE
   ========================================================================== */
.process-split-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Left Stack Management rules */
.process-pipeline-stack {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Premium Connected Card Implementations */
.process-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
}

.process-card:hover {
  transform: translateX(6px); /* Sophisticated forward-nudge on hover interaction */
  border-color: var(--border-active);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Horizontal Head Elements */
.process-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

/* Vector Shell Frameworks */
.process-icon-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  color: var(--primary);
  transition: var(--transition);
}

.process-card:hover .process-icon-frame {
  background: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 0 15px var(--primary-glow);
}

.process-card-title-block {
  display: flex;
  flex-direction: column;
}

.step-counter {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.process-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.process-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Inside Card Feature Sublists */
.process-sublist {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2-Column internal grid for clean list organization */
  gap: 10px 24px;
}

.process-sublist li {
  font-size: 13px;
  color: var(--text-gray);
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.process-sublist li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================================================
   RIGHT GRAPHIC PANE WITH RADIAL ILLUMINATION
   ========================================================================== */
.process-graphic-pane {
  flex: 0.8;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-ambient-blur {
  position: absolute;
  width: 90%;
  height: 90%;
  background: var(--primary);
  opacity: 0.1;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}

.process-image-frame {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.process-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

/* Section Bottom Callout */
.process-closer-note {
  margin-top: 64px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

/* ==========================================================================
   RESPONSIVE GRID LAYOUT MATRIX
   ========================================================================== */
@media (max-width: 1100px) {
  .process-split-layout {
    flex-direction: column; /* Re-flow components vertically */
    gap: 50px;
  }
  .process-pipeline-stack {
    width: 100%;
  }
  .process-graphic-pane {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 24px;
  }
  .process-header h2 {
    font-size: 32px;
  }
  .process-sublist {
    grid-template-columns: 1fr; /* Fall back to 1 column lists on compact layouts */
    gap: 8px;
  }
  .process-card:hover {
    transform: translateY(-4px); /* Convert side nudge to standard vertical hover on small screens */
  }
}

/* ==========================================================================
   SOCIAL PROOF & REVIEWS MATRIX
   ========================================================================== */
.trusted-section {
  padding: 120px 60px;
  background-color: var(--bg-main);
  text-align: center;
  width: 100%;
  position: relative;
}

.trusted-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header Text Trackers */
.trusted-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 56px auto;
}

.trusted-subtitle-tag {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.trusted-section .trusted-header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.trusted-section .trusted-header p {
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 14px;
}

/* ==========================================================================
   MINIMAL LOGO CLOUD MATRIX
   ========================================================================== */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.logo-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 24px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.logo-box span {
  font-family: 'Courier New', monospace; /* Simulates standard technical logo text look */
  font-size: 15px;
  color: var(--text-gray);
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0.6;
  transition: var(--transition);
}

.logo-box:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
  background-color: var(--bg-section);
}

.logo-box:hover span {
  opacity: 1;
  color: var(--text-dark);
}

/* ==========================================================================
   GLASSMORPHIC REVIEWS GRID LAYOUT
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Quote Icon Element Sizing */
.quote-icon {
  color: var(--primary);
  opacity: 0.15;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 28px;
  line-height: 1.65;
  font-style: italic;
}

/* Reviewer Information Row */
.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* Circular Letter Avatars */
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary);
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.reviewer-details h4 {
  font-size: 15.5px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.reviewer-details span {
  font-size: 12.5px;
  color: var(--text-light);
  display: block;
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr); /* Step down to 3x2 matrix format */
    gap: 16px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr; /* Stack reviews full-width on smaller screens */
    gap: 24px;
  }
  .testimonial-card {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .trusted-section {
    padding: 80px 24px;
  }
  .trusted-section .trusted-header h2 {
    font-size: 32px;
  }
  .logo-grid {
    grid-template-columns: repeat(2, 1fr); /* Clean twin list for mobile screens */
  }
}

/* ==========================================================================
   FAQ PREMIUM ACCORDION SUITE
   ========================================================================== */
.faq-section {
  padding: 60px 60px;
  background-color: var(--bg-main); /* Continuous dark backdrop harmony */
  width: 100%;
}

.faq-container {
  max-width: 860px; /* Tighter layout boundaries for premium scannability alignment */
  margin: 0 auto;
}

/* Header Text Trackers */
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-subtitle-tag {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-section .faq-header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.faq-section .faq-header p {
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 14px;
}

/* Accordion Vertical Structure */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item Foundation Shell */
.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

/* Question Interactive Trigger Button */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-trigger span {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.faq-chevron {
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover State Interactions */
.faq-item:hover {
  border-color: var(--border-active);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-trigger:hover span {
  color: var(--primary);
}

.faq-trigger:hover .faq-chevron {
  color: var(--text-dark);
}

/* Smooth JavaScript Controlled Transitions Block */
.faq-content {
  max-height: 0; /* Animated dynamically via JS max-height assignment */
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 28px 24px 28px;
  border-top: 1px solid transparent;
}

.faq-content p {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.65;
}

/* Active State Styles (Applied via JS Toggle) */
.faq-item.active {
  border-color: var(--border-active);
  background-color: var(--bg-section);
}

.faq-item.active .faq-trigger span {
  color: var(--primary);
}

.faq-item.active .faq-chevron {
  transform: rotate(-180deg);
  color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE GRID LAYOUT MATRIX
   ========================================================================== */
@media (max-width: 768px) {
  .faq-section {
    padding: 80px 24px;
  }
  .faq-section .faq-header h2 {
    font-size: 32px;
  }
  .faq-trigger {
    padding: 20px;
    gap: 16px;
  }
  .faq-trigger span {
    font-size: 15px;
  }
  .faq-content-inner {
    padding: 0 20px 20px 20px;
  }
}


/* ==========================================================================
   CLOSING HIGH-CONVERTING CONTACT ENGINE
   ========================================================================== */
.cta-section {
  padding: 60px 60px;
  background-color: var(--bg-main);
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Background Matrix Layers */
.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.cta-ambient-glow {
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 2;
  pointer-events: none;
}

.cta-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 3;
}

/* ==========================================================================
   LEFT SIDE CONTENT CORE
   ========================================================================== */
.cta-left {
  flex: 1.1;
  text-align: left;
}

.cta-image-frame {
  display: flex;
  margin-bottom: 28px;
}

.cta-image-frame img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  filter: brightness(0.85) contrast(1.05);
  box-shadow: var(--shadow-sm);
}

.cta-left h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.15;
}

.cta-left p {
  font-size: 16.5px;
  color: var(--text-gray);
  margin-top: 16px;
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 540px;
}

/* Re-engineered Mini Cards Grid Layout */
.mini-portfolio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  max-width: 540px;
}

.mini-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.mini-card svg {
  color: var(--primary);
}

.app-card:hover .mini-card, .mini-card:hover {
  border-color: var(--border-active);
  background-color: var(--bg-section);
}

/* Trust Ribbon Configuration */
.trust-metrics-ribbon {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  max-width: 540px;
}

.metric-node {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.metric-node span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

/* ==========================================================================
   RIGHT SIDE TRANS_GLASS LEAD CONSOLE
   ========================================================================== */
.cta-form-console {
  flex: 0.9;
  width: 100%;
  max-width: 460px;
  background: rgba(13, 18, 31, 0.65); /* var(--bg-light) glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.cta-form-console h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.form-lead-txt {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 6px;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Input Floating Label Configurations rules */
.cta-form-console form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-input-group {
  position: relative;
  width: 100%;
}

.cta-input-group input,
.cta-input-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(6, 8, 15, 0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  color: var(--text-dark);
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
}

.cta-input-group textarea {
  resize: none;
}

.cta-input-group label {
  position: absolute;
  left: 16px;
  top: 16px; /* Dynamically managed if it is a standard input box */
  color: var(--text-light);
  font-size: 14px;
  pointer-events: none;
  transition: var(--transition);
}

.cta-input-group input + label {
  top: 50%;
  transform: translateY(-50%);
}

/* Animation triggers across focus states */
.cta-input-group input:focus,
.cta-input-group textarea:focus,
.cta-input-group input:not(:placeholder-shown),
.cta-input-group textarea:not(:placeholder-shown) {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.cta-input-group input:focus + label,
.cta-input-group input:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%) scale(0.95);
  font-size: 12px;
  color: var(--primary);
  background: var(--bg-light);
  padding: 0 6px;
  border-radius: 4px;
}

.cta-input-group textarea:focus + label,
.cta-input-group textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: var(--primary);
  background: var(--bg-light);
  padding: 0 6px;
  transform: translateY(-50%) scale(0.95);
  border-radius: 4px;
}

/* Form Primary Button Key Action Elements */
.submit-request-btn {
  width: 100%;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
  transition: var(--transition);
  margin-top: 8px;
}

.submit-request-btn svg {
  transition: var(--transition);
}

.submit-request-btn:hover {
  background: var(--secondary);
  box-shadow: 0 0 25px var(--primary-glow);
  transform: translateY(-2px);
}

.submit-request-btn:hover svg {
  transform: translateX(4px);
}

/* Translucent Divider Layout rules */
.divider-line {
  text-align: center;
  margin: 24px 0;
  position: relative;
}

.divider-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--border);
  z-index: 1;
}

.divider-line span {
  background-color: #0d121f; /* Matches var(--bg-light) wrapper precisely */
  padding: 0 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

/* Hyper Action WhatsApp Element Node */
.whatsapp-direct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background-color: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25d366;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
  transition: var(--transition);
}

.whatsapp-direct-btn:hover {
  background-color: #25d366;
  color: var(--bg-dark);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE GRID LAYOUT CONFIGURATION MATRIX
   ========================================================================== */
@media (max-width: 1100px) {
  .cta-container {
    flex-direction: column; /* Shift stack alignments vertically down */
    gap: 60px;
  }
  .cta-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-image-frame, .cta-left p, .mini-portfolio, .trust-metrics-ribbon {
    margin-left: auto;
    margin-right: auto;
  }
  .mini-portfolio {
    width: 100%;
  }
  .cta-form-console {
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 24px;
  }
  .cta-left h2 {
    font-size: 32px;
  }
  .mini-portfolio {
    grid-template-columns: 1fr; /* Fall back layout execution grids into a 1 column channel */
  }
  .trust-metrics-ribbon {
    flex-direction: column;
    gap: 16px;
  }
  .cta-form-console {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   COMPLETE DIGITAL ECOSYSTEM SHOWCASE
   ========================================================================== */
.more-section {
  padding: 120px 60px;
  background-color: var(--bg-main); /* Continuous theme integration */
  width: 100%;
}

.more-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ==========================================================================
   LEFT COLUMN TEXT ARRAYS
   ========================================================================== */
.more-left {
  flex: 1.1;
  text-align: left;
}

.more-subtitle-tag {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.more-left h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.more-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.more-left p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.more-highlight {
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
  margin: 24px 0 !important;
}

/* Unordered Capability Streams */
.more-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.more-list li {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
  padding-left: 22px;
}

.more-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================================================
   RIGHT SIDE NODE GRID CLUSTER
   ========================================================================== */
.more-right-cluster {
  flex: 0.9;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

/* Glassmorphic Minimal Interaction Nodes */
.ecosystem-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.03);
}

/* Vector Shell Frameworks inside Cluster */
.ecosystem-icon {
  width: 44px;
  height: 44px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.ecosystem-card:hover .ecosystem-icon {
  background-color: var(--primary);
  color: var(--bg-dark);
  box-shadow: 0 0 15px var(--primary-glow);
}

.ecosystem-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   RESPONSIVE BOUNDARY BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
  .more-container {
    flex-direction: column; /* Re-flow layout parameters vertically down */
    gap: 60px;
  }
  .more-left {
    width: 100%;
  }
  .more-right-cluster {
    max-width: 580px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .more-section {
    padding: 80px 24px;
  }
  .more-left h2 {
    font-size: 32px;
  }
  .more-right-cluster {
    grid-template-columns: 1fr; /* Fall back to clean single column row channel stack */
    gap: 16px;
  }
  .ecosystem-card {
    flex-direction: row; /* Horizontal icon positioning on compact screens */
    justify-content: flex-start;
    gap: 18px;
    padding: 20px 24px;
  }
  .ecosystem-icon {
    margin-bottom: 0;
  }
}

/* ==========================================================================
   PREMIUM GROUNDING FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-footer); /* Clean deep tech anchoring color */
  border-top: 1px solid var(--border);
  padding: 80px 60px 40px 60px;
  width: 100%;
  position: relative;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Horizontal Layout Matrices */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

/* Column Configuration Modules */
.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-col.wide {
  flex: 1.8;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
}

.footer-brand-txt {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-gray);
  max-width: 360px;
}

.footer-col h3 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* Link Stacks without structural padding shift errors */
.footer-links-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-stack a {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
  width: max-content;
}

.footer-links-stack a:hover {
  color: var(--primary);
  transform: translateX(4px); /* Clean forward slide micro-interaction */
}

/* Social Connection Node Rings */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-3px);
}

/* Translucent Separator rule */
.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 60px 0 32px 0;
}

/* Bottom Metadata Layer alignments */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 13.5px;
  color: var(--text-light);
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-gray);
}

.stars {
  color: var(--secondary); /* High value accent token alignment */
  text-shadow: 0 0 10px rgba(0, 245, 160, 0.2);
  letter-spacing: 2px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT MATRIX BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid framework split on tablets */
    gap: 40px;
  }
  .footer-col.wide {
    grid-column: span 2; /* Brand layout description spans full width on top row */
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 24px 32px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr; /* Stack links straight vertical cascade */
    gap: 32px;
  }
  .footer-col.wide {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column; /* Stack bottom parameters centered */
    text-align: center;
    align-items: center;
  }
  .footer-rating {
    flex-direction: column;
    gap: 6px;
  }
}
body {
  background: linear-gradient(135deg, #0f172a, #059669);
  color: white;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

/* Large Tablets */
@media (max-width: 1200px) {

  .hero-form {
    width: 50%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 992px) {

  section {
    padding: 70px 30px;
  }

  .hero {
    justify-content: center;
    padding: 40px 20px;
  }

  .hero-form {
    width: 80%;
  }

  .service-wrapper {
    flex-direction: column;
  }

  .service-left,
  .service-right {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-wrapper {
    flex-direction: column;
  }

  .pricing-card,
  .pricing-card.featured,
  .pricing-card.small {
    width: 100%;
    max-width: 500px;
    transform: none;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .more-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 40px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {

  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px;
  }

  .hero-form {
    width: 100%;
    padding: 25px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-portfolio {
    grid-template-columns: 1fr;
  }

  .more-right {
    grid-template-columns: 1fr;
  }

  .cta-left h2,
  .more-left h2,
  .pricing-header h2,
  .apps-header h2 {
    font-size: 30px;
  }

  .cta-form {
    padding: 25px;
  }

  .footer {
    padding: 60px 25px 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Small Mobiles */
@media (max-width: 576px) {

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .hero-form {
    padding: 20px;
  }

  .hero-form h2 {
    font-size: 24px;
  }

  .pricing-card {
    padding: 20px;
  }

  .price {
    font-size: 28px;
  }

  .stat-card h3 {
    font-size: 28px;
  }

  .app-card {
    padding: 20px;
  }

  .process-card {
    padding: 20px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .logo-grid {
    grid-template-columns: 1fr;
  }

  .logo-box {
    padding: 15px;
  }

  .footer {
    padding: 50px 20px 20px;
  }

  .footer-col {
    width: 100%;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

/* =========================
   THANK YOU PAGE
========================= */

.thank-you-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(16, 185, 129, 0.08), transparent 25%),
    linear-gradient(145deg, var(--bg-main) 0%, #04070D 45%, var(--bg-dark) 100%);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.thank-you-card {
  width: min(980px, 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(13, 18, 31, 0.98), rgba(3, 5, 10, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.thank-you-card::before,
.thank-you-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.16;
  pointer-events: none;
}

.thank-you-card::before {
  width: 220px;
  height: 220px;
  right: -60px;
  top: -70px;
  background: radial-gradient(circle, rgba(16, 185, 129, 1) 0%, rgba(16, 185, 129, 0) 70%);
}

.thank-you-card::after {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(0, 245, 160, 0.8) 0%, rgba(0, 245, 160, 0) 70%);
}

.thank-you-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.thank-you-copy {
  max-width: 720px;
}
.thank-you-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}

.thank-you-card h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.08;
  color: var(--text-dark);
  margin-top: 16px;
  max-width: 760px;
}

.thank-you-intro {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 12px;
}

.thank-you-message {
  max-width: 700px;
  font-size: 1.03rem;
  color: var(--text-gray);
  margin-top: 14px;
}

.thank-you-orb {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 245, 160, 0.95), rgba(16, 185, 129, 0.18) 28%, rgba(9, 12, 18, 0.98) 60%);
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 18px 32px rgba(16, 185, 129, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.thank-you-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 22px;
}

.thank-you-panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(19, 26, 46, 0.92), rgba(6, 8, 15, 0.98));
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.thank-you-panel--accent {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.08), rgba(6, 8, 15, 0.98));
  border-color: rgba(16, 185, 129, 0.18);
}

.panel-label {
  display: block;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
}

.thank-you-panel h2 {
  color: var(--text-dark);
  font-size: 1.06rem;
  line-height: 1.35;
  margin-top: 8px;
}

.thank-you-panel p {
  color: var(--text-gray);
  margin-top: 10px;
}

.thank-you-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.thank-you-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dark);
  line-height: 1.45;
}

.thank-you-list li::before {
  content: '✦';
  color: var(--secondary);
  margin-top: 1px;
}

.thank-you-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.highlight-box {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(19, 26, 46, 0.92), rgba(6, 8, 15, 0.98));
  padding: 18px;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: 8px;
}

.highlight-box strong {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.thank-you-actions .btn-consultation,
.thank-you-actions .secondary-btn {
  text-decoration: none;
}

@media (max-width: 768px) {
  .thank-you-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .thank-you-hero {
    flex-direction: column;
  }

  .thank-you-orb {
    width: 96px;
    height: 96px;
  }

  .thank-you-grid,
  .thank-you-highlights {
    grid-template-columns: 1fr;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FREE CONSULTATION CALL CTA SECTION
   ========================================================================== */
.free-consultation-cta {
  padding: 80px 60px;
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.free-cta-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.free-cta-content {
  flex: 1;
}

.free-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.free-cta-content h2 {
  font-size: 42px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.free-cta-content h2 span {
  color: var(--primary);
}

.free-cta-content p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 32px;
}

.free-cta-benefits {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.free-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.free-cta-primary-btn {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  transition: var(--transition);
}

.free-cta-primary-btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 0 35px var(--primary-glow);
}

.free-cta-primary-btn svg {
  transition: var(--transition);
}

.free-cta-primary-btn:hover svg {
  transform: translateX(4px);
}

.free-cta-secondary-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.free-cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.free-cta-visual {
  flex: 0.8;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.free-cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
}

.free-cta-icon-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(13, 18, 31, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 50px rgba(16, 185, 129, 0.1);
  animation: float-glow 4s ease-in-out infinite;
}

@keyframes float-glow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .free-consultation-cta {
    padding: 60px 30px;
  }

  .free-cta-container {
    gap: 40px;
  }

  .free-cta-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .free-consultation-cta {
    padding: 50px 24px;
  }

  .free-cta-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .free-cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .free-cta-benefits {
    justify-content: center;
  }

  .free-cta-buttons {
    justify-content: center;
  }

  .free-cta-visual {
    min-height: 200px;
  }

  .free-cta-icon-wrapper {
    width: 120px;
    height: 120px;
  }

  .free-cta-icon-wrapper svg {
    width: 60px;
    height: 60px;
  }
}


:root {
    --primary: #10b981;
    --bg: #0b1120;
    --card: #111827;
    --card2: #1e293b;
    --text: #f8fafc;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
}

/* SECTION */

.free-consultation-cta {
    padding: 80px 20px;
    background: radial-gradient(circle at top right, #10b98120, transparent 30%), radial-gradient(circle at bottom left, #2563eb20, transparent 30%), var(--bg);
}

/* CARD */

.free-cta-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

/* CONTENT */

.free-cta-content {
    flex: 1;
}

.free-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #10b9811a;
    border: 1px solid #10b98140;
    color: #34d399;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* TITLE */

.free-cta-content h2 {
    font-size: 54px;
    line-height: 1.15;
    color: var(--text);
    font-weight: 800;
    margin-bottom: 20px;
}

.free-cta-content h2 span {
    color: #10b981;
}

.free-cta-content p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    margin-bottom: 35px;
}

/* BENEFITS */

.free-cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1e293b;
    color: #e2e8f0;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .05);
}

/* BUTTONS */

.free-cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.free-cta-primary-btn {
    background: #10b981;
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
    box-shadow: 0 12px 35px rgba(16, 185, 129, .3);
}

.free-cta-primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16, 185, 129, .4);
}

.free-cta-secondary-btn {
    background: #1e293b;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
}

.free-cta-secondary-btn:hover {
    background: #263549;
    transform: translateY(-4px);
}

/* RIGHT ICON */

.free-cta-visual {
    width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.free-cta-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: #10b981;
    opacity: .18;
    border-radius: 50%;
    filter: blur(60px);
}

.free-cta-icon-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(16, 185, 129, .15);
}

/* RESPONSIVE */

@media(max-width:992px) {
    .free-cta-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 45px 30px;
    }
    .free-cta-benefits {
        justify-content: center;
    }
    .free-cta-buttons {
        justify-content: center;
    }
    .free-cta-content h2 {
        font-size: 42px;
    }
}

@media(max-width:576px) {
    .free-cta-content h2 {
        font-size: 32px;
    }
    .free-cta-buttons {
        flex-direction: column;
    }
    .free-cta-primary-btn,
    .free-cta-secondary-btn {
        width: 100%;
        justify-content: center;
    }
    .benefit-item {
        width: 100%;
        justify-content: center;
    }
    .free-cta-container {
        padding: 35px 22px;
    }
    .free-cta-icon-wrapper {
        width: 140px;
        height: 140px;
    }
}

/* modal css */
/* Open Button */
.btn-primary {
  padding: 14px 28px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 9999;

  justify-content: center;
  align-items: center;
}

/* Show Modal */
.modal.active {
  display: flex;
}

/* Modal Box */
.modal-content {
  width: 100%;
  max-width: 450px;
  background: #000000c7;
  padding: 35px;
  border-radius: 20px;
  position: relative;

  animation: popup .3s ease;
}

@keyframes popup {
  from {
    transform: scale(.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 18px;
  top: 15px;

  border: none;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
  color: #555;
}

/* Form */
.modal-content h2 {
  margin-bottom: 10px;
}

.modal-content p {
  /* color: #666; */
  margin-bottom: 25px;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-content input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.sticky-icons{
    position: fixed;
    right: 35px;
    top: 88%;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-icon{
    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,.2);

    transition: .3s;
}

.sticky-icon i {
  font-size: 30px;
}

.sticky-icon:hover{
    transform: scale(1.1);
}


.whatsapp{
    background:#25D366;
}


@media(max-width:768px){

    .sticky-icons{
        right: 10px;
    }

    .sticky-icon{
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}
