* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #141420;
  --bg-tertiary: #1a1a28;
  --text-primary: #ffffff;
  --text-secondary: #b8b8c8;
  --text-tertiary: #8a8a9a;
  --accent-primary: #0076a3;
  --accent-secondary: #0099cc;
  --accent-tertiary: #00b3e6;
  --accent-hover: #00c4f0;
  --gradient-1: linear-gradient(135deg, #0076a3 0%, #005a7a 100%);
  --gradient-2: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  --gradient-3: linear-gradient(135deg, #0099cc 0%, #00b3e6 100%);
  --gradient-4: linear-gradient(135deg, #0076a3 0%, #00b3e6 100%);
  --gradient-5: linear-gradient(135deg, #005a7a 0%, #0076a3 100%);
  --gradient-premium: linear-gradient(135deg, #0076a3 0%, #0099cc 50%, #00b3e6 100%);
  
  /* Typography Scale */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Spacing Scale */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 50px;
  
  /* Premium Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 30px rgba(0, 118, 163, 0.25);
  --shadow-xl: 0 20px 40px rgba(0, 118, 163, 0.3);
  --shadow-2xl: 0 25px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(0, 118, 163, 0.3);
  --shadow-glow-lg: 0 0 40px rgba(0, 118, 163, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(20px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100%;
}

/* Screen Reader Only - For AI Bots & Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Screen Reader Only - Visible when focused (for keyboard navigation) */
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* SVG Icon Styles - Professional icon replacements */
.icon-wrapper,
.socialProofIcon,
.insightIcon,
.exitIntentIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.socialProofIcon svg,
.insightIcon svg,
.exitIntentIcon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  opacity: 1;
  visibility: visible;
}

/* Ensure icons inherit text color */
.icon-wrapper svg,
.serviceHeroBadge svg,
.newsletterBadge svg,
.ctaSectionBadge svg,
.testimonialsBadge svg {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  opacity: 1;
  visibility: visible;
}

/* Ensure service icons are always visible */
.serviceIcon svg path,
.serviceIcon svg circle,
.serviceIcon svg rect,
.serviceIcon svg line,
.serviceIcon svg polyline,
.serviceIcon svg polygon {
  stroke: white !important;
  fill: none !important;
  opacity: 1 !important;
}
  margin: 0;
  padding: 0;
}

/* Comprehensive Responsive Design - All Screen Sizes */

/* Extra Small Devices (phones, up to 374px) */
@media (max-width: 374px) {
  .container {
    padding: 0 12px;
  }
  
  .sectionTitle {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .sectionSubtitle {
    font-size: 0.875rem;
  }
  
  .title {
    font-size: 1.75rem;
  }
  
  .subtitle {
    font-size: 0.95rem;
  }
  
  .formProgress {
    gap: 0.15rem;
  }
  
  .stepNumber {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .stepLabel {
    font-size: 0.6rem;
  }
  
  .formButton {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .enquiryForm {
    padding: 1.5rem;
  }
  
  .hero {
    padding: 60px 12px 40px;
  }
}

/* Small Devices (phones, 375px to 479px) */
@media (min-width: 375px) and (max-width: 479px) {
  .container {
    padding: 0 18px;
  }
  
  .sectionTitle {
    font-size: 1.75rem;
  }
  
  .title {
    font-size: 2rem;
  }
}

/* Medium Small Devices (phones, 480px to 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
  
  .industriesGrid,
  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .aboutFeatures {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Standard Button Styles - Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-md);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-premium);
  color: white;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Gradient Background Animation */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gradient-bg {
  background: linear-gradient(-45deg, #0076a3, #0099cc, #00b3e6, #005a7a);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0076a3, #0099cc);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0099cc, #00b3e6);
}

/* Focus States for Accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Selection */
::selection {
  background: rgba(0, 118, 163, 0.3);
  color: var(--text-primary);
}

/* Page Loader Styles */
.pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}

.pageLoader.hidden {
  opacity: 0;
}

.pageLoaderBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  z-index: -1;
}

.pageLoaderBackground::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 118, 163, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: loaderPulse 4s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.pageLoaderContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.pageLoaderLogoContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.pageLoaderLogoWrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: loaderLogoFloat 3s ease-in-out infinite;
}

.pageLoaderLogoImage {
  position: relative;
  z-index: 1;
  animation: loaderLogoFadeIn 0.8s ease-out;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

@keyframes loaderLogoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderLogoFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pageLoaderProgressBar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.pageLoaderProgressFill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: loaderProgress 2s ease-in-out infinite, loaderGradientMove 2s linear infinite;
  box-shadow: 0 0 10px rgba(0, 118, 163, 0.6);
}

@keyframes loaderProgress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

@keyframes loaderGradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.pageLoaderLoadingText {
  font-size: 0.875rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: loaderFadeInOut 2s ease-in-out infinite;
}

@keyframes loaderFadeInOut {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
  .pageLoaderLogoWrapper {
    animation: none;
  }
  
  .pageLoaderLogoImage {
    animation: loaderLogoFadeIn 0.8s ease-out;
  }
  
  .pageLoaderProgressFill {
    animation: loaderProgress 2s ease-in-out infinite;
  }
  
  .pageLoaderLoadingText {
    animation: none;
  }
  
  .pageLoaderBackground::before {
    animation: none;
  }
}

/* Responsive adjustments for loader */
@media (max-width: 768px) {
  .pageLoaderLogoImage {
    max-width: 160px;
  }
  
  .pageLoaderProgressBar {
    width: 160px;
  }
}
.container {
  min-height: 100vh;
  background: var(--bg-primary);
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0; /* Ensure no margin */
}

.headerContent {
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: auto;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Hide Mobile Menu Toggle on Desktop */
@media (min-width: 769px) {
  .mobileMenuToggle {
    display: none !important;
  }

  .mobileMenu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Minimize header height on desktop */
  .header {
    padding: 2px 0;
  }

  .headerContent {
    padding: 0 40px;
  }

  .contactButton {
    padding: 5px 18px;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .navLink {
    padding: 0.1rem 0;
    font-size: 0.9rem;
  }

  .logo img {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
  }
}

.navLink {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-smooth);
  position: relative;
  padding: 0.15rem 0;
  letter-spacing: 0.2px;
}

.navLink::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gradient-premium);
  transition: width var(--transition-smooth);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 118, 163, 0.5);
}

.navLink:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.navLink:hover::after {
  width: 100%;
}

.contactButton {
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  color: white;
  border: none;
  padding: 6px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(0, 118, 163, 0.35);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contactButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contactButton:hover::before {
  left: 100%;
}

.contactButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 118, 163, 0.45);
  background: linear-gradient(135deg, #0099cc 0%, #00b3e6 100%);
}

.contactButton:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 118, 163, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 20px 150px;
  overflow: visible;
  min-height: calc(100vh - 20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  scroll-margin-top: 80px;
  z-index: 2;
}

@media (min-width: 1025px) {
  .hero {
    min-height: calc(100vh + 200px);
    padding: 140px 40px 180px;
    overflow: visible;
    margin-top: 0;
    scroll-margin-top: 100px;
    align-items: flex-start;
  }

  /* Further minimize header height on large desktop */
  .header {
    padding: 2px 0;
  }

  .heroContent {
    padding: 0 60px 40px;
    gap: 4rem;
    max-width: 1400px;
  }
  
  .heroLeft {
    gap: 1.75rem;
  }
  
  .heroRight {
    justify-content: flex-end;
  }

  .headerContent {
    padding: 0 50px;
  }

  .contactButton {
    padding: 4px 16px;
    font-size: 0.85rem;
  }

  .navLink {
    padding: 0.05rem 0;
    font-size: 0.9rem;
  }

  .logo img {
    max-height: 50px;
    max-width: 180px;
    width: auto;
    height: auto;
  }
}

.heroBackground {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.75) 50%, rgba(0, 118, 163, 0.3) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 118, 163, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.heroContent {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 0;
  max-width: 1400px;
  transform: none !important;
  opacity: 1 !important;
}

.heroLeft {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  padding-top: 0;
  margin-top: 0;
  align-items: flex-start;
}

.heroRight {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  padding-top: 0;
  margin-top: 0;
}

.heroBadge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(0, 118, 163, 0.2);
  border: 1px solid rgba(0, 118, 163, 0.4);
  border-radius: 50px;
  color: #66b3d1;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-primary);
}

.gradientText {
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 50%, #00b3e6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0;
  font-weight: 400;
}

.heroStats {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1025px) {
  .heroStats {
    margin-top: 0.5rem;
    padding-top: 1rem;
  }
}

.heroStat {
  text-align: left;
  min-width: 100px;
}

.heroStatValue {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.heroStatLabel {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* Enquiry Form */
.enquiryForm {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden !important;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  z-index: 10;
  align-self: start;
  margin-top: 0;
  padding-top: 0;
}

.enquiryTitle {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.3;
}

.enquirySubtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.enquiryFormContent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formGroup {
  display: flex;
  flex-direction: column;
}

.formInput,
.formTextarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition-smooth);
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.formInput:hover,
.formTextarea:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.formInput:focus,
.formTextarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(0, 118, 163, 0.15), 0 4px 16px rgba(0, 118, 163, 0.2);
  transform: translateY(-1px);
}

.formInput::placeholder,
.formTextarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.formTextarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Inter', sans-serif;
}

