/* ============================================
   ECOM SUPPORT - Bright Professional Modern Theme
   World-class IT Company Homepage
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f6f8;
  --bg-card: #ffffff;
  --bg-glass: rgba(0, 102, 255, 0.04);
  --bg-dark: #0f1729;
  --bg-dark-secondary: #1a2332;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(0, 0, 0, 0.12);
  --border-focus: #0066ff;

  /* Accent Colors */
  --accent-cyan: #00d4ff;
  --accent-purple: #7b2fff;
  --accent-pink: #ff2d95;
  --accent-blue: #0066ff;
  --accent-green: #00c853;
  --accent-orange: #ff6d00;
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --gradient-accent: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --gradient-warm: linear-gradient(135deg, #7b2fff 0%, #ff2d95 100%);
  --gradient-purple: linear-gradient(135deg, #7b2fff 0%, #a855f7 100%);
  --gradient-hero: linear-gradient(170deg, #f0f5ff 0%, #ffffff 40%, #f8f9fa 100%);

  /* Text Colors */
  --text-primary: #1a1a2e;
  --text-secondary: #555555;
  --text-muted: #999999;
  --text-dark-primary: #ffffff;
  --text-dark-secondary: rgba(255, 255, 255, 0.7);
  --text-dark-muted: rgba(255, 255, 255, 0.4);

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-navbar: 0 2px 20px rgba(0, 0, 0, 0.06);
  --shadow-blue-glow: 0 4px 20px rgba(0, 102, 255, 0.2);
  --shadow-purple-glow: 0 4px 20px rgba(123, 47, 255, 0.15);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

/* --- Utility --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* Alternating section backgrounds */
.section:nth-child(even) {
  background: var(--bg-secondary);
}

.section:nth-child(odd) {
  background: var(--bg-primary);
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 102, 255, 0.06);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 102, 255, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 60px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Animated Background Canvas --- */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

/* --- Grid Overlay (subtle for light theme) --- */
.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  box-shadow: var(--shadow-navbar);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 1001;
}

.nav-logo .logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.2));
  transition: var(--transition-fast);
}

.nav-logo:hover .logo-img {
  filter: drop-shadow(0 4px 14px rgba(0, 102, 255, 0.35));
}

.nav-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Language Selector */
.lang-selector {
  position: relative;
  z-index: 1002;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 102, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.lang-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0, 102, 255, 0.08);
}

.lang-btn svg {
  width: 14px;
  height: 14px;
  transition: var(--transition-fast);
}

.lang-btn.open svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-elevated);
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.lang-option:hover, .lang-option.active {
  background: rgba(0, 102, 255, 0.06);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--accent-blue);
  font-weight: 600;
}

.lang-flag {
  font-size: 1.2rem;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  background: var(--gradient-hero);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero > .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  flex: 1;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/3;
}

.hero-illust-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 102, 255, 0.08);
}

.hero-illust-circle.c1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: float 8s ease-in-out infinite;
}

.hero-illust-circle.c2 {
  width: 75%;
  height: 75%;
  top: 12.5%;
  left: 12.5%;
  border-color: rgba(123, 47, 255, 0.06);
  animation: float 6s ease-in-out infinite reverse;
}

.hero-illust-circle.c3 {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  border-color: rgba(0, 184, 148, 0.06);
  animation: float 10s ease-in-out infinite;
}

.hero-people {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 102, 255, 0.06);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.4), 0 0 20px rgba(0, 102, 255, 0.2);
  animation: pulse-dot 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title .line-1 {
  display: block;
  color: var(--text-primary);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.hero-title .line-2 {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line-3 {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  margin-top: 8px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-blue-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(0, 102, 255, 0.06);
  box-shadow: var(--shadow-blue-glow);
}

/* Hero Orb (light version) */
.hero-orb {
  display: none;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-48%) scale(1.05); }
}

.hero-orb-inner {
  display: none;
}

.hero-orb-inner::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 102, 255, 0.4);
}

@keyframes orbSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: default;
  transition: var(--transition-smooth);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
}

.service-icon.cyan { background: rgba(0, 212, 255, 0.1); color: #00b4d8; }
.service-icon.purple { background: rgba(123, 47, 255, 0.1); color: #7b2fff; }
.service-icon.pink { background: rgba(255, 45, 149, 0.1); color: #ff2d95; }
.service-icon.blue { background: rgba(0, 102, 255, 0.1); color: #0066ff; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   ABOUT / WHY US SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.about-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(123, 47, 255, 0.2);
}

.about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(123, 47, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--accent-purple);
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Our Story Timeline */
.our-story {
  margin: 60px 0 50px;
  padding: 40px;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f6ff 50%, #fff0f6 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.story-header {
  text-align: center;
  margin-bottom: 40px;
}

.story-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-purple));
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.story-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-primary), var(--accent-purple), var(--accent-pink));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-left: 60px;
  margin-bottom: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 14px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--accent-primary);
  z-index: 1;
  transition: var(--transition-smooth);
}

