/* ========================================
   CSS VARIABLES - ENTERPRISE EDITION
   ======================================== */
:root {
  --bg-dark: #0a1628;
  --bg-darker: #050d1a;
  --bg-light: #f8fafc;
  --bg-lighter: #ffffff;
  --primary: #0891b2;
  --primary-light: #22d3ee;
  --primary-dark: #0e7490;
  --accent: #0284c7;
  --accent-light: #38bdf8;
  --gold: #f59e0b;
  --success: #10b981;
  --text-main: #1e293b;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --muted: #cbd5e1;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(8, 145, 178, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: default;
  scroll-padding-top: 80px; /* Offset for fixed header */
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  overflow-x: hidden;
  cursor: default;
}

/* Custom Cursor Effects */
a, button, .btn, .card, .hamburger {
  cursor: pointer;
  transition: all 0.3s ease;
}

a:hover, button:hover, .btn:hover {
  filter: brightness(1.05);
}

/* Smooth Cursor Shadow Effect */
* {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="6" fill="rgba(0,188,212,0.3)" /><circle cx="16" cy="16" r="3" fill="rgba(0,188,212,0.8)" /></svg>'), auto;
}

a, button, .btn, .card, input, textarea, select {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="8" fill="rgba(0,151,167,0.4)" /><circle cx="16" cy="16" r="4" fill="rgba(0,151,167,1)" /></svg>'), pointer;
}

.site-wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* ========================================
   HEADER
   ======================================== */

.site-header,
.header {
  background: #ffffff;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 188, 212, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.site-header.scrolled,
.header.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 188, 212, 0.15);
}

.site-header {
  min-height: 50px;
  align-items: center;
}

.header-inner {
  min-height: 70px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo-block:hover {
  transform: scale(1.05);
}

.logo-link {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 188, 212, 0.2));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
  filter: drop-shadow(0 4px 12px rgba(0, 188, 212, 0.4));
  transform: translateY(-2px);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.0;
}

.logo-text-main {
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.logo-text-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #d62828;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: -0.85rem;
  align-items: center;
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  margin-left: 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  animation: fadeInRight 0.8s ease-out;
}

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

.demo-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.demo-btn:hover::before {
  width: 300px;
  height: 300px;
}

.main-nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.demo-btn:hover {
  box-shadow: 0 6px 25px rgba(0, 188, 212, 0.4);
  transform: translateY(-2px) scale(1.05);
}

.demo-btn:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 2px 10px rgba(0, 188, 212, 0.3);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.nav-desktop li {
  animation: fadeInUp 0.6s ease-out both;
}

.nav-desktop li:nth-child(1) { animation-delay: 0.1s; }
.nav-desktop li:nth-child(2) { animation-delay: 0.2s; }
.nav-desktop li:nth-child(3) { animation-delay: 0.3s; }
.nav-desktop li:nth-child(4) { animation-delay: 0.4s; }
.nav-desktop li:nth-child(5) { animation-delay: 0.5s; }
.nav-desktop li:nth-child(6) { animation-delay: 0.6s; }

.nav-desktop a {
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: transparent;
}

.nav-desktop a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 151, 167, 0.1));
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-desktop a:hover::before {
  width: 80%;
}

.nav-desktop a:hover::after {
  opacity: 1;
}

.nav-desktop a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 151, 167, 0.1));
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
  padding: 0.6rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:hover {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.15), rgba(0, 151, 167, 0.15));
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.2);
  transform: scale(1.05);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active {
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 151, 167, 0.2));
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

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

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 188, 212, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
  max-height: 500px;
  padding: 1.5rem 0;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile li {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.4s ease-out forwards;
}

.nav-mobile.active li:nth-child(1) { animation-delay: 0.05s; }
.nav-mobile.active li:nth-child(2) { animation-delay: 0.1s; }
.nav-mobile.active li:nth-child(3) { animation-delay: 0.15s; }
.nav-mobile.active li:nth-child(4) { animation-delay: 0.2s; }
.nav-mobile.active li:nth-child(5) { animation-delay: 0.25s; }
.nav-mobile.active li:nth-child(6) { animation-delay: 0.3s; }

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