.enquiryButton {
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 118, 163, 0.3);
  margin-top: 0.5rem;
}

.enquiryButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 118, 163, 0.4);
  background: linear-gradient(135deg, #0099cc 0%, #00b3e6 100%);
}

.enquiryButton:active {
  transform: translateY(0);
}

.enquiryButton:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.formSuccess {
  padding: 1rem;
  background: rgba(0, 200, 83, 0.15);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 12px;
  color: #4caf50;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1rem;
}

.formError {
  padding: 1rem;
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 12px;
  color: #f44336;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* Multi-Step Form Styles */
.multiStepForm {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden !important;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
}

.formProgress {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 0 0.25rem;
  position: relative;
  width: 100%;
}

.formProgress::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  z-index: 0;
}

.progressStep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.stepNumber {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.progressStep.active .stepNumber {
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  border-color: #0076a3;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 118, 163, 0.35), 0 0 0 3px rgba(0, 118, 163, 0.1);
  transform: scale(1.05);
}

.stepLabel {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
  margin-top: 0.25rem;
  transition: color 0.3s ease;
}

.progressStep.active .stepLabel {
  color: var(--text-primary);
  font-weight: 600;
}

.formStep {
  display: none;
  animation: fadeIn 0.3s ease;
  width: 100%;
}

.formStep.active {
  display: block;
}

.formStep .formGroup {
  width: 100%;
  margin-bottom: 1rem;
}

.formStep .formGroup:last-child {
  margin-bottom: 0;
}

#industrySpecificQuestions {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#industrySpecificQuestions .formGroup {
  width: 100%;
  margin-bottom: 1.25rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stepTitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-align: center;
  width: 100%;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.formLabel {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  letter-spacing: 0.1px;
}

.industryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.industryOption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-height: 100px;
}

.industryOption:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 118, 163, 0.3);
  transform: translateY(-2px);
}

.industryOption input[type="radio"] {
  display: none;
}

.industryOption input[type="radio"]:checked + .industryIcon {
  transform: scale(1.1);
}

.industryOption:has(input[type="radio"]:checked) {
  background: rgba(0, 118, 163, 0.15);
  border-color: #0076a3;
  box-shadow: 0 4px 12px rgba(0, 118, 163, 0.2);
}

.industryIcon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.industryName {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.industryOption.error {
  border-color: #f44336;
}

.formSelect {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition-smooth);
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
}

.formSelect:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.formSelect:focus {
  outline: none;
  border-color: var(--accent-primary);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(0, 118, 163, 0.15), 0 4px 16px rgba(0, 118, 163, 0.2);
  transform: translateY(-1px);
}

.formSelect option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.formInput.error,
.formSelect.error,
.formTextarea.error {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.1);
}

.formNavigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.formNavigation:only-child .formButton,
.formNavigation .formButton:only-child {
  margin-left: auto;
}

.formButton {
  padding: 1rem 2.25rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.formButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.formButton:hover::before {
  left: 100%;
}

.formButton.primary {
  background: var(--gradient-premium);
  color: white;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.formButton.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
}

.formButton.primary:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.formButton.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.formButton.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.formButton:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.reviewGrid {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.reviewRow {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reviewRow:last-child {
  border-bottom: none;
}

.reviewLabel {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.reviewValue {
  color: var(--text-primary);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .formProgress {
    padding: 0;
    gap: 0.25rem;
  }

  .stepNumber {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .stepLabel {
    font-size: 0.65rem;
  }

  .industryGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .industryOption {
    padding: 1rem 0.5rem;
    min-height: 90px;
  }

  .industryIcon {
    font-size: 1.5rem;
  }

  .industryName {
    font-size: 0.8rem;
  }

  .reviewRow {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .formNavigation {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .formButton {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
  }

  .stepTitle {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

/* Industries Section */
.industriesSection {
  padding: 100px 20px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.sectionHeader {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
  width: 100%;
}

.sectionTitle {
  font-size: 2.875rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e8 50%, #b8b8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1.3;
  position: relative;
  word-wrap: break-word;
  hyphens: auto;
  text-align: center;
}

.sectionSubtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 0 40px;
}

.industriesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.industryCard {
  position: relative;
  background: rgba(20, 20, 32, 0.6);
  border-radius: var(--radius-xl);
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.6s ease-out backwards;
  backdrop-filter: blur(20px);
}

.industryCard:nth-child(1) { animation-delay: 0.1s; }
.industryCard:nth-child(2) { animation-delay: 0.2s; }
.industryCard:nth-child(3) { animation-delay: 0.3s; }
.industryCard:nth-child(4) { animation-delay: 0.4s; }
.industryCard:nth-child(5) { animation-delay: 0.5s; }
.industryCard:nth-child(6) { animation-delay: 0.6s; }
.industryCard:nth-child(7) { animation-delay: 0.7s; }
.industryCard:nth-child(8) { animation-delay: 0.8s; }

.industryCard:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(0, 118, 163, 0.3), var(--shadow-glow);
  background: rgba(0, 118, 163, 0.12);
}

.industryCard:active {
  transform: translateY(-4px);
}

.industryImageWrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.industryImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industryCard:hover .industryImage {
  transform: scale(1.1);
}

.industryImageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.6) 0%, rgba(10, 10, 15, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.industryCardContent {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.industryNumber {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.industryCard:hover .industryNumber {
  opacity: 0.6;
}

.industryName {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.industryCard:hover .industryName {
  color: #ffffff;
}

.industryDescription {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-weight: 400;
  transition: color 0.3s ease;
}

.industryCard:hover .industryDescription {
  color: rgba(255, 255, 255, 0.9);
}

.industryArrow {
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.industryArrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.industryCard:hover .industryArrow {
  color: #00b3e6;
}

.industryCard:hover .industryArrow svg {
  transform: translateX(5px);
}

.industryGradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  border-radius: 16px;
}

.industryCard:hover .industryGradient {
  opacity: 0.15;
}

/* Services Section */
.servicesSection {
  padding: 120px 20px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.servicesSection > .sectionHeader {
  width: 100%;
  margin: 0 auto 4.5rem;
  padding: 0 20px;
}

.servicesSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 163, 0.5) 50%, transparent 100%);
}

.servicesGrid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
  padding: 0 20px;
  position: relative;
}

.serviceCard {
  background: rgba(10, 10, 15, 0.6);
  border-radius: var(--radius-xl);
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.6s ease-out backwards;
  backdrop-filter: blur(20px);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.serviceCard:nth-child(1) { animation-delay: 0.1s; }
.serviceCard:nth-child(2) { animation-delay: 0.2s; }
.serviceCard:nth-child(3) { animation-delay: 0.3s; }
.serviceCard:nth-child(4) { animation-delay: 0.4s; }
.serviceCard:nth-child(5) { animation-delay: 0.5s; }
.serviceCard:nth-child(6) { animation-delay: 0.6s; }

.serviceCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0076a3 0%, #0099cc 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.serviceCard:hover::before {
  opacity: 1;
}

.serviceImageWrapper {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #141420 100%);
}

.serviceImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.7);
}

.serviceCard:hover .serviceImage {
  transform: scale(1.15);
  filter: brightness(0.85);
}

.serviceImageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.85) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.serviceCard:hover .serviceImageOverlay {
  background: linear-gradient(180deg, rgba(0, 118, 163, 0.1) 0%, rgba(10, 10, 15, 0.9) 100%);
}

.serviceCard:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(0, 118, 163, 0.3), var(--shadow-glow);
  background: rgba(0, 118, 163, 0.12);
}

.serviceIcon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: -28px auto 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 118, 163, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
  overflow: visible;
}

.serviceCard:hover .serviceIcon {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 118, 163, 0.5);
  background: linear-gradient(135deg, #0099cc 0%, #00b3e6 100%);
}

.serviceIcon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: white !important;
  stroke: white !important;
  fill: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.serviceCard:hover .serviceIcon svg {
  transform: scale(1.1);
  color: white !important;
  stroke: white !important;
}

.serviceTitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  padding: 0 1.5rem;
  text-align: center;
  transition: color 0.3s ease;
}

.serviceCard:hover .serviceTitle {
  color: #ffffff;
}

.serviceDescription {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 400;
  padding: 0 1.5rem 1.75rem;
  text-align: center;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.serviceCard:hover .serviceDescription {
  color: rgba(255, 255, 255, 0.85);
}

/* MarTech ROI Estimator Section */
.roiEstimatorSection {
  padding: 40px 20px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-secondary);
  position: relative;
}

.roiEstimatorSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 163, 0.5) 50%, transparent 100%);
}