.timeline-dot.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.15);
}

.timeline-year {
  flex-shrink: 0;
  width: 60px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-primary);
  padding-top: 2px;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.solutions-block:last-child {
  margin-bottom: 0;
}

.solutions-block.reverse {
  direction: rtl;
}

.solutions-block.reverse > * {
  direction: ltr;
}

.solution-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.solution-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.solution-feature .check {
  color: var(--accent-green);
  font-weight: 700;
}

.solution-visual {
  position: relative;
  height: 380px;
  border-radius: var(--radius-xl);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.solution-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.04) 0%, rgba(0, 212, 255, 0.04) 100%);
}

.solution-visual-icon {
  font-size: 5rem;
  opacity: 0.12;
  position: relative;
  z-index: 1;
  color: var(--accent-blue);
}

.solution-visual .glow-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(0, 102, 255, 0.08);
  animation: ringPulse 3s ease-in-out infinite;
}

.solution-visual .glow-ring:nth-child(2) {
  width: 280px;
  height: 280px;
  animation-delay: 0.5s;
}

.solution-visual .glow-ring:nth-child(3) {
  width: 360px;
  height: 360px;
  animation-delay: 1s;
  border-color: rgba(123, 47, 255, 0.06);
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ============================================
   COVERAGE SECTION
   ============================================ */
.coverage-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.coverage-tag {
  padding: 14px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  cursor: default;
  box-shadow: var(--shadow-card);
}

.coverage-tag:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  box-shadow: var(--shadow-blue-glow);
  transform: translateY(-2px);
}

/* ============================================
   PAYMENT METHODS SECTION (NEW)
   ============================================ */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.payment-methods-grid .payment-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

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

.payment-methods-grid .payment-card .payment-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-blue);
  transition: var(--transition-smooth);
}

.payment-methods-grid .payment-card:hover .payment-icon {
  background: var(--gradient-primary);
  color: #fff;
  transform: scale(1.1);
}

.payment-methods-grid .payment-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.payment-methods-grid .payment-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION (NEW)
   ============================================ */
.testimonials-section {
  background: var(--bg-secondary);
}

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

.testimonial-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars .star {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-stars .star.empty {
  color: #e5e7eb;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid rgba(0, 102, 255, 0.2);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

/* ============================================
   FAQ SECTION (NEW)
   ============================================ */
.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-card);
}

.faq-item.active {
  border-color: rgba(0, 102, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition-fast);
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question:hover {
  background: rgba(0, 102, 255, 0.03);
}

.faq-question h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-question .faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-blue);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: var(--gradient-primary);
  color: #fff;
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   PARTNERS / CLIENTS SECTION (NEW)
   ============================================ */
.partners-section {
  background: var(--bg-secondary);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  min-height: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 102, 255, 0.15);
}

.partner-logo img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition-smooth);
}

.partner-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ============================================
   TRUST BANNER (NEW)
   ============================================ */
.trust-banner {
  width: 100%;
  padding: 48px 24px;
  background: var(--gradient-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.trust-banner h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.trust-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* ============================================
   CTA BANNER (NEW)
   ============================================ */
.cta-banner {
  padding: 80px 24px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  padding: 16px 40px;
  font-size: 1rem;
}

.cta-banner .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-banner .btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--accent-blue);
}

.contact-item h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 1rem;
  color: var(--text-secondary);
}

.contact-item a:hover {
  color: var(--accent-blue);
}

/* Contact Form */
.contact-form {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: 80px 0 32px;
  border-top: none;
  background: var(--bg-dark);
  color: var(--text-dark-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

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

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

.footer-links a:hover {
  color: var(--accent-cyan);
}

/* Footer logo adjustment for dark bg */
.footer .nav-logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   FLOATING ERP BUTTON
   ============================================ */
.floating-erp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 102, 255, 0.3);
  transition: var(--transition-smooth);
  animation: floatPulse 3s ease-in-out infinite;
}

.floating-erp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(0, 102, 255, 0.45);
}

.floating-erp .erp-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(0, 102, 255, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(0, 102, 255, 0.5); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

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

/* ============================================
   FORM TOAST NOTIFICATION
   ============================================ */
.form-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 10000;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-elevated);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.form-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.form-toast-success {
  background: rgba(0, 200, 83, 0.12);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: #059669;
}