.nav-mobile a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.nav-mobile a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 188, 212, 0.1), transparent);
  transition: width 0.4s ease;
}

.nav-mobile a:hover::before {
  width: 100%;
}

.nav-mobile a:hover {
  background: rgba(0, 188, 212, 0.05);
  border-left-color: var(--primary);
  color: var(--primary);
  padding-left: 2.5rem;
}


nav {
  background-color: #ffffff !important;
}

nav ul li a {
  color: #1a1a2e !important;
  font-weight: 500;
}

nav ul li a:hover {
  color: #00bcd4 !important;
  text-decoration: none;
}

nav ul li a {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-mobile {
  background: #ffffff;
  padding: 1.2rem;
}

.nav-mobile a {
  color: #1a1a2e !important;
}

/* ========================================
   HERO SECTION (Homepage)
   ======================================== */
.hero {
  padding-top: 80px;
  margin-top: 30px;
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Mobile Hero Adjustments - Prevent content hiding under header */
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    margin-top: 0;
    min-height: auto;
    height: auto;
    padding-bottom: 60px;
  }
  
  .hero-content {
    padding: 1.5rem 1rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 90px;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}

video {
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
	
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.navbar {
  border-bottom: 1px solid #e0e0e0;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Scroll Down Button */
.scroll-down-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-down-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  animation: none;
}

.scroll-down-btn svg {
  width: 28px;
  height: 28px;
}

/* Hide scroll down button on tablets and desktops, show only on mobile */
@media (min-width: 769px) {
  .scroll-down-btn {
    display: none;
  }
}

/* ========================================
   PAGE HERO (Sub-pages)
   ======================================== */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 30, 60, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
  margin-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/digital-trans.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* ========================================
   SOLUTION SECTIONS (Homepage)
   ======================================== */
.main {
  background: var(--bg-light);
}

.solution-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.solution-section:nth-child(even) {
  background: var(--bg-light);
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.solution-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.solution-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.solution-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.solution-image:hover img {
  transform: scale(1.05);
}

.solution-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.solution-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.content-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ========================================
   CARD GRIDS
   ======================================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

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

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

.card ul {
  list-style: none;
  padding-left: 0;
}

.card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-card-content {
  padding: 2rem;
}

.product-card-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.product-card-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.product-card-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.product-card-content ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
}

.product-card-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 0.9;
}

.card-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;                 /* ensures image stays within box */
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;                /* keeps logo proportional */
}


/* ========================================
   CLIENT LOGOS
   ======================================== */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.client-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--primary);
}

/* ========================================
   CLIENT VIDEO BANNER
   ======================================== */
.client-video-wrapper {
  max-width: 900px;
  margin: 0 auto 4rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.client-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

.client-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--transition);
}

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

.client-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.client-list ul {
  list-style: none;
  padding: 0;
}

.client-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.client-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.testimonials-section { ... }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testi-card4 {
  background: #ffffff;              /* white card */
  border-radius: 16px;              /* rounded corners like reference */
  padding: 28px 30px;
  border: 1px solid #e0f2f7;        /* light teal border */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  color: #0097a7;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.testi-card4:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testi-card4_review {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.testi-card4_review i {
  margin: 0 2px;
  color: #ffb400;
  color: #ffb400 !important;
}

.box-profile {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e0f2f7;
}

.box-text {
  color: #4a4a4a;
  line-height: 1.7;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: #555;
}