.roiEstimatorContainer {
  max-width: 1000px;
  margin: 0 auto;
}

.roiEstimatorHeader {
  text-align: center;
  margin-bottom: 1.5rem;
}

.roiEstimatorTitle {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #0076a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.roiEstimatorSubtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.roiEstimatorContent {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.roiInputSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.roiInputColumn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.roiInputLabel {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roiInputField {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.roiInputField:focus {
  outline: none;
  border-color: #0076a3;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 118, 163, 0.2);
}

.roiInputField::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}

.roiDisplayBox {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.1) 0%, rgba(0, 153, 204, 0.05) 100%);
  border: 1px solid rgba(0, 118, 163, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.roiDisplayLabel {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roiDisplayValue {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.roiSliderSection {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.roiSliderLabel {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roiSliderContainer {
  position: relative;
  margin-bottom: 1.25rem;
}

.roiSlider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.roiSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 118, 163, 0.4);
  transition: all 0.3s ease;
}

.roiSlider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 16px rgba(0, 118, 163, 0.6);
}

.roiSlider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 118, 163, 0.4);
  transition: all 0.3s ease;
}

.roiSlider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 16px rgba(0, 118, 163, 0.6);
}

.roiSliderValue {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: 700;
  color: #0076a3;
  background: rgba(0, 118, 163, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  min-width: 60px;
  text-align: center;
}

.roiActionButtons {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.roiCalculateBtn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  box-shadow: 0 4px 16px rgba(0, 118, 163, 0.3);
}

.roiCalculateBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 118, 163, 0.4);
  background: linear-gradient(135deg, #0099cc 0%, #00b3e6 100%);
}

.roiBtnSubtext {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
}

.roiResetBtn {
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.roiResetBtn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.roiResultsSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.roiResultBox {
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.15) 0%, rgba(0, 153, 204, 0.1) 100%);
  border: 1px solid rgba(0, 118, 163, 0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.roiResultLabel {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roiResultValue {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  background: linear-gradient(135deg, #ffffff 0%, #0076a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roiCTASection {
  text-align: center;
}

.roiCTABtn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 118, 163, 0.3);
  text-decoration: none;
}

.roiCTABtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 118, 163, 0.4);
  background: linear-gradient(135deg, #0099cc 0%, #00b3e6 100%);
}

.roiCTASubtext {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .roiEstimatorSection {
    padding: 30px 15px;
  }
  
  .roiEstimatorTitle {
    font-size: 1.5rem;
  }
  
  .roiEstimatorSubtitle {
    font-size: 0.85rem;
  }
  
  .roiEstimatorContent {
    padding: 1.25rem 1rem;
  }
  
  .roiInputSection {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .roiSliderSection {
    padding: 1rem;
  }
  
  .roiActionButtons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .roiCalculateBtn {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    padding: 1rem 1.5rem;
  }

  .roiResetBtn {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .roiResultsSection {
    grid-template-columns: 1fr;
  }
  
  .roiResultValue {
    font-size: 1.25rem;
  }
  
  .roiCTABtn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }
}

/* About Section */
.aboutSection {
  padding: 140px 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.aboutSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 163, 0.5) 50%, transparent 100%);
}

.aboutContent {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 0;
  gap: 4rem;
  align-items: stretch;
  padding: 0 40px;
}

.aboutImageWrapper {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  order: 1;
}

.aboutImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutImageOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.15) 0%, rgba(0, 153, 204, 0.08) 100%);
  z-index: 1;
}

.aboutText {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 0;
}

.aboutTitle {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #0076a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  text-align: center;
  line-height: 1.15;
  position: relative;
  padding-bottom: 1.5rem;
}

.aboutTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0076a3 0%, #0099cc 100%);
  border-radius: 2px;
}

.aboutDescription {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.9;
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 2rem;
  font-weight: 400;
  padding: 0 20px;
}

.aboutDescription strong {
  color: var(--accent-primary);
  font-weight: 600;
}

.aboutFeatures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

@media (max-width: 1200px) {
  .aboutFeatures {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aboutFeature {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  text-align: left;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.aboutFeature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0076a3 0%, #0099cc 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aboutFeature:hover::before {
  transform: scaleX(1);
}

.aboutFeature:hover {
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.08) 0%, rgba(0, 153, 204, 0.04) 100%);
  border-color: rgba(0, 118, 163, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 118, 163, 0.25);
}

.featureIcon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 118, 163, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.aboutFeature:hover .featureIcon {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 118, 163, 0.5);
  background: linear-gradient(135deg, #0099cc 0%, #00b3e6 100%);
}

.featureIcon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.aboutFeature:hover .featureIcon svg {
  transform: scale(1.1);
}

.featureTitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 0.3s ease;
  text-align: left;
}

.aboutFeature:hover .featureTitle {
  color: #ffffff;
}

.featureText {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
  transition: color 0.3s ease;
  text-align: left;
}

.aboutFeature:hover .featureText {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 968px) {
  .aboutSection {
    padding: 80px 0;
  }
  
  .aboutContent {
    gap: 3rem;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .aboutTitle {
    font-size: 2.25rem;
    padding-bottom: 1.25rem;
  }
  
  .aboutTitle::after {
    width: 60px;
    height: 3px;
  }
  
  .aboutDescription {
    font-size: 1.1rem;
  }
  
  
  .aboutImageWrapper {
    height: 400px;
  }
  
  .aboutText {
    gap: 2rem;
  }
  
  .aboutTitle {
    font-size: 2.25rem;
  }
  
  .aboutDescription {
    font-size: 1.05rem;
  }
  
  .aboutFeatures {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .aboutFeature {
    padding: 2rem 1.5rem;
  }
  
  .featureIcon {
    width: 60px;
    height: 60px;
  }
  
  .featureIcon svg {
    width: 24px;
    height: 24px;
  }
  
  .featureTitle {
    font-size: 1.2rem;
  }
  
  .featureText {
    font-size: 0.95rem;
  }
  
  .aboutFeature {
    padding: 1rem;
  }
  
  .statsVisualSection {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .statsImageWrapper {
    height: 400px;
  }
}

/* Footer */
.footer {
  background: #0a0a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 163, 0.5) 50%, transparent 100%);
}

.newsletterSection {
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.12) 0%, rgba(0, 153, 204, 0.08) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 20px;
  position: relative;
}

.newsletterContainer {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.newsletterContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.newsletterBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 16px rgba(0, 118, 163, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletterBadge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.newsletterBadge:hover::before {
  left: 100%;
}

.newsletterBadge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 118, 163, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
}

.newsletterHeading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.newsletterDescription {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.newsletterBenefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletterBenefits li {
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletterSubtext {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-style: italic;
}

.newsletterForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  max-width: 500px;
  align-items: stretch;
}

.newsletterButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.buttonText {
  display: inline-block;
}

.buttonIcon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.newsletterButton:hover .buttonIcon {
  transform: translateX(5px);
}

.footerMain {
  padding: 100px 40px 80px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #0a0a0f 100%);
  position: relative;
}

.footerMain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 163, 0.3) 50%, transparent 100%);
}

.footerContent {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 5rem;
}

.footerBrand {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footerLogo {
  margin-bottom: 0;
}

.footerTagline {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
  margin: 0;
}

.socialLinks {
  display: flex;
  gap: 1rem;
  margin-top: 0;
}

.socialLink {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.socialLink::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}

.socialLink svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.socialLink:hover::before {
  width: 100%;
  height: 100%;
}

.socialLink:hover {
  border-color: rgba(0, 118, 163, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 118, 163, 0.3);
}

.socialLink:hover svg {
  color: white;
  transform: scale(1.1);
}

.footerSection {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footerTitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footerList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footerList li {
  margin: 0;
}

.footerLink {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition-smooth);
  display: inline-block;
  line-height: 1.5;
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.1px;
}

.footerLink::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-premium);
  transition: width var(--transition-smooth);
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(0, 118, 163, 0.4);
}