.form-toast-error {
  background: rgba(255, 45, 45, 0.12);
  border: 1px solid rgba(255, 45, 45, 0.3);
  color: #dc2626;
}

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

  .solutions-block {
    grid-template-columns: 1fr;
  }

  .solutions-block.reverse {
    direction: ltr;
  }

  .solution-visual {
    height: 280px;
  }

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

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

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

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

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.3rem;
    color: var(--text-primary);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

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

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

  .our-story {
    padding: 24px;
    margin: 40px 0 30px;
  }

  .story-title {
    font-size: 1.4rem;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .timeline-year {
    width: 50px;
    font-size: 0.95rem;
  }

  .timeline-content {
    padding: 16px 18px;
  }

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

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

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

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

  .floating-erp {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .hero-orb, .hero-orb-inner {
    display: none;
  }

  .lang-selector {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* New sections responsive */
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

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

  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-question h4 {
    font-size: 0.95rem;
  }

  .cta-banner {
    padding: 60px 24px;
  }

  .trust-banner {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

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

  .our-story {
    padding: 20px 16px;
    margin: 30px 0 20px;
  }

  .timeline-item {
    padding-left: 44px;
    gap: 12px;
    flex-direction: column;
  }

  .timeline-year {
    width: auto;
    font-size: 0.9rem;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-dot {
    left: 10px;
    width: 20px;
    height: 20px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .testimonial-card {
    padding: 28px 20px;
  }

  .cash-discount-grid {
    grid-template-columns: 1fr;
  }

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

  .process-step::after {
    display: none;
  }

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

/* ============================================
   CASH DISCOUNT PROGRAM
   ============================================ */
.cash-discount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.cd-benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cd-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 102, 255, 0.15);
}

.cd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-secondary);
  margin-bottom: 24px;
}

.cd-benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cd-benefit-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   PARTNER NETWORK
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  gap: 12px;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 102, 255, 0.15);
}

.partner-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.partner-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================
   HOW IT WORKS / PROCESS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   ILLUSTRATION BANNERS
   ============================================ */
.illust-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.illust-banner svg {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.illust-banner-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-image-banner,
.cd-image-banner,
.solutions-image-banner {
  margin-bottom: 48px;
}

/* ============================================
   RESPONSIVE - NEW SECTIONS (tablet)
   ============================================ */
@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .process-step::after {
    display: none;
  }

  .hero > .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    max-width: 400px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-image {
    max-width: 300px;
  }

  .illust-banner svg {
    height: 140px;
  }

  .illust-banner-text {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}

/* ============================================
   BUSINESS IMAGES - Hero, About, Solutions, etc.
   ============================================ */

/* Hero Photo */
.hero-photo {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 60px rgba(0, 102, 255, 0.25));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* About Photo Banner */
.about-photo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.about-banner-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 30px;
  background: linear-gradient(transparent, rgba(0, 20, 60, 0.75));
  color: white;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Cash Discount Video Banner */
.cd-video-banner {
  margin: 2rem auto 2.5rem;
  max-width: 720px;
  text-align: center;
}

.cd-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 102, 255, 0.15);
}

.cd-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cd-video-caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Solutions Dashboard Banner */
.solutions-dashboard-banner {
  background: linear-gradient(135deg, #f0f2ff 0%, #e8ecff 50%, #f5f0ff 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 4px 30px rgba(0, 102, 255, 0.08);
}

.dashboard-mockup-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-md);
}

/* Partner Logo Images */
.partner-logo-img {
  width: 100%;
  max-width: 120px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partner-logo-card:hover .partner-logo-img {
  filter: grayscale(0%);
}

/* Stars Image */
.stars-img {
  width: 100px;
  height: auto;
}

/* ERP Screenshot in Solutions */
.solution-visual-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.solution-visual-img .glow-ring,
.solution-visual-img .solution-visual-icon {
  display: none;
}

.erp-screenshot {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.erp-screenshot:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .erp-screenshot {
    max-width: 100%;
  }
}

/* Payment Processing Partners Row */
.payment-partners-row {
  margin-top: 3rem;
  text-align: center;
}

.payment-partners-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.payment-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.payment-partner-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(40%) opacity(0.7);
  transition: all 0.3s ease;
}

.payment-partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ---- Responsive: Business Images ---- */
@media (max-width: 768px) {
  .hero-photo {
    max-width: 340px;
    margin: 0 auto;
    display: block;
  }

  .about-banner-img {
    height: 200px;
  }

  .about-banner-overlay {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .cd-video-banner {
    max-width: 100%;
  }

  .solutions-dashboard-banner {
    padding: 1rem;
  }

  .partner-logo-img {
    max-width: 90px;
    height: 32px;
  }

  .payment-partners-logos {
    gap: 1.5rem;
  }

  .payment-partner-logo {
    height: 28px;
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .hero-photo {
    max-width: 280px;
  }

  .about-banner-img {
    height: 160px;
  }

  .about-banner-overlay {
    font-size: 0.85rem;
  }
}