.box-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.box-avater {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.box-title {
  font-size: 1.05rem;
  color: #144b73;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.box-desig {
  font-size: 14px;
  color: #1ea4a8;
  display: block;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #00bcd4;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #0097a7;
}

/* Responsive */
@media (max-width: 768px) {
  .testi-card4 {
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .box-profile {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}


/* ========================================
   CONTACT FORM
   ======================================== */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

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

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.contact-info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-info-card p {
  margin: 0.5rem 0;
  color: var(--text-light);
}

/* ========================================
   TIMELINE / PROCESS
   ======================================== */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-number {
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 2;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(135deg, #0a1128 0%, #1a1a2e 50%, #16213e 100%);
  color: var(--white);
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.footer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-column {
  animation: fadeInUp 0.8s ease-out both;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }

.footer-column h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), #4dd0e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

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

.footer-column li {
  margin-bottom: 0.85rem;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.footer-column li:hover {
  transform: translateX(5px);
}

.footer-column a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-column a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--primary);
}

.footer-column a:hover::before {
  left: -15px;
  opacity: 1;
}

.footer-column a:hover {
  color: var(--primary);
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.5s both;
}

/* ========================================
   LEGAL PAGE STYLES
   ======================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 100px;
  margin-bottom: 4rem;
}

.legal-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

/* Mobile - Hide demo button */
@media (max-width: 767px) {
  .demo-btn {
    display: none;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  
  .nav-desktop {
    display: block;
  }
  
  .nav-mobile {
    display: none;
  }
  
  .solution-container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .solution-right .solution-container {
    direction: rtl;
  }
  
  .solution-right .solution-text {
    direction: ltr;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .header-inner {
    padding: 1.25rem 3rem;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 1.35rem;
  }
  
  .solution-section {
    padding: 6rem 3rem;
  }
  
  .solution-image img {
    height: 450px;
  }
  
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .solution-text h2 {
    font-size: 2.25rem;
  }
  
  .solution-text p {
    font-size: 1.125rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
  
  .solution-text h2 {
    font-size: 1.5rem;
  }
  
  .solution-image img {
    height: 300px;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-number {
    left: 20px;
    transform: none;
  }
}

/* ========================================
   ENHANCED SECTIONS - INDEX PAGE
   ======================================== */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 3.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 188, 212, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 151, 167, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 188, 212, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.benefit-card:hover::after {
  width: 500px;
  height: 500px;
}

.benefit-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 188, 212, 0.25);
  border-color: var(--primary);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 2;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.5;
  transition: all 0.5s ease;
  z-index: -1;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.5);
}

.benefit-card:hover .benefit-icon::before {
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 0;
}

.benefit-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

/* Brands Section */
.brands-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 0;
  position: relative;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 188, 212, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 151, 167, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

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

.brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(0, 188, 212, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.1), transparent);
  transition: left 0.6s ease;
}

.brand-card:hover::before {
  left: 100%;
}

.brand-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 188, 212, 0.25);
  border-color: var(--primary);
}

.brand-logo {
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  opacity: 1;
}

.brand-card:hover .brand-logo {
  transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 10px 25px rgba(0, 188, 212, 0.4));
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.brand-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Highlights Section */
.highlights-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.highlights-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.highlights-section .section-title {
  color: var(--white);
}

.highlights-section .section-title::after {
  background: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.highlight-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  background: var(--white);
  border-color: var(--white);
}

.highlight-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

.highlight-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Solution Text Button Styling */
.solution-text .btn {
  margin-top: 1.5rem;
  display: inline-block;
}

/* Card Grid Enhancements */
.benefits-section .card-grid,
.brands-section .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .benefits-section,
  .brands-section,
  .highlights-section {
    padding: 3rem 0;
  }
  
  .benefit-card,
  .brand-card {
    padding: 2rem 1.5rem;
  }
  
  .highlight-number {
    font-size: 2.75rem;
  }
  
  .highlights-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .highlight-number {
    font-size: 2.5rem;
  }
}

/* Mobile Benefit Cards - Full Width */
@media (max-width: 768px) {
  .benefits-section .card-grid,
  .brands-section .card-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .benefit-card,
  .brand-card,
  .card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  .card-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .benefits-section .card-grid,
  .brands-section .card-grid,
  .card-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem;
    padding: 0 0.5rem;
  }
  
  .benefit-card,
  .brand-card,
  .card {
    width: 100% !important;
    padding: 1.5rem 1rem;
  }
  
  .benefits-section,
  .brands-section {
    padding: 2.5rem 0;
  }
  
  .benefits-section .container,
  .brands-section .container {
    padding: 0 0.5rem;
  }
}

/* ========================================
   PROFESSIONAL ENHANCEMENTS
   ======================================== */