.footerLink:hover {
  color: var(--accent-primary);
  transform: translateX(5px);
}

.footerLink:hover::before {
  width: 100%;
}

.footerLink:hover::before {
  width: 100%;
}

.footerText {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.newsletterInput {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.newsletterInput:focus {
  outline: none;
  border-color: #0076a3;
  background: rgba(255, 255, 255, 0.08);
}

.newsletterInput::placeholder {
  color: var(--text-secondary);
}

.newsletterButton {
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 118, 163, 0.3);
  letter-spacing: 0.3px;
  width: 100%;
  align-self: stretch;
}

.newsletterButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 118, 163, 0.4);
}

.newsletterButton:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 118, 163, 0.3);
}

/* Human Verification */
.humanVerification {
  margin: 0;
  padding: 1rem;
  background: rgba(0, 118, 163, 0.1);
  border: 1px solid rgba(0, 118, 163, 0.3);
  border-radius: 8px;
  width: 100%;
}

.verificationLabel {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.verificationInput {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.verificationInput:focus {
  outline: none;
  border-color: #0076a3;
  box-shadow: 0 0 0 3px rgba(0, 118, 163, 0.2);
}

.verificationInput::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.footerBottom {
  background: #0a0a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px 20px;
  position: relative;
}

.footerBottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 118, 163, 0.3) 50%, transparent 100%);
}

.footerBottomContent {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footerLegal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legalLink {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legalLink:hover {
  color: #0076a3;
}

.legalSeparator {
  color: var(--text-secondary);
  opacity: 0.5;
}

/* Responsive Design - Mobile First Approach */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }

  .headerContent {
    padding: 0 15px;
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .navLink {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .contactButton {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 200px;
  }

  .hero {
    padding: 60px 15px;
    min-height: calc(100vh - 30px);
    max-height: none;
  }

  .title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0;
  }

  .heroStats {
    flex-direction: row;
    justify-content: space-around;
    gap: 1.5rem;
    padding: 0;
    margin-top: 1.5rem;
  }

  .heroStat {
    text-align: center;
  }

  .heroStat {
    width: 100%;
  }

  .sectionTitle {
    font-size: 1.75rem;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .sectionSubtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 100%;
    padding: 0 1rem;
  }

  .industriesGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .servicesGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .industryCard,
  .serviceCard {
    padding: 1.5rem;
  }

  .aboutSection {
    padding: 80px 0;
  }
  
  .aboutContent {
    padding: 0 15px;
  }

  .aboutTitle {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
  
  .aboutTitle::after {
    width: 50px;
    height: 3px;
  }

  .aboutDescription {
    font-size: 1rem;
  }

  
  .aboutFeatures {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .aboutFeature {
    padding: 1.75rem 1.25rem;
  }
  
  .featureIcon {
    width: 56px;
    height: 56px;
  }
  
  .featureIcon svg {
    width: 22px;
    height: 22px;
  }
  
  .featureTitle {
    font-size: 1.1rem;
  }
  
  .featureText {
    font-size: 0.9rem;
  }

  .newsletterSection {
    padding: 40px 15px 25px;
    margin-bottom: 0;
  }

  .footerMain {
    padding: 35px 15px 40px;
    margin-top: 0;
  }

  .footerContent {
    padding: 0;
  }

  .newsletterContainer {
    gap: 2rem;
  }

  .newsletterContent {
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .newsletterBadge {
    margin: 0 auto 1rem;
  }

  .newsletterHeading {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 0.875rem;
    text-align: center;
  }

  .newsletterDescription {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
  }

  .newsletterBenefits {
    gap: 0.625rem;
    margin: 1rem 0 1.25rem 0;
    align-items: flex-start;
    text-align: left;
  }

  .newsletterBenefits li {
    font-size: 0.85rem;
  }

  .newsletterSubtext {
    text-align: center;
  }

  .newsletterForm {
    gap: 0.875rem;
    align-items: stretch;
  }

  .newsletterInput {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .newsletterButton {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .footerContent {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
  }

  .footerBottomContent {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Small Devices (landscape phones, 481px and up) */
@media (min-width: 481px) and (max-width: 768px) {
  .headerContent {
    padding: 0 25px;
  }

  .hero {
    padding: 60px 25px 50px;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .industriesGrid {
    grid-template-columns: 1fr;
  }

  .servicesGrid {
    grid-template-columns: 1fr;
  }

  .aboutContent {
    gap: 2.5rem;
  }
  
  .aboutFeatures {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .aboutFeature {
    padding: 2rem 1.5rem;
  }

  .aboutImageWrapper {
    height: 400px;
  }
}

/* Medium Devices (tablets, 769px and up) */
@media (min-width: 769px) and (max-width: 1024px) {
  .headerContent {
    padding: 0 30px;
  }

  .hero {
    padding: 110px 30px 90px;
  }

  .title {
    font-size: 3rem;
  }

  .industriesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .serviceCard {
    border-radius: 18px;
  }
  
  .serviceImageWrapper {
    height: 150px;
  }
  
  .serviceIcon {
    width: 50px;
    height: 50px;
    margin: -25px auto 1.25rem;
  }
  
  .serviceTitle {
    font-size: 1.25rem;
    padding: 0 1.25rem;
  }
  
  .serviceDescription {
    font-size: 0.9rem;
    padding: 0 1.25rem 1.5rem;
  }

  .aboutContent {
    gap: 3.5rem;
  }
  
  .aboutFeatures {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
  
  .aboutFeature {
    padding: 2.25rem 1.75rem;
  }

  .aboutImageWrapper {
    height: 500px;
  }

  .formNavigation {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
  }

  .formButton {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
  }

  .newsletterForm {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .newsletterButton {
    flex: 0 0 auto;
    min-width: 140px;
    max-width: 250px;
  }

  .ctaBannerActions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .ctaBannerButton {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
  }

  .roiActionButtons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .roiCalculateBtn {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
  }

  .roiResetBtn {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Large Devices (desktops, 1025px and up) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .industriesGrid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
  }

  .servicesGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
  }
  
  .serviceCard {
    border-radius: 20px;
    padding: 2.5rem 2rem;
  }
  
  .aboutFeatures {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
  }
  
  .trustBadgesGrid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
  }
}

/* Extra Large Devices (large desktops, 1441px and up) */
@media (min-width: 1441px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .headerContent {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
  }

  .industriesGrid {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }

  .servicesGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
  }
}

/* Common Mobile Styles (768px and below) */
@media (max-width: 768px) {
  .headerContent {
    padding: 0 20px;
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .heroStats {
    flex-direction: column;
    gap: 2rem;
  }

  .sectionTitle {
    font-size: 2rem;
  }

  .industriesGrid,
  .servicesGrid {
    grid-template-columns: 1fr;
  }

  .aboutFeatures {
    grid-template-columns: 1fr;
  }

  .newsletterContainer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    text-align: center;
  }

  .newsletterContent {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .newsletterBadge {
    margin: 0 auto 1rem;
  }

  .newsletterHeading {
    text-align: center;
    font-size: 1.5rem;
  }

  .newsletterDescription {
    text-align: center;
    font-size: 0.95rem;
  }

  .newsletterBenefits {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .newsletterSubtext {
    text-align: center;
  }

  .newsletterForm {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
  }
  
  .newsletterInput {
    width: 100%;
    min-width: 100%;
    margin: 0;
  }

  .humanVerification {
    margin: 0;
    padding: 1rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .verificationLabel {
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .verificationInput {
    width: 100%;
  }
  
  .newsletterButton {
    width: 100%;
    margin-top: 0.5rem;
  }

  .footerMain {
    padding: 40px 20px 50px;
    margin-top: 0;
  }

  .footerContent {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0;
  }

  .footerBottomContent {
    flex-direction: column;
    text-align: center;
  }

  .footerLegal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 300px;
    padding: 50px 20px 35px;
  }

  .title {
    font-size: 1.75rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .navLink,
  .contactButton,
  .industryCard,
  .serviceCard {
    min-height: 44px;
    min-width: 44px;
  }

  .contactButton {
    padding: 14px 28px;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .contactButton,
  .nav {
    display: none;
  }

  .container {
    background: white;
    color: black;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img,
  .serviceImage,
  .aboutImage {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modalContent {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-2xl);
  animation: slideUp 0.3s ease;
  margin: auto;
}

/* Compact Contact Modal - Matching Exit-Intent Style */
.contactModalContent {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 1.75rem;
  border-radius: 16px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 20px 60px rgba(0, 118, 163, 0.3);
  overflow-y: visible;
  max-height: none;
}

.contactModalContent h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.contactModalContent .exitIntentForm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contactModalContent .exitIntentForm textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  min-height: 60px;
  transition: all 0.3s ease;
}

.contactModalContent .exitIntentForm textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 118, 163, 0.1);
}

.contactModalContent .exitIntentForm textarea::placeholder {
  color: var(--text-secondary);
}

.contactModalContent .exitIntentDescription {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contactModalContent .exitIntentForm input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contactModalContent .exitIntentForm input:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 118, 163, 0.1);
}

.contactModalContent .exitIntentForm input::placeholder {
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .contactModalContent {
    padding: 1.5rem 1.25rem;
    max-width: 340px;
  }

  .contactModalContent h2 {
    font-size: 1.3rem;
  }

  .contactModalContent .exitIntentSubtitle {
    font-size: 0.95rem;
  }

  .contactModalContent .exitIntentIcon {
    font-size: 2.5rem;
  }

  .contactModalContent .exitIntentForm input,
  .contactModalContent .exitIntentForm textarea {
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  .contactModalContent .exitIntentButton {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-smooth);
  z-index: 10;
}

.close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modalContent h2 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.modalContent form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modalContent input,
.modalContent textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition-smooth);
  width: 100%;
  box-sizing: border-box;
}

.modalContent input::placeholder,
.modalContent textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.modalContent input:focus,
.modalContent textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 118, 163, 0.15), 0 4px 16px rgba(0, 118, 163, 0.2);
  transform: translateY(-1px);
}

.modalContent textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Inter', sans-serif;
}

.modalContent .formGroup {
  margin-bottom: 0;
}

.modalContent .formGroup label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.modalContent button[type="submit"] {
  background: var(--gradient-premium);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.modalContent button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.modalContent button[type="submit"]:hover::before {
  left: 100%;
}

.modalContent button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
}

.modalContent button[type="submit"]:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.modalContent button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Custom scrollbar for modal */
.modalContent::-webkit-scrollbar {
  width: 8px;
}

.modalContent::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.modalContent::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.modalContent::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modalContent .humanVerification {
  margin: 0.5rem 0;
}

/* File input styling in modal */
.modalContent input[type="file"] {
  padding: 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  width: 100%;
  box-sizing: border-box;
}

.modalContent input[type="file"]:hover {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
}

.modalContent input[type="file"]:focus {
  border-color: var(--accent-primary);
  border-style: solid;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(0, 118, 163, 0.15);
}

/* Form message styling */
.modalContent .formMessage {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  display: none;
  font-size: 0.95rem;
  line-height: 1.5;
}

.modalContent .formMessage.formSuccess {
  display: block;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: #4caf50;
}

.modalContent .formMessage.formError {
  display: block;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

/* Responsive modal styles */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }

  .modalContent {
    padding: 1.75rem;
    max-width: 100%;
    border-radius: var(--radius-lg);
  }

  .modalContent h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .close {
    right: 1rem;
    top: 1rem;
    width: 32px;
    height: 32px;
    font-size: 1.75rem;
  }

  .modalContent form {
    gap: 1rem;
  }

  .modalContent input,
  .modalContent textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .modalContent button[type="submit"] {
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Compact Contact Modal Mobile */
  .contactModalContent {
    padding: 1.5rem 1.25rem;
    max-width: 340px;
  }

  .contactModalContent h2 {
    font-size: 1.3rem;
  }

  .contactModalContent .exitIntentSubtitle {
    font-size: 0.95rem;
  }

  .contactModalContent .exitIntentIcon {
    font-size: 2.5rem;
  }

  .contactModalContent .exitIntentForm input,
  .contactModalContent .exitIntentForm textarea {
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  .contactModalContent .exitIntentButton {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Social Proof Banner */
.socialProofBanner {
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.1) 0%, rgba(0, 153, 204, 0.05) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
}

.socialProofContent {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.socialProofItem {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 150px;
  justify-content: center;
}

.socialProofIcon {
  font-size: 2rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socialProofIcon svg {
  width: 100%;
  height: 100%;
}

.socialProofText {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.socialProofNumber {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.socialProofLabel {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.socialProofDivider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .socialProofBanner {
    padding: 25px 15px;
  }

  .socialProofContent {
    gap: 1rem;
  }

  .socialProofItem {
    min-width: 120px;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .socialProofIcon {
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }

  .socialProofNumber {
    font-size: 1.25rem;
  }

  .socialProofDivider {
    display: none;
  }
}

.trustSection {
  padding: 60px 20px;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trustContainer {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trustBadge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trustBadge:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 118, 163, 0.5);
  box-shadow: 0 10px 30px rgba(0, 118, 163, 0.15);
}

.trustIcon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 118, 163, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
  color: #0076a3;
}

.trustIcon svg {
  width: 24px;
  height: 24px;
}

.trustContent {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.trustValue {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.trustLabel {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .heroContent {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding: 0 20px 0;
    align-items: start;
  }

  .heroLeft {
    text-align: center;
    align-items: center;
  }
  
  .heroRight {
    justify-content: center;
  }

  .heroStats {
    justify-content: center;
  }

  .heroStat {
    text-align: center;
  }

  .enquiryForm {
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 120px;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .heroContent {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: start;
    text-align: center;
  }

  .heroLeft {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding-top: 0;
    margin-top: 0;
  }
  
  .heroRight {
    width: 100%;
    justify-content: center;
    padding-top: 0;
    margin-top: 0;
  }

  .title {
    font-size: 2.25rem;
    line-height: 1.25;
    text-align: center;
    width: 100%;
    padding: 0;
  }

  .subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: center;
    width: 100%;
    padding: 0 10px;
  }

  .heroStats {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .heroRight {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .enquiryForm {
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }

  .enquiryTitle {
    font-size: 1.5rem;
    text-align: center;
  }

  .enquirySubtitle {
    text-align: center;
    font-size: 0.9rem;
  }

  .trustContainer {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trustBadge {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
}

/* Trust Badges Section */
.trustBadgesSection {
  padding: 80px 20px;
  background: var(--bg-primary);
  position: relative;
}

.trustBadgesContainer {
  width: 100%;
  margin: 0 auto;
}

.trustBadgesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trustBadgeCard {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.trustBadgeCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0076a3 0%, #0099cc 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trustBadgeCard:hover::before {
  transform: scaleX(1);
}

.trustBadgeCard:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 118, 163, 0.4);
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.08) 0%, rgba(0, 153, 204, 0.04) 100%);
  box-shadow: 0 15px 40px rgba(0, 118, 163, 0.25);
}

.trustBadgeIcon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.15) 0%, rgba(0, 153, 204, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0, 118, 163, 0.2);
}

.trustBadgeCard:hover .trustBadgeIcon {
  transform: scale(1.1) translateY(-4px);
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 118, 163, 0.4);
}

.trustBadgeIcon svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.trustBadgeCard:hover .trustBadgeIcon svg {
  transform: scale(1.1);
}

.trustBadgeTitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.trustBadgeCard:hover .trustBadgeTitle {
  color: #ffffff;
}

.trustBadgeDescription {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.trustBadgeCard:hover .trustBadgeDescription {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .trustBadgesSection {
    padding: 60px 15px;
  }

  .trustBadgesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }

  .trustBadgeCard {
    padding: 2rem 1.5rem;
  }

  .trustBadgeIcon {
    width: 60px;
    height: 60px;
  }

  .trustBadgeIcon svg {
    width: 32px;
    height: 32px;
  }

  .trustBadgeTitle {
    font-size: 1.1rem;
  }

  .trustBadgeDescription {
    font-size: 0.85rem;
  }
}

/* Client Logos Section */
.logosSection {
  width: 100%;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(20, 20, 32, 0.4) 50%, rgba(10, 10, 15, 0) 100%);
  position: relative;
  overflow: hidden;
}

.clientsLogosWrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.clientsLogosWrapper .sectionHeader {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 3;
}

.clientsLogosWrapper .sectionHeader::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  border-radius: 2px;
}

.logosSection::before,
.logosSection::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}

.logosSection::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, rgba(10, 10, 15, 0) 100%);
}

.logosSection::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, rgba(10, 10, 15, 0) 100%);
}

.logosContainer {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

/* Industry pages: single row of logos */
.logosContainer[style*="flex-direction: row"] {
  flex-direction: row;
  gap: 0;
}

.logosTrack {
  display: flex;
  align-items: center;
  gap: 5rem;
  animation: scroll 45s linear infinite;
  will-change: transform;
  width: fit-content;
  backface-visibility: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.logosTrackReverse {
  animation: scrollReverse 45s linear infinite;
  width: fit-content;
  backface-visibility: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.logosTrack:hover,
.logosTrackReverse:hover {
  animation-play-state: paused;
}

.logoItem {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 1rem 2rem;
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.logoItem::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.3), rgba(0, 153, 204, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.logoItem:hover {
  opacity: 1;
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 24px rgba(0, 118, 163, 0.15);
}

.logoItem:hover::before {
  opacity: 1;
}

.logoImage {
  object-fit: contain;
  filter: grayscale(100%) brightness(0.85) contrast(1.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
}

.logoItem:hover .logoImage {
  filter: grayscale(0%) brightness(1.1) contrast(1.2);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Enhanced gradient overlays for seamless fade */
.logosContainer::before,
.logosContainer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 3;
  pointer-events: none;
}

.logosContainer::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, rgba(10, 10, 15, 0.8) 50%, transparent 100%);
}

.logosContainer::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, rgba(10, 10, 15, 0.8) 50%, transparent 100%);
}

/* Responsive adjustments for logos */
@media (max-width: 1024px) {
  .logosSection {
    padding: 50px 15px 35px;
  }

  .clientsLogosWrapper .sectionHeader {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
  }

  .logosSection::before,
  .logosSection::after {
    width: 100px;
  }

  .logosContainer::before,
  .logosContainer::after {
    width: 80px;
  }

  .logosContainer {
    gap: 1.25rem;
    padding: 0.75rem 0;
  }

  .logosTrack,
  .logosTrackReverse {
    gap: 3.5rem;
  }

  .logoItem {
    height: 65px;
    padding: 0.875rem 2rem;
  }

  .logoImage {
    max-width: 140px;
    max-height: 55px;
  }
}

@media (max-width: 768px) {
  .logosSection {
    padding: 30px 0;
  }

  .logosSection::before,
  .logosSection::after {
    width: 60px;
  }

  .logosContainer::before,
  .logosContainer::after {
    width: 50px;
  }

  .logosContainer {
    gap: 1rem;
    padding: 0.5rem 0;
  }

  .logosTrack,
  .logosTrackReverse {
    gap: 2.5rem;
    animation-duration: 45s;
  }

  .logoItem {
    height: 60px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
  }

  .logoImage {
    max-width: 120px;
    max-height: 50px;
  }
}

@media (max-width: 480px) {
  .logosSection {
    padding: 25px 0;
  }

  .logosSection::before,
  .logosSection::after {
    width: 40px;
  }

  .logosContainer::before,
  .logosContainer::after {
    width: 30px;
  }

  .logosTrack,
  .logosTrackReverse {
    gap: 2rem;
    animation-duration: 45s;
  }

  .logoItem {
    height: 50px;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
  }

  .logoImage {
    max-width: 100px;
    max-height: 45px;
  }
}

/* About Page Styles */
.aboutHeroSection {
  padding: 120px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.1) 0%, rgba(0, 153, 204, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.aboutHeroSection::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 118, 163, 0.08) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.aboutHeroContent {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.aboutHeroBadge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 118, 163, 0.15);
  border: 1px solid rgba(0, 118, 163, 0.3);
  border-radius: 50px;
  color: #66b3d1;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.aboutHeroTitle {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

.aboutHeroDescription {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

/* Company Story Section */
.companyStorySection {
  padding: 100px 20px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-primary);
}

.companyStoryContainer {
  max-width: 1200px;
  margin: 0 auto;
}

.companyStoryContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.companyStoryText {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.storyDescription {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
}

.companyStoryImage {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.storyImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mission & Vision Section */
.missionVisionSection {
  padding: 100px 20px;
  background: var(--bg-secondary);
  position: relative;
}

.missionVisionContainer {
  width: 100%;
  margin: 0 auto;
}

.missionVisionGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.missionCard {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.missionCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 118, 163, 0.3);
  box-shadow: 0 20px 50px rgba(0, 118, 163, 0.2);
}

.missionIcon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.2) 0%, rgba(0, 153, 204, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0076a3;
  margin-bottom: 2rem;
}

.missionTitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.missionText {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 400;
}

/* Founder Section */
.founderSection {
  padding: 100px 20px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-primary);
}

.founderContainer {
  max-width: 1200px;
  margin: 0 auto;
}

.founderContent {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
}

.founderImageWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founderImageContainer {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.founderImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founderText {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founderBadge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 118, 163, 0.15);
  border: 1px solid rgba(0, 118, 163, 0.3);
  border-radius: 50px;
  color: #66b3d1;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  letter-spacing: 0.5px;
}

.founderName {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.founderIntro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
}

.founderQuote {
  margin-top: 1rem;
  padding: 2rem;
  background: rgba(0, 118, 163, 0.08);
  border-left: 4px solid #0076a3;
  border-radius: 12px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.quoteIcon {
  color: #0076a3;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.quoteText {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

.founderSocial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}

.founderSocialLabel {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.founderSocialLinks {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.founderSocialLink {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.founderSocialLink:hover {
  background: rgba(0, 118, 163, 0.2);
  border-color: rgba(0, 118, 163, 0.4);
  color: #0076a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 118, 163, 0.3);
}

/* Values Section */
.valuesSection {
  padding: 100px 20px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-primary);
}

.valuesContainer {
  width: 100%;
  margin: 0 auto;
}

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.valueCard {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.valueCard:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 118, 163, 0.3);
  transform: translateY(-4px);
}

.valueIcon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.2) 0%, rgba(0, 153, 204, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0076a3;
  margin-bottom: 1.5rem;
}

.valueTitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.valueText {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

/* About Stats Section */
.aboutStatsSection {
  padding: 100px 20px;
  background: var(--bg-secondary);
  position: relative;
}

.aboutStatsContainer {
  width: 100%;
  margin: 0 auto;
}

.aboutStatsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.aboutStatCard {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.aboutStatCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 118, 163, 0.3);
  box-shadow: 0 20px 50px rgba(0, 118, 163, 0.2);
}

.aboutStatValue {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.aboutStatLabel {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.aboutStatDescription {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Why Choose Section */
.whyChooseSection {
  padding: 100px 20px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-primary);
}

.whyChooseContainer {
  width: 100%;
  margin: 0 auto;
}

.whyChooseGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.whyChooseCard {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.whyChooseCard:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 118, 163, 0.3);
  transform: translateY(-4px);
}

.whyChooseIcon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.2) 0%, rgba(0, 153, 204, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0076a3;
  margin-bottom: 1.5rem;
}

.whyChooseTitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.whyChooseText {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

/* Process Section */
.processSection {
  padding: 100px 20px;
  background: var(--bg-secondary);
  position: relative;
}

.processContainer {
  width: 100%;
  margin: 0 auto;
}

.processSteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.processStep {
  text-align: center;
  position: relative;
}

.processStep:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #0076a3 0%, #0099cc 100%);
}

.processNumber {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 118, 163, 0.4);
}

.processTitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.processText {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

/* Clients Section */
.clientsSection {
  padding: 60px 20px 20px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-primary);
  position: relative;
}

.clientsSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  border-radius: 2px;
}

/* Video Testimonials Section */
.videoTestimonialsSection {
  padding: 100px 20px;
  background: var(--bg-primary);
  position: relative;
}

.videoTestimonialsContainer {
  width: 100%;
  margin: 0 auto;
}

.videoTestimonialsGrid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 118, 163, 0.5) transparent;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.videoTestimonialsGrid:active {
  cursor: grabbing;
}

.videoTestimonialsGrid::-webkit-scrollbar {
  height: 8px;
}

.videoTestimonialsGrid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.videoTestimonialsGrid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 10px;
  transition: background 0.3s ease;
}

.videoTestimonialsGrid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
}

.videoTestimonialCard {
  background: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  flex: 0 0 400px;
  min-width: 350px;
  max-width: 400px;
}

.videoTestimonialCard:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 118, 163, 0.4);
  box-shadow: 0 20px 50px rgba(0, 118, 163, 0.25);
}

.videoWrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  overflow: hidden;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.videoPlaceholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
  border: 2px dashed rgba(0, 118, 163, 0.3);
}

.videoPlaceholderIcon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(0, 118, 163, 0.4);
}

.videoPlaceholderText {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.videoPlaceholderNote {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 0 1rem;
}

.videoTestimonialInfo {
  padding: 1.5rem;
  background: var(--bg-secondary);
}

.videoTestimonialClient {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.videoTestimonialRole {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin: 0;
}

/* FAQ Section on Homepage */
.faqSection {
  padding: 100px 20px;
  background: var(--bg-primary);
  position: relative;
}

.faqContainer {
  width: 100%;
  margin: 0 auto;
}

.faqGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.faqCard {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faqCard:hover {
  border-color: rgba(0, 118, 163, 0.3);
  box-shadow: 0 8px 25px rgba(0, 118, 163, 0.15);
}

.faqCard.active {
  border-color: rgba(0, 118, 163, 0.5);
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.08) 0%, rgba(0, 153, 204, 0.04) 100%);
  box-shadow: 0 8px 30px rgba(0, 118, 163, 0.2);
}

.faqCard.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0076a3 0%, #0099cc 100%);
}

.faqQuestion {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.faqQuestion:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.faqQuestion span {
  flex: 1;
}

.faqIcon {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faqCard.active .faqIcon {
  transform: rotate(180deg);
  color: var(--accent-secondary);
}

.faqCard.active .faqQuestion {
  color: #ffffff;
  background: rgba(0, 118, 163, 0.05);
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s;
  opacity: 0;
  padding: 0 2rem;
  display: block;
}

.faqCard.active .faqAnswer {
  max-height: 1000px !important;
  padding: 0 2rem 1.5rem 2rem !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.faqAnswer p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  padding-top: 0.5rem;
}

.faqCard.active .faqAnswer p {
  color: rgba(255, 255, 255, 0.9);
}

.faqCta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faqCtaText {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.faqCtaLink {
  color: var(--accent-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.faqCtaLink:hover {
  color: var(--accent-secondary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faqSection {
    padding: 60px 15px;
  }

  .faqGrid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .faqQuestion {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
  }

  .faqAnswer {
    padding: 0 1.5rem;
  }

  .faqCard.active .faqAnswer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .videoTestimonialsSection {
    padding: 60px 15px;
  }

  .videoTestimonialsGrid {
    gap: 1.5rem;
    margin-top: 2rem;
    padding-bottom: 1rem;
  }

  .videoTestimonialCard {
    flex: 0 0 320px;
    min-width: 280px;
    max-width: 320px;
  }

  .videoTestimonialInfo {
    padding: 1.25rem;
  }

  .videoTestimonialClient {
    font-size: 1rem;
  }

  .videoTestimonialRole {
    font-size: 0.85rem;
  }
}

.clientsContainer {
  width: 100%;
  margin: 0 auto;
}

/* About CTA Section */
.aboutCTASection {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.15) 0%, rgba(0, 153, 204, 0.1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aboutCTASection::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 118, 163, 0.08) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.aboutCTAContainer {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.aboutCTATitle {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.aboutCTAText {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.aboutCTAButton {
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #0076a3 0%, #0099cc 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 118, 163, 0.3);
}

.aboutCTAButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 118, 163, 0.4);
  background: linear-gradient(135deg, #0099cc 0%, #00b3e6 100%);
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
  .companyStoryContent {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .companyStoryImage {
    order: -1;
    height: 400px;
  }

  .founderContent {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founderImageWrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .founderImageContainer {
    height: 400px;
  }

  .missionVisionGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .valuesGrid,
  .whyChooseGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .processSteps {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .processStep:not(:last-child)::after {
    display: none;
  }

  .aboutStatsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .aboutHeroTitle {
    font-size: 2rem;
  }

  .aboutHeroDescription {
    font-size: 1rem;
  }

  .aboutCTATitle {
    font-size: 2rem;
  }

  .valuesGrid,
  .whyChooseGrid,
  .aboutStatsGrid {
    grid-template-columns: 1fr;
  }

  .processSteps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .processNumber {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .missionCard {
    padding: 2rem;
  }

  .aboutStatCard {
    padding: 2rem;
  }

  .founderName {
    font-size: 2rem;
  }

  .founderImageWrapper {
    max-width: 100%;
  }

  .founderImageContainer {
    height: 350px;
  }

  .founderQuote {
    flex-direction: column;
    gap: 1rem;
  }

  .founderSocial {
    align-items: center;
  }
}

/* Strategic CTA Banners */
.ctaBanner {
  margin: 4rem auto 0;
  max-width: 1200px;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.15) 0%, rgba(0, 153, 204, 0.1) 100%);
  border: 1px solid rgba(0, 118, 163, 0.3);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 118, 163, 0.1);
}

.ctaBanner.secondary {
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.1) 0%, rgba(0, 179, 230, 0.05) 100%);
  border-color: rgba(0, 153, 204, 0.3);
}

.ctaBannerContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ctaBannerText {
  flex: 1;
}

.ctaBannerTitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ctaBannerDescription {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.ctaBannerActions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.ctaBannerButton {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ctaBannerButton.primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  box-shadow: 0 4px 18px rgba(0, 118, 163, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctaBannerButton.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 118, 163, 0.45);
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
}

.ctaBannerButton.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-primary);
}

.ctaBannerButton.secondary:hover {
  background: rgba(0, 118, 163, 0.1);
  transform: translateY(-2px);
}

.ctaBannerButton.link {
  background: transparent;
  color: var(--accent-secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 14px 20px;
}

.ctaBannerButton.link:hover {
  color: var(--accent-tertiary);
}

/* Main CTA Section */
.ctaSection {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.ctaSectionContainer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
  width: 100%;
}

.ctaSectionBadge {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--gradient-premium);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.ctaSectionBadge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.ctaSectionBadge:hover::before {
  left: 100%;
}

.ctaSectionBadge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.ctaSectionTitle {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ctaSectionDescription {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.ctaSectionStats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.ctaStat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ctaStatValue {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ctaStatLabel {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.ctaSectionActions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.ctaSectionButton {
  padding: 18px 40px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.ctaSectionButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.ctaSectionButton:hover::before {
  left: 100%;
}

.ctaSectionButton.primary {
  background: var(--gradient-premium);
  color: white;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ctaSectionButton.primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
}

.ctaSectionButton.primary:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.ctaSectionButton.primary svg {
  transition: transform var(--transition-smooth);
}

.ctaSectionButton.primary:hover svg {
  transform: translateX(6px);
}

.ctaSectionButton.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 2px solid var(--accent-primary);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ctaSectionButton.secondary:hover {
  background: rgba(0, 118, 163, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-secondary);
}

.ctaSectionNote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

/* CTA Button (for careers and other pages) */
.ctaButton {
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  background: var(--gradient-premium);
  color: white;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Inter', sans-serif;
}

.ctaButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.ctaButton:hover::before {
  left: 100%;
}

.ctaButton:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-tertiary) 100%);
}

.ctaButton:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* CTA Section (for careers and other pages) */
.cta {
  padding: 80px 20px;
  background: var(--bg-secondary);
  position: relative;
  margin: 0;
}

.ctaContent {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ctaTitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.ctaDescription {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

.ctaButton {
  margin-top: 0.5rem;
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
  .cta {
    padding: 60px 20px;
  }

  .ctaTitle {
    font-size: 2rem;
  }

  .ctaDescription {
    font-size: 1.05rem;
  }

  .ctaContent {
    gap: 1.25rem;
  }
}

/* Testimonials Section */
.testimonialsSection {
  padding: 100px 20px;
  background: var(--bg-secondary);
  position: relative;
}

.testimonialsContainer {
  width: 100%;
  margin: 0 auto;
}

.testimonialsBadge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffc107;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.testimonialCard {
  background: var(--bg-primary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonialCard::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 118, 163, 0.08);
  line-height: 1;
  font-family: 'Inter', sans-serif;
  z-index: 0;
}

.testimonialCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 118, 163, 0.4);
  box-shadow: 0 15px 40px rgba(0, 118, 163, 0.2);
  background: rgba(0, 118, 163, 0.03);
}

.testimonialRating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonialRating .star {
  color: #ffc107;
  font-size: 1.2rem;
  line-height: 1;
}

.testimonialQuote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.testimonialResults {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 118, 163, 0.08);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.resultItem {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.resultValue {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.resultLabel {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.testimonialAuthor {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.authorAvatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.authorDetails {
  flex: 1;
}

.authorName {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.authorRole {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.125rem;
}

.authorCompany {
  font-size: 0.85rem;
  color: var(--accent-secondary);
  font-weight: 500;
}

/* Trust Indicators */
.testimonialsTrust {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 4rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trustIndicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trustNumber {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trustLabel {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Testimonials CTA */
.testimonialsCTA {
  text-align: center;
  margin-top: 3rem;
}

.testimonialsCTAText {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.testimonialsCTAActions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonialsCTAButton {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 118, 163, 0.3);
}

.testimonialsCTAButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 118, 163, 0.4);
}

.testimonialsCTALink {
  color: var(--accent-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonialsCTALink:hover {
  color: var(--accent-tertiary);
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .testimonialsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonialsTrust {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .testimonialsSection {
    padding: 60px 20px;
  }

  .testimonialsGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .testimonialCard {
    padding: 1.5rem;
  }

  .testimonialResults {
    flex-direction: column;
    gap: 0.75rem;
  }

  .testimonialsTrust {
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
  }

  .trustNumber {
    font-size: 2rem;
  }

  .testimonialsCTAActions {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonialsCTAButton,
  .testimonialsCTALink {
    width: 100%;
    justify-content: center;
  }

  .ctaBanner {
    padding: 2rem 1.5rem;
    margin: 3rem 1rem 0;
  }
}

/* Homepage Blog Section */
.homepageBlogSection {
  padding: 100px 20px;
  background: var(--bg-primary);
  position: relative;
}

.homepageBlogContainer {
  width: 100%;
  margin: 0 auto;
}

.blogSectionBadge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 118, 163, 0.15) 0%, rgba(0, 153, 204, 0.1) 100%);
  border: 1px solid rgba(0, 118, 163, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.homepageBlogGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.homepageBlogCard {
  background: var(--bg-secondary);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.homepageBlogCard:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 118, 163, 0.4);
  box-shadow: 0 15px 40px rgba(0, 118, 163, 0.2);
}

.homepageBlogImage {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
}

.homepageBlogImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.homepageBlogCard:hover .homepageBlogImage img {
  transform: scale(1.1);
}

.homepageBlogCategory {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.homepageBlogContent {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.homepageBlogMeta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.homepageBlogMeta time {
  display: flex;
  align-items: center;
}

.homepageBlogReadTime {
  display: flex;
  align-items: center;
  position: relative;
}

.homepageBlogReadTime::before {
  content: '•';
  margin-right: 1rem;
  color: var(--text-secondary);
}

.homepageBlogTitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.homepageBlogTitle a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.homepageBlogTitle a:hover {
  color: var(--accent-secondary);
}

.homepageBlogExcerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
}

.homepageBlogLink {
  color: var(--accent-secondary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.homepageBlogLink:hover {
  color: var(--accent-tertiary);
  gap: 0.75rem;
}

.homepageBlogCTA {
  text-align: center;
  margin-top: 3rem;
}

.homepageBlogCTAButton {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 118, 163, 0.3);
}

.homepageBlogCTAButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 118, 163, 0.4);
}

@media (max-width: 1024px) {
  .homepageBlogGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .homepageBlogSection {
    padding: 60px 20px;
  }

  .homepageBlogGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .homepageBlogImage {
    height: 200px;
  }

  .homepageBlogContent {
    padding: 1.5rem;
  }

  .homepageBlogTitle {
    font-size: 1.2rem;
  }

  .homepageBlogExcerpt {
    font-size: 0.9rem;
  }

  .ctaBannerContent {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .ctaBannerTitle {
    font-size: 1.5rem;
  }

  .ctaBannerActions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .ctaBannerButton {
    flex: 1;
    min-width: 140px;
    max-width: 250px;
  }

  .ctaBannerDescription {
    font-size: 1rem;
  }

  .ctaBannerActions {
    width: 100%;
    flex-direction: column;
  }

  .ctaBannerButton {
    width: 100%;
  }

  .ctaSection {
    padding: 60px 0;
  }
  
  .ctaSectionContainer {
    padding: 0 20px;
  }

  .ctaSectionTitle {
    font-size: 2rem;
  }

  .ctaSectionDescription {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .ctaSectionStats {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .ctaStatValue {
    font-size: 2rem;
  }

  .ctaSectionActions {
    flex-direction: column;
    width: 100%;
  }

  .ctaSectionButton {
    width: 100%;
    justify-content: center;
  }
}

/* Exit-Intent Popup Styles */
.exitIntentPopup {
  display: none !important;
  position: fixed !important;
  z-index: 99999 !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: auto !important;
}

.exitIntentPopup.show {
  display: flex !important;
  opacity: 1 !important;
  animation: fadeIn 0.3s ease;
  pointer-events: auto !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.exitIntentContent {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 1.75rem;
  border-radius: 16px;
  max-width: 380px;
  width: 90%;
  position: relative;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 20px 60px rgba(0, 118, 163, 0.3);
  animation: slideUp 0.4s ease;
  text-align: center;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.exitIntentClose {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 10;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.exitIntentClose:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.exitIntentIcon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.exitIntentContent h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.exitIntentSubtitle {
  color: var(--accent-tertiary);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.exitIntentDescription {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.exitIntentForm {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exitIntentForm input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.exitIntentForm input:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 118, 163, 0.1);
}

.exitIntentForm input::placeholder {
  color: var(--text-secondary);
}

.exitIntentButton {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.exitIntentButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 118, 163, 0.4);
}

.exitIntentPrivacy {
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin-top: 0.4rem;
}

@media (max-width: 768px) {
  .exitIntentContent {
    padding: 1.5rem 1.25rem;
    max-width: 340px;
  }

  .exitIntentContent h2 {
    font-size: 1.3rem;
  }

  .exitIntentSubtitle {
    font-size: 0.95rem;
  }

  .exitIntentIcon {
    font-size: 2.5rem;
  }

  .exitIntentDescription {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .exitIntentForm input {
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  .exitIntentButton {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Floating WhatsApp Button - Enhanced Styles */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99999;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  z-index: 2;
  position: relative;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