/* Smooth Page Transitions */
.site-wrapper {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scroll Reveal Animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.brand-card,
.highlight-card {
  animation: slideInUp 0.6s ease-out backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.brand-card:nth-child(1) { animation-delay: 0.1s; }
.brand-card:nth-child(2) { animation-delay: 0.2s; }
.brand-card:nth-child(3) { animation-delay: 0.3s; }

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }

/* Elegant Selection Styles */
::selection {
  background: rgba(0, 188, 212, 0.3);
  color: var(--text-main);
}

::-moz-selection {
  background: rgba(0, 188, 212, 0.3);
  color: var(--text-main);
}

/* Smooth Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 6px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

/* Enhanced Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ========================================
   PROCESS SECTION ENHANCEMENTS
   ======================================== */

.process-section {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 40%, rgba(0, 188, 212, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(0, 151, 167, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 120px;
  animation: slideInUp 0.6s ease-out backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.timeline-number {
  position: absolute;
  left: 20px;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
  transition: all 0.4s ease;
  z-index: 2;
}

.timeline-item:hover .timeline-number {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 30px rgba(0, 188, 212, 0.5);
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 188, 212, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid rgba(0, 188, 212, 0.1);
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(0, 188, 212, 0.2);
  border-color: var(--primary);
}

.timeline-item:hover .timeline-content::before {
  border-right-color: var(--primary);
}

.timeline-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   CALL TO ACTION SECTION
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: slideInUp 0.8s ease-out;
}

.cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

.cta-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s ease;
}

.cta-buttons .btn-primary {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: var(--white);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-secondary:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 80px;
  }
  
  .timeline-number {
    left: 0;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .timeline-content::before {
    display: none;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.05rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .timeline-item {
    padding-left: 70px;
  }
  
  .timeline-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
}

/* ========================================
   PRODUCTS SECTION ENHANCEMENTS
   ======================================== */

.products-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 0;
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(0, 188, 212, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(0, 151, 167, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Enhanced Product Cards */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(0, 188, 212, 0.1);
  display: grid;
  grid-template-columns: 1fr;
  animation: slideInUp 0.6s ease-out backwards;
  position: relative;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 188, 212, 0.2);
  border-color: var(--primary);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.product-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-card-image::after {
  opacity: 1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-card-content {
  padding: 2.5rem;
  position: relative;
}

.product-card-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.product-card:hover .product-card-content h3 {
  color: var(--primary);
}

.product-card-content > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.product-card-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin: 1.5rem 0 1rem;
  position: relative;
  padding-left: 1rem;
}

.product-card-content h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.product-card-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
}

.product-card-content ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.product-card-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-card-content ul li::before {
  transform: scale(1.2);
  color: var(--accent);
}

.product-card-content .btn {
  margin-top: 1.5rem;
  transition: all 0.4s ease;
}

.product-card:hover .product-card-content .btn {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

/* Desktop: Side-by-side layout for product cards */
@media (min-width: 769px) {
  .product-card {
    grid-template-columns: 400px 1fr;
  }
  
  .product-card:nth-child(even) {
    grid-template-columns: 1fr 400px;
  }
  
  .product-card:nth-child(even) .product-card-image {
    order: 2;
  }
  
  .product-card:nth-child(even) .product-card-content {
    order: 1;
  }
  
  .product-card-image {
    height: 100%;
    min-height: 400px;
  }
}

/* Tablet Adjustments */
@media (max-width: 768px) {
  .products-grid {
    gap: 2rem;
  }
  
  .product-card-content {
    padding: 2rem;
  }
  
  .product-card-content h3 {
    font-size: 1.5rem;
  }
  
  .product-card-content ul {
    grid-template-columns: 1fr;
  }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .products-section {
    padding: 3rem 0;
  }
  
  .products-grid {
    gap: 1.5rem;
  }
  
  .product-card-image {
    height: 250px;
  }
  
  .product-card-content {
    padding: 1.5rem;
  }
  
  .product-card-content h3 {
    font-size: 1.35rem;
  }
  
  .product-card-content ul li {
    font-size: 0.9rem;
  }
}

/* ========================================
   CLIENTS PAGE ENHANCEMENTS
   ======================================== */

/* Clients Introduction Section */
.clients-intro-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 0;
  position: relative;
}

.clients-intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 188, 212, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 151, 167, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.section-intro {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideInUp 0.6s ease-out;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Client Logos Wrapper */
.client-logos-wrapper {
  margin: 2rem 0;
  padding: 1rem 0;
  position: relative;
}

.client-logo-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 2px solid rgba(0, 188, 212, 0.1);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
}

.client-logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 188, 212, 0.2);
  border-color: var(--primary);
}

.client-logo-card img {
  width: 100%;
  max-width: 280px;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.client-logo-card:hover img {
  transform: scale(1.1);
}

/* Featured Clients Section */
.featured-clients-section {
  background: var(--white);
  padding: 5rem 0;
  position: relative;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.client-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.client-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(0, 188, 212, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out backwards;
}

.client-item:nth-child(1) { animation-delay: 0.05s; }
.client-item:nth-child(2) { animation-delay: 0.1s; }
.client-item:nth-child(3) { animation-delay: 0.15s; }
.client-item:nth-child(4) { animation-delay: 0.2s; }
.client-item:nth-child(5) { animation-delay: 0.25s; }
.client-item:nth-child(6) { animation-delay: 0.3s; }
.client-item:nth-child(7) { animation-delay: 0.35s; }
.client-item:nth-child(8) { animation-delay: 0.4s; }
.client-item:nth-child(9) { animation-delay: 0.45s; }
.client-item:nth-child(10) { animation-delay: 0.5s; }
.client-item:nth-child(11) { animation-delay: 0.55s; }

.client-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.client-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.2);
  border-color: var(--primary);
  background: var(--white);
}

.client-item:hover::before {
  transform: scaleY(1);
}

.client-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.client-item:hover .client-icon {
  transform: scale(1.2) rotate(10deg);
}

.client-name {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.3s ease;
}

.client-item:hover .client-name {
  color: var(--accent);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(0, 188, 212, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(0, 151, 167, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(0, 188, 212, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideInUp 0.6s ease-out backwards;
}

.testi-card:nth-child(1) { animation-delay: 0.1s; }
.testi-card:nth-child(2) { animation-delay: 0.2s; }
.testi-card:nth-child(3) { animation-delay: 0.3s; }
.testi-card:nth-child(4) { animation-delay: 0.4s; }

.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(0, 188, 212, 0.08);
  line-height: 1;
  z-index: 0;
}

.testi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 188, 212, 0.2);
  border-color: var(--primary);
}

.testi-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testi-rating i {
  color: #ffc107;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.testi-card:hover .testi-rating i {
  transform: scale(1.1);
}

.testi-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testi-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: auto;
  font-style: italic;
  padding-bottom: 1.5rem;
}

.testi-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(0, 188, 212, 0.1);
  margin-top: auto;
}

.testi-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
  transition: all 0.4s ease;
}

.testi-card:hover .avatar-placeholder {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.testi-info {
  flex: 1;
}

.testi-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.testi-company {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .clients-intro-section,
  .featured-clients-section,
  .testimonials-section {
    padding: 3rem 0;
  }
  
  .section-intro {
    margin-bottom: 3rem;
  }
  
  .client-list-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .client-item {
    padding: 1.25rem 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testi-card {
    padding: 2rem;
  }
  
  .testi-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  .client-logo-card {
    height: 120px;
    padding: 1.5rem;
  }
  
  .client-logo-card img {
    max-width: 150px;
    max-height: 80px;
  }
}

/* ========================================
   PROFESSIONAL TOP BAR
   ======================================== */
.top-bar {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-left i {
  color: var(--primary-light);
  font-size: 0.9rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 500;
}

.trust-badge i {
  font-size: 0.75rem;
}

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

.social-links a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* ========================================
   ENHANCED HERO SECTION
   ======================================== */
.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fcd34d;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
  backdrop-filter: blur(10px);
}

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

.hero-trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out 0.5s both;
}

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

.trust-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .hero-trust-indicators {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }
  
  .trust-divider {
    display: none;
  }
  
  .trust-item {
    flex: 1;
    min-width: 80px;
  }
  
  .trust-number {
    font-size: 1.5rem;
  }
}

/* ========================================
   SECTION HEADERS - ENTERPRISE STYLE
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.15), rgba(8, 145, 178, 0.05));
  border: 1px solid rgba(8, 145, 178, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 3rem 0.75rem;
  }
  
  .why-choose-section .container {
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 2.5rem 0.5rem;
  }
  
  .why-choose-section .container {
    padding: 0;
  }
}

.why-choose-section.alt-bg {
  background: linear-gradient(180deg, var(--white) 0%, #f0f9ff 50%, var(--white) 100%);
  border-top: 1px solid rgba(8, 145, 178, 0.1);
  border-bottom: 1px solid rgba(8, 145, 178, 0.1);
}

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

.benefit-card.premium {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card.premium:hover::before {
  transform: scaleX(1);
}

.benefit-card.premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(8, 145, 178, 0.2);
}

.benefit-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
  transition: var(--transition);
}

.benefit-icon-wrapper i {
  font-size: 1.75rem;
  color: var(--white);
}

.benefit-card.premium:hover .benefit-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card.premium h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.benefit-card.premium p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.benefit-stats {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .benefit-card.premium {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem;
    padding: 0;
  }
  
  .benefit-card.premium {
    padding: 1.75rem 1.25rem;
  }
}

/* ========================================
   TESTIMONIALS SECTION - ENTERPRISE
   ======================================== */
.testimonials-section {
  padding: 6rem 2rem;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, #fafafa 0%, var(--white) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8, 145, 178, 0.15);
}

.testimonial-quote {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-rating {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-rating i {
  margin-right: 2px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   BRANDS SECTION - ENTERPRISE
   ======================================== */
.brands-section {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

@media (max-width: 768px) {
  .brands-section {
    padding: 3rem 0.75rem;
  }
  
  .brands-section .container {
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  .brands-section {
    padding: 2.5rem 0.5rem;
  }
  
  .brands-section .container {
    padding: 0;
  }
}

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

.brand-card.premium {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.brand-card.premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.brand-card.premium .brand-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
  padding: 1.25rem;
  transition: var(--transition);
}

.brand-card.premium:hover .brand-logo {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.05));
  transform: scale(1.05);
}

.brand-card.premium .brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-card.premium h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.brand-card.premium p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.brand-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.05));
  border: 1px solid rgba(8, 145, 178, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .brands-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .brand-card.premium {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    gap: 1.25rem;
    padding: 0;
  }
  
  .brand-card.premium {
    padding: 2rem 1.25rem;
  }
}

/* ========================================
   CERTIFICATIONS SECTION
   ======================================== */
.certifications-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.certifications-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: var(--transition);
}

.cert-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(8, 145, 178, 0.3);
}

.cert-item i {
  font-size: 1.25rem;
  color: var(--primary-light);
}

.cert-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

/* ========================================
   ENHANCED FOOTER - ENTERPRISE
   ======================================== */
.footer-top {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 2rem;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-cta-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-main {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(1.1);
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-column h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column a i {
  font-size: 0.7rem;
  color: var(--primary);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-column a:hover i {
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-contact li i {
  color: var(--primary-light);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 2rem;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

.footer-badges {
  display: flex;
  gap: 1.5rem;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-badges i {
  color: var(--success);
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: span 2;
    padding-right: 0;
  }
  
  .footer-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   BUTTON ENHANCEMENTS
   ======================================== */
.btn i {
  margin-right: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(8, 145, 178, 0.4);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   LOADING ANIMATION
   ======================================== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--bg-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   LANDSCAPE MOBILE FIXES
   ======================================== */
@media (max-width: 900px) and (orientation: landscape) {
  /* Hide Request Demo button on rotated mobile */
  .demo-btn {
    display: none !important;
  }
  
  /* Fix hero section to prevent overlap with content below */
  .hero {
    min-height: 100vh;
    height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-cta {
    gap: 0.75rem;
  }
  
  .hero-cta .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .hero-trust-indicators {
    margin-top: 1rem;
    gap: 0.5rem;
  }
  
  .hero-trust-indicators .trust-number {
    font-size: 1.25rem;
  }
  
  .hero-trust-indicators .trust-label {
    font-size: 0.7rem;
  }
  
  .scroll-down-btn {
    display: none;
  }
}
  
  .client-item {
    padding: 1rem 1.25rem;
  }
  
  .client-name {
    font-size: 0.95rem;
  }
  
  .testi-card::before {
    font-size: 6rem;
  }
}