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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  min-height: 100vh;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
}

/* ===== ENHANCED TYPOGRAPHY SYSTEM ===== */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: inherit;
}

h1 {
  font-size: 2.25rem;
  letter-spacing: -0.03em;
  color: inherit;
}


h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: inherit;
}

h3, h4, h5, h6 {
  color: inherit;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.8);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===== INTERACTIVE ELEMENT STYLES ===== */


button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Smooth input focus effects */
input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 0 0 6px rgba(37, 99, 235, 0.05);
  transform: scale(1.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



h3 {
  font-size: 1.5rem;
  font-weight: 600;
}



h4 {
  font-size: 1.25rem;
  font-weight: 600;
}


h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

/* Paragraph */

/* ===== UTILITY CLASSES ===== */

/* Display & Layout */
.min-h-screen {
  min-height: 100vh;
}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.flex {
  display: flex;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* Positioning */
.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-50 {
  z-index: 50;
}

.z-10 {
  z-index: 10;
}

/* Width & Height */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* Max Width */
.max-w-7xl {
  max-width: 80rem;
}

/* Flex */
.flex-shrink-0 {
  flex-shrink: 0;
}

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

.justify-between {
  justify-content: space-between;
}

/* Padding */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-22 {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.py-24 {
  padding-top: 5rem;
  padding-bottom: 8rem;
}

/* Margin */
.m-0 {
  margin: 0;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-lg-5 {
  margin-left: auto;
  margin-right: auto;
}

/* Text Colors */
.text-white {
  color: #ffffff;
}

/* Background Colors */
.bg-white {
  background-color: #ffffff;
}

/* Background Gradients */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-blue-50 {
  --tw-gradient-stops: #eff6ff, var(--tw-gradient-to);
}

.from-blue-600 {
  --tw-gradient-stops: #2563eb, var(--tw-gradient-to);
}

.from-gray-900 {
  --tw-gradient-stops: #111827, var(--tw-gradient-to);
}

.to-white {
  --tw-gradient-to: #ffffff;
}

.to-gray-800 {
  --tw-gradient-to: #1f2937;
}


/* Navigation */

nav .max-w-7xl {
  margin-left: auto;
  margin-right: auto;
}

nav a:hover,
nav button:hover {
  color: #2563eb;
}

nav .text-gray-700 {
  color: #374151;
  font-weight: 600;
  display: block;
}

nav .font-medium {
  font-weight: 600;
  color: #374151;
}

/* Navigation Menu Items */
nav .flex.items-center.space-x-6 button,
nav .flex.items-center.space-x-6 a {
  color: #374151;
  font-weight: 600;
  padding: 8px 4px;
  font-size: 15px;
}

/* Mobile menu text */
#mobile-menu a,
#mobile-menu button {
  color: #374151;
  font-weight: 500;
  font-size: 15px;
}

/* Buttons */
.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
  will-change: transform, box-shadow;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

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

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4), 0 0 30px rgba(37, 99, 235, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}


/* ===== CLEAN TURBO360-STYLE NAVBAR ===== */

.navbar-clean {
  background: linear-gradient(90deg, #081e42 0%, #0d2e5c 100%);
  padding: 1rem 0;
  transition: all 0.3s ease;
  position: sticky;
  top: -2px;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 8px 32px rgba(8, 30, 66, 0.4);
}



.navbar-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

/* Brand/Logo */
.navbar-brand {
  flex-shrink: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.brand-logo-img {
  width: auto;
  max-width: 153px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  filter: brightness(0.9);
}

/* Desktop Navigation Links */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}


.nav-link-item {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 1px;
}

.nav-link-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown Styling */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
  transition: all 0.2s ease;
}

.nav-has-dropdown {
  cursor: pointer;
}

.dropdown-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  opacity: 0.6;
}

.nav-dropdown-wrapper:hover .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Panel */
.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  border: 1px solid #e5e7eb;
  z-index: 1000;
  padding: 0.5rem;
}

.nav-dropdown-wrapper:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0.875rem;
  text-decoration: none;
  color: #4b5563;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #2563eb;
}

.dropdown-icon {
  font-size: 1.125rem;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.dropdown-item:hover .dropdown-icon {
  opacity: 1;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.dropdown-title {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #1f2937;
  letter-spacing: -0.2px;
}

.dropdown-desc {
  font-size: 0.75rem;
  color: #8b92a0;
  line-height: 1.3;
  letter-spacing: 0px;
}

.dropdown-item:hover .dropdown-title {
  color: #2563eb;
}

.dropdown-item:hover .dropdown-desc {
  color: #4b5563;
}

/* CTA Buttons */
.nav-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}




.cta-start-trial {
  color: #6b7280;
  background: white;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
}

.cta-start-trial:hover {
  color: #2563eb;
  border-color: #2563eb;
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.cta-start-trial:active {
  transform: translateY(0);
}


/* Mobile Menu Toggle */
.navbar-mobile-toggle {
  display: none;
  align-items: center;
  flex-shrink: 0;
}


.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  transition: all 0.2s ease;
  border-radius: 6px;
  -webkit-tap-highlight-color: transparent;
  will-change: background-color;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
  background: rgba(37, 99, 235, 0.1);
}

.hamburger-line {
  width: 25px;
  height: 6.5px;
  background:#ffffff;
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-origin: center;
  will-change: transform, background-color;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: #2563eb;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  background: #2563eb;
}



.mobile-menu-content {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  will-change: contents;
}

/* Responsive Adjustments */




/* Logo */
.navbar-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: block;
  transition: all 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
  letter-spacing: 0;
}

/* Navbar Logo Link */
.navbar-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Navbar Logo Image */
.navbar-logo-img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar-logo-link:hover .navbar-logo-img {
  filter: brightness(1.1);
}

/* Desktop Navigation Menu */
.nav-desktop-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  display: hidden;
}

/* Desktop CTA Buttons */
.nav-desktop-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Toggle */
.nav-mobile-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Desktop Navigation Links */
.nav-link {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #2563eb;
  background-color: #f0f9ff;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Primary Button */
.nav-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.nav-btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.nav-btn-secondary {
  background-color: transparent;
  color: #2563eb;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  border: 2px solid #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-btn-secondary:hover {
  background-color: #eff6ff;
  border-color: #1d4ed8;
  color: #1d4ed8;
}

/* Mobile Primary Button */
.nav-btn-primary-mobile {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.nav-btn-primary-mobile:active {
  transform: scale(0.95);
}




/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid #e5e7eb;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  max-height: calc(100vh - 70px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transform: translateY(-20px);
}

.mobile-menu.mobile-menu-open,
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.mobile-nav-link {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.mobile-nav-link:hover {
  background-color: #f0f9ff;
  color: #2563eb;
  border-left-color: #2563eb;
  padding-left: 1.5rem;
}

.mobile-nav-link:active {
  background-color: #e0e7ff;
  color: #1d4ed8;
}

.navbar-offset {
  margin-top: 64px;
  min-height: calc(100vh - 64px);
}



#mobile-menu:not(.hidden) {
  display: block;
  max-height: 600px;
}

#mobile-menu a,
#mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

#mobile-menu a:active,
#mobile-menu button:active {
  background-color: #e0e7ff;
}

#mobile-menu button {
  margin-top: 0.5rem;
  width: calc(100% - 1.5rem);
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  text-align: center;
  padding: 0.625rem 1.25rem;
}

/* Mobile Dropdown Toggle Icon */
.mobile-dropdown-toggle .mobile-dropdown-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.mobile-dropdown-toggle.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

/* Mobile Dropdown Content */
.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #f9fafb;
}

.mobile-dropdown-content.active {
  max-height: 500px;
}

.mobile-dropdown-item {
  display: block;
  color: #282d33;
  padding: 0.65rem 1.25rem 0.65rem 2.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
}

.mobile-dropdown-item:hover {
  color: #2563eb;
  background-color: #f0f9ff;
  border-left-color: #2563eb;
  padding-left: 2.75rem;
}

.mobile-dropdown-group {
  display: flex;
  flex-direction: column;
}

/* ===== DESKTOP DROPDOWN STYLES ===== */

/* Dropdown Group Container */
.nav-dropdown-group {
  position: relative;
}

/* Dropdown Link with Chevron */
.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(37, 99, 235, 0.02) 100%);
  border-radius: 0.5rem;
  padding: 0.6rem 0.95rem;
}

.nav-dropdown-icon {
  width: 18px;
  height: 18px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.1));
}

.nav-link-dropdown:hover .nav-dropdown-icon {
  transform: translateY(3px);
  color: #2563eb;
  filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.25));
}

/* Dropdown Menu Container */
.nav-dropdown-menu {
  position: absolute;
  top: 92%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 80px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  margin-top: 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
  z-index: 1000;
  background-image: linear-gradient(135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(240, 249, 255, 0.95) 100%);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 3px;
  transform: rotate(45deg);
  border: 1px solid rgba(37, 99, 235, 0.15);
  z-index: -1;
}

.nav-dropdown-group:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-link-dropdown:hover {
  background-color: transparent;
}

.nav-link-dropdown:hover::after {
  transform: scaleX(0);
}

/* Dropdown Menu Items */
.nav-dropdown-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  text-decoration: none;
  color: #1f2937;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  cursor: pointer;
  position: relative;
  background: transparent;
}

.nav-dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  transform: scaleY(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 2px 2px 0;
}

.nav-dropdown-item:last-child {
  border-bottom: none;
}

.nav-dropdown-item:hover {
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.08) 0%,
      rgba(37, 99, 235, 0.04) 100%);
  color: #2563eb;
  padding-left: 1.375rem;
}

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

.nav-dropdown-item:active {
  background: rgba(37, 99, 235, 0.12);
}

/* Dropdown Item Icon */
.nav-dropdown-item-icon {
  font-size: 1.5rem;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.2));
}

.nav-dropdown-item:hover .nav-dropdown-item-icon {
  transform: scale(1.15) translateY(-2px);
  filter: drop-shadow(0 8px 20px rgba(37, 99, 235, 0.35));
}

/* Dropdown Item Content */
.nav-dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.nav-dropdown-item-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1f2937;
  letter-spacing: -0.3px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-item-desc {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.35;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-item:hover .nav-dropdown-item-title {
  color: #2563eb;
  letter-spacing: -0.2px;
}

.nav-dropdown-item:hover .nav-dropdown-item-desc {
  color: #4b5563;
}

/* ===== MOBILE DROPDOWN STYLES ===== */

/* Mobile Dropdown Groups */
.mobile-dropdown-group {
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.mobile-dropdown-group:last-child {
  border-bottom: none;
}

/* Mobile Dropdown Toggle Button */
.mobile-dropdown-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100% !important;
  background: transparent;
  border: none;
  padding: 1rem 1.125rem !important;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  -webkit-tap-highlight-color: transparent;
  will-change: background-color, color;
  min-height: 44px;
}

.mobile-dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  transform: scaleY(0);
  transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
  border-radius: 0 2px 2px 0;
  will-change: transform;
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle:active {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  padding-left: 1.375rem !important;
}

.mobile-dropdown-toggle:hover::before,
.mobile-dropdown-toggle:active::before {
  transform: scaleY(1);
}

/* Mobile Dropdown Icon Rotation */
.mobile-dropdown-toggle .mobile-dropdown-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
  color: #1f2937;
  will-change: transform;
}

.mobile-dropdown-toggle[aria-expanded="true"] .mobile-dropdown-icon {
  transform: rotate(180deg);
  color: #2563eb;
}

/* Mobile Dropdown Content */
.mobile-dropdown-content {
  background: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: max-height, opacity;
}

.mobile-dropdown-content.open {
  max-height: 400px;
  opacity: 1;
}

/* Mobile Dropdown Items */
.mobile-dropdown-item {
  display: block;
  padding: 0.85rem 1.125rem;
  padding-left: 2.75rem;
  text-decoration: none;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 550;
  transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  will-change: background-color, color, padding-left;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-dropdown-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  transform: scaleY(0);
  transition: transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
  border-radius: 0 2px 2px 0;
  will-change: transform;
}

.mobile-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:active {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  padding-left: 3rem;
}

.mobile-dropdown-item:hover::before,
.mobile-dropdown-item:active::before {
  transform: scaleY(1);
}

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

.mobile-dropdown-item:active {
  background: linear-gradient(90deg,
      rgba(37, 99, 235, 0.15) 0%,
      rgba(37, 99, 235, 0.08) 100%);
}







/* Container Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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




/*Trusted section*/

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

/* Trusted Brands Section */
.trusted-section {
  padding: 0;
  text-align: center;
}

.trusted-section h2 {
  font-size: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  font-weight: 600;
  color: #111827;
}

.brands-container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.brands-background {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 149px;
  background: linear-gradient(134deg,
      rgb(226, 239, 255) 0%,
      rgb(182, 214, 255) 100%);
  border-radius: 20px;
  z-index: 1;
}

.brand-card {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}



.brand-asda {
  color: #00aa00;
}

.brand-bbc {
  background: #000;
  color: white;
  font-size: 20px;
  letter-spacing: 2px;
}

.brand-columbia {
  color: #0066cc;
}

.brand-redcross {
  background: white;
  color: #d73e2e;
}

.brand-wortell {
  color: #00d000;
}

.brand-kingcounty {
  color: #000;
}

/* Main Content Section */
.content-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  line-height: 1.3;
}


.highlight {
  background: -webkit-linear-gradient(0deg, #16c7ff 0%, #126cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 2rem;
}



.description-row {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #333;
}

.description-row p {
  border-right: #0042cc 3px solid;
  text-align: right !important;
  padding-right: 1rem !important;
  margin-bottom: 0 !important;
  width: 28%;
}

.description-row span {
  text-align: left !important;
  padding-left: 1rem !important;
  padding-bottom: 0 !important;
  width: 31%;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 101, 255, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 101, 255, 0.15), 0 0 30px rgba(37, 99, 235, 0.1);
  border-color: rgba(0, 101, 255, 0.3);
}

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

.feature-card:active {
  transform: translateY(-4px) scale(1.01);
}

.feature-metric {
  font-size: 56px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.feature-link {
  color: #0066ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: #0052cc;
}

.feature-link::after {
  content: "→";
}

/* Responsive Design */




/*what we outcomes*/
/* Main Section - What Outcomes */
.main-section {
  background: linear-gradient(135deg, #0d2e5c 0%, #081e42 50%, #061a38 100%);
  border-radius: 24px;
  padding: 80px 60px;
  margin: 0 auto;
  border: 1px solid rgba(100, 200, 255, 0.2);
  width: 100%;
  max-width: 1280px;
}

/* Content Grid */
/* Feature Card */
.feature-card {
  position: relative;
  padding-left: 24px;
}

.feature-card h3 {
  font-size: 75px;
  min-height: 90px;
  font-weight: 800;
  line-height: 1em;
  background: -webkit-linear-gradient(339deg, #056dfb 10%, #26b8fd 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.feature-card p:last-of-type {
  margin-bottom: 0;
}

/* Divider line */
.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, #4a9eff, transparent);
}

.explore-more {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
  font-size: 15px;
  margin-top: 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.explore-more:hover {
  gap: 10px;
  color: #4a9eff;
}

.explore-more::after {
  content: "→";
}


.t360-app-container {
  background-color: #001233;
  background-image: url("./assests/roi-calculator.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

/* Header */
.t360-header {
  text-align: center;
  margin-bottom: 4rem;
}

.t360-main-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.t360-text-highlight {
  color: #3b82f6;
  /* Bright blue highlight */
}

/* Layout Wrapper */
.t360-calculator-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem;
  align-items: flex-start;
}

/* Input Section (Left) */
.t360-input-section {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.t360-section-title {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.t360-input-group {
  margin-bottom: 2.5rem;
}

.t360-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
}

.t360-input-wrapper {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  height: 50px;
}

.t360-currency-symbol {
  color: #0f172a;
  font-weight: 600;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.t360-number-input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

/* Range Slider Styling */
.t360-range-wrapper {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
}

.t360-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: none;
  position: relative;
  z-index: 2;
}

.t360-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #00c2ff;
  /* Cyan/Blue thumb */
  transform: rotate(45deg);
  /* Diamond shape hint */
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

.t360-range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #00c2ff;
  transform: rotate(45deg);
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

/* Toggle Switch */
.t360-toggle-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}

.t360-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  flex-shrink: 0;
}

.t360-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.t360-slider-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 24px;
}

.t360-slider-switch:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.t360-slider-switch {
  background-color: #3b82f6;
}

input:checked+.t360-slider-switch:before {
  transform: translateX(24px);
}

.t360-toggle-label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #cbd5e1;
}

.t360-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 0.7rem;
  margin-left: 0.25rem;
  cursor: help;
  vertical-align: middle;
}

/* Right Card Section */
.t360-result-card-container {
  position: relative;
  flex: 0 0 350px;
}

.t360-result-card {
  background: rgba(11, 34, 75, 0.85);
  /* Semi-transparent dark blue */
  border: 2px solid #2563eb;
  /* Bright blue border */
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.t360-card-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.t360-amount-display {
  margin-bottom: 3rem;
}

.t360-amount-value {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.t360-currency-unit {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
}

.t360-cta-button {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 80%;
  margin: 0 auto 3rem auto;
}

.t360-cta-button:hover {
  background-color: #0052a3;
}

.t360-disclaimer {
  font-size: 0.7rem;
  color: #94a3b8;
  line-height: 1.4;
  max-width: 250px;
  margin: 0 auto;
}

/* Decorations */
.t360-deco-circle-left {
  position: absolute;
  left: -20px;
  top: 35%;
  width: 40px;
  height: 80px;
  background: transparent;
  border: 4px solid #2563eb;
  border-right: 0;
  border-radius: 40px 0 0 40px;
  z-index: 1;
}

.t360-deco-ring-right {
  position: absolute;
  right: -12px;
  bottom: 100px;
  width: 24px;
  height: 24px;
  border: 3px solid #fbbf24;
  /* Yellow/Amber ring */
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Responsive adjustments */

/* Main Wrapper - Codename: w-alpha-container */
.w-alpha-container {
  width: 100%;
  max-width: 1400px;
  min-height: 280px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: visible;
  position: relative;
  gap: 32px;
  flex-wrap: wrap;
  padding: 60px 40px;
}

/* Left Content Section - Codename: c-beta-text-block */
.c-beta-text-block {
  padding: 32px 48px;
  flex: 0 0 auto;
  z-index: 2;
  max-width: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.t-gamma-headline {
  font-size: 26px;
  line-height: 1.35;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #0f172a 0%, #1a1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.b-delta-cta {
  display: inline-block;
  background: linear-gradient(135deg, #0055ff 0%, #0044cc 100%);
  color: white;
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 85, 255, 0.2);
  border: none;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 0.3px;
}

.b-delta-cta:hover {
  background: linear-gradient(135deg, #0044cc 0%, #003399 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 85, 255, 0.3);
}

/* Right Visual Section - Codename: v-epsilon-showcase */
.v-epsilon-showcase {
  flex: 1;
  position: absolute;
  right: 0;
  border-top-left-radius: 160px;
  border-bottom-left-radius: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.02);
  background: #fff;
  border: 1px solid rgba(0, 85, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 160px;
  padding: 32px 20px;
}

.v-epsilon-showcase:hover {
  border-color: rgba(0, 85, 255, 0.15);
  box-shadow: -12px 0 30px rgba(0, 85, 255, 0.08);
}

/* Badges Grid - Codename: g-zeta-grid */
.g-zeta-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

/* Badge Images - Codename: i-eta-badge */
.i-eta-badge {
  height: auto;
  width: auto;
  max-height: 100px;
  max-width: 85px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0%) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
  opacity: 0.9;
  cursor: pointer;
}

/* Specific sizing tweaks to match the visual balance in the screenshot */
.i-eta-badge.type-shield {
  max-height: 110px;
}

.i-eta-badge.type-circle {
  max-height: 95px;
}

.i-eta-badge:hover {
  transform: translateY(-4px) scale(1.06);
  opacity: 1;
  filter: grayscale(0%) drop-shadow(0 8px 20px rgba(0, 85, 255, 0.15));
}

/* Responsive adjustments */



/*hero section*/
:root {
  --bg-dark: #081e42;
  --text-white: #ffffff;
  --text-gray: #d1d5db;
  --text-gray-dark: #9ca3af;
  --text-gray-light: #f3f4f6;
  --text-blue: #3b82f6;
  --text-blue-light: #93c5fd;
  --text-blue-dark: #1e40af;
  --btn-lime: #d1f349;
  --btn-lime-hover: #c2e338;
  --card-bg-dark: #162032;
  --card-bg-darker: #111927;
  --border-color: rgba(255, 255, 255, 0.05);
  --primary-color: #2563eb;
  --primary-color-dark: #1d4ed8;
  --secondary-color: #60a5fa;
  --accent-color: #a5f3fc;
}

/* ===== PROFESSIONAL TEXT COLOR STANDARDS ===== */

/* Dark Theme Sections */
.bg-dark, [class*="dark"], .navbar-clean {
  color: var(--text-white) !important;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
[class*="dark"] h1, [class*="dark"] h2, [class*="dark"] h3, [class*="dark"] h4, [class*="dark"] h5, [class*="dark"] h6 {
  color: var(--text-white) !important;
}


/* Light Theme Sections */
.bg-white {
  color: #1f2937 !important;
}

.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6 {
  color: #111827 !important;
  font-weight: 700;
}

.bg-white p, .bg-white span, .bg-white li {
  color: #374151 !important;
}

/* Professional Text Classes */
.hero-title, .section-title, .comparison-main-title, .cost-A-section-title {
  color: var(--text-white) !important;
  font-weight: 500 !important;
}

.hero-subtitle, .section-subtitle, .comparison-subtitle, .cost-A-description-text {
  color: rgba(229, 231, 235, 0.85) !important;
  font-weight: 400 !important;
}

.description-text, .cost-A-description-texts {
  color: var(--text-gray) !important;
}

/* Links and interactive elements */




.bg-white a {
  color: var(--primary-color) !important;
}



/* Button text */
.btn-primary, .nav-btn-primary {
  color: var(--text-white) !important;
}

.nav-btn-secondary {
  color: var(--text-white) !important;
}

/* ===== COMPREHENSIVE TEXT COLOR STANDARDS ===== */

/* All heading levels */
h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

/* Dark sections inherit white text */
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.comparison-hero-section h1, .comparison-hero-section h2, .comparison-hero-section h3 {
  color: var(--text-white);
}

/* Light sections inherit dark text */
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6 {
  color: #111827;
}

/* Paragraphs and text elements */
p, span, li, td, th {
  color: inherit;
}

/* Lists inherit color */
ul, ol, dl {
  color: inherit;
}

.hero-section {
  background: linear-gradient(135deg, rgb(8 30 66) 0%, rgb(8 30 66) 100%);
  color: var(--text-white);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem ;
  cursor: default;
  overflow: hidden;
}






.grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  z-index: 10;
  margin-bottom: 2rem;
  margin-top: 6rem;
}

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

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





/* Left Column Styles */
.col-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 600px;
  margin-top: 0.75rem;
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  padding: 0 0.5rem;
}


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

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

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInDown 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  word-break: break-word;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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






.text-highlight {
  color: var(--text-blue);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(229, 231, 235, 0.85);
  line-height: 1.6;
  max-width: 500px;
  animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
  opacity: 0;
  margin-bottom: 0.25rem;
}




/* Email Form */
.email-form-container {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.375rem;
  border-radius: 50px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
  width: 100%;
  max-width: 450px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.email-form-container:hover {
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}



.email-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: #111827;
  outline: none;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 0;
}

.email-input::placeholder {
  color: rgba(17, 24, 39, 0.5);
  font-weight: 500;
}



.btn-primary {
  background: linear-gradient(135deg, var(--btn-lime) 0%, #bef264 100%);
  color: black;
  font-weight: 700;
  padding: 0.875rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(245, 232, 31, 0.3);
  font-size: 0.95rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(245, 232, 31, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}




/* Video Card */
.video-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  border-radius: 1rem;
  max-width: 450px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.video-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.video-card:hover {
  border-color: rgba(59, 130, 246, 0.8);
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-8px) translateX(4px);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.video-card:hover::after {
  left: 100%;
}





.video-thumbnail {
  position: relative;
  width: 160px;
  height: 96px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}




.video-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.video-card:hover video {
  opacity: 1;
}

.play-button-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.play-icon-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.video-card:hover .play-icon-circle {
  transform: scale(1.25) rotateZ(5deg);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.video-card:hover .play-icon-circle::before {
  opacity: 1;
}

.play-icon {
  width: 1rem;
  height: 1rem;
  color: white;
  fill: white;
  margin-left: 2px;
}

.video-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}




.video-desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(229, 231, 235, 0.85);
}



.video-cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: #60a5fa;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.video-card:hover .video-cta {
  color: #93c5fd;
  gap: 0.75rem;
}


/* Right Column Visuals */
.col-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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






.hero-video {
  position: absolute;
  right: 0;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}



/*what outcomes*/
.bg-dark {
  background: #091e42;
}

.primary-container {
  max-width: 1400px;
  margin: 0 auto;
}

.main-heading {
  text-align: center;
  margin-bottom: 60px;
}

.main-heading h1 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-white);
}

.main-heading .tilt {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.highlight-text {
  background: -webkit-linear-gradient(0deg, #16c7ff 0%, #126cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 2.5rem;
}

.info-block {
  padding: 40px;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.label-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  margin-bottom: 1rem;
  color: #0a1929;
}

.visibility-badge {
  background-color: #c4f24e;
  color: #0a1929;
}

.optimization-badge {
  background-color: #d4f24e;
  color: #0a1929;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
}

.description-text {
  font-size: 1rem;
  color: rgba(229, 231, 235, 0.85);
  line-height: 1.7;
}

.action-link {
  color: #4a9eff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.action-link::after {
  content: "→";
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.action-link:hover {
  color: #6bb3ff;
  transform: translateX(4px);
  text-shadow: 0 0 10px rgba(106, 179, 255, 0.4);
}

.action-link:hover::after {
  transform: translateX(4px);
}

.dropdown-icon .icon-i svg {
  color: #3b82f6;
}

.fallback-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}






/* Main Container Layout */
.section-container {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  padding: 40px;
  background: white;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  border-radius: 8px;
}






/* Left Column: Hero Text */
.hero-content {
  flex: 0 0 150px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}





.highlight-blue {
  background: -webkit-linear-gradient(135deg, #16c7ff 0%, #126cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}





.hero-title-two {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}






.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0065ff 0%, #0052cc 100%);
  color: white;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 9999px;
  /* Pill shape */
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(0, 101, 255, 0.2);
  border: 1px solid rgba(0, 101, 255, 0.3);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 101, 255, 0.35);
  border-color: rgba(0, 101, 255, 0.5);
}

.cta-button:active {
  transform: translateY(0);
}




/* Right Column: Steps Grid */
.steps-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}




/* Step Card Component */
.step-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--card-delay, 0s);
  position: relative;
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(224, 231, 241, 0.3) 100%);
  cursor: pointer;
  will-change: transform, box-shadow;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(59, 130, 246, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
  pointer-events: none;
}

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

.step-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 101, 255, 0.2);
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.8) 0%, rgba(224, 231, 241, 0.6) 100%);
}

.step-card:nth-child(1) {
  --card-delay: 0.1s;
}

.step-card:nth-child(2) {
  --card-delay: 0.2s;
}

.step-card:nth-child(3) {
  --card-delay: 0.3s;
}



/* Image Handling */
.image-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e0e7f1 100%);
  aspect-ratio: 16 / 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .image-container {
  box-shadow: 0 15px 40px rgba(0, 101, 255, 0.25);
  transform: scale(1.03);
}

.step-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card:hover .step-image {
  transform: scale(1.08) rotateZ(1deg);
}

/* Text Content */
.text-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-heading {
  color: #0065ff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-heading {
  color: #0052cc;
}



.step-subheading {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}




.step-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0.25rem;
  letter-spacing: 0.3px;
}




/* Responsive Design */

 

  .steps-grid {
    width: 100%;
  }



.text-secondary-gradient {
  background: -webkit-linear-gradient(0deg, #16c7ff 0%, #126cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 2rem;
}



/* Footer Container */
.footer-wrapper {
  padding: 60px 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Top Section: Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

/* Column Styles */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* Gap between stacked groups within a column */
}

.footer-group h3 {
  color: #0f172a;
  /* Dark heading */
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.footer-links li a {
  color: #4b5563;
}



/* Contact Column Specifics */
.contact-email {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 24px;
  display: block;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  transition: background-color 0.2s;
}

.social-icon:hover {
  background-color: #e2e8f0;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Security Badges Card */
.security-badges-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  max-width: 280px;
}

.badge-img {
  width: 80px;
  height: auto;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Microsoft Partners Row */
.ms-partners-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ms-badge {
  height: 70px;
  width: auto;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: white;
}

/* Bottom Brand & Links */
.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.brand-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Cloudmex Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.left-links {
  display: flex;
  gap: 15px;
  font-size: 13px;
}

.left-links span {
  color: #cbd5e1;
}

.right-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
}




img {
 width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
    -ms-interpolation-mode: bicubic;
    line-height: .5em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0
}

/* Responsive video containers */
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Grid gap adjustments */
.grid-gap-mobile {
  gap: 1rem;
}




/* Card padding responsive */
.card {
  padding: 1.5rem;
}



/* Title spacing responsive */
.section-title {
  margin-bottom: 1rem;
}









/* Content width optimizations */
.content-max-width {
  max-width: 65ch;
}



/* Responsive paragraph line length */
p {
  max-width: 70ch;
}

/* Button size responsiveness */
button,
.btn {
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
}





/*before footer*/

/* Simplified hero with only background image and text content */
.codename-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgb(8 30 66) 0%, rgb(8 30 66) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4rem;
  padding-bottom: 14rem;
}

/* Background image positioned at bottom */
.codename-background-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
  padding-left: 2rem;
  padding-right: 2rem;
}

.codename-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.codename-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.codename-subtitle {
  font-size: 18px;
  color: #a0b3c6;
  margin-bottom: 32px;
  line-height: 1.6;
}

.codename-cta-button {
  display: inline-block;
  background-color: #0ea5e9;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.codename-cta-button:hover {
  background-color: #0284c7;
}



/*Plaform*/
/* ===== COST ANALYSIS HERO SECTION ===== */

.cost-analysis-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  padding: 60px 20px 40px;
  margin-bottom: -233px;
}

.cost-analysis-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%,
      rgba(37, 99, 235, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(29, 78, 216, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

.cost-analysis-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

/* Tab Navigation */
.cost-analysis-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cost-analysis-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cost-analysis-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.cost-analysis-tab.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.tab-icon {
  width: 16px;
  height: 16px;
}

/* Main Heading */
.cost-analysis-heading {
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}





/* Subtitle */
.cost-analysis-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}



/* Email Form */
.cost-analysis-form {
  display: flex;
  gap: 8px;
  max-width: 450px;
  margin: 0 auto 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.cost-analysis-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.cost-analysis-input:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.5);
}

.cost-analysis-input::placeholder {
  color: #9ca3af;
}

.cost-analysis-btn-primary {
  padding: 12px 28px;
  background: linear-gradient(135deg, #bfff00 0%, #a3e635 100%);
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(191, 255, 0, 0.3);
}

.cost-analysis-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(191, 255, 0, 0.4);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Dashboard Container */
.cost-analysis-dashboard {
  display: flex;
  gap: 12px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 40px rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(10px);
  transform: rotateX(5deg);
  animation: dashboardEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

/*cost-analyst*/

.cost-A-info-block-one {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.cost-A-info-block-two {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.cost-A-info-block-one:before {
  border-radius: 30px 0 0 30px;
  position: absolute;
  width: 68%;
  z-index: -1;
  content: "";
  bottom: 0;
  right: -15.8rem;
  top: -15px;
  background: -webkit-linear-gradient(right, rgb(206 227 253), #d1e7ff);
}

.cost-A-label-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.cost-A-visibility-badge {
  background-color: #c4f24e;
  color: #0a1929;
}

.cost-A-optimization-badge {
  background-color: #d4f24e;
  color: #0a1929;
}

.cost-A-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
}

.cost-A-description-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
}

.cost-A-action-link {
  color: #4a9eff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.cost-A-action-link:hover {
  color: #6bb3ff;
}

.cost-A-media-content {
  width: 81%;
  height: auto;
  border-radius: 8px;
}



.cost-A-media-block:before {
  position: absolute;
  width: 68%;
  z-index: -1;
  content: "";
  left: -17rem;
  right: 0;
  border-radius: 0px 20px 20px 0px;
  background: -webkit-linear-gradient(left, rgb(207 228 254), #d1e7ff);
  bottom: 0;
  top: 0;
}


/* Desktop (1024px - 1279px) - Professional Spacing */


/* Tabs - Large Desktop */
.cost-analysis-tabs {
  gap: 16px;
  margin-bottom: 48px;
}

.cost-analysis-tab {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Headings - Large Desktop */
.cost-analysis-heading {
  font-size: 3.25rem;
  margin-bottom: 20px;
}

.cost-analysis-subtitle {
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* Form - Large Desktop */
.cost-analysis-form {
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 60px;
}

.cost-analysis-input {
  padding: 14px 22px;
  font-size: 0.95rem;
}

.cost-analysis-btn-primary {
  padding: 14px 32px;
  font-size: 0.95rem;
}

/* Preview - Large Desktop */
.cost-analysis-preview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* Primary Container */
.primary-container {
  max-width: 1400px;
}

/* Grid Layout */

/* Info Blocks */
.cost-A-info-block-one,
.cost-A-info-block-two {
  padding: 48px;
}



.cost-A-description-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.cost-A-label-badge {
  padding: 10px 24px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

/* Sections */

.codename-hero {
  padding: 80px 48px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.codename-title {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

.codename-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Footer */
.footer-wrapper {
  padding: 80px 48px;
}



.footer-group {
  margin-bottom: 24px;
}

.footer-group h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* Testimonials - Large Desktop */
.header-title {
  font-size: 2.25rem;
  margin-bottom: 48px;
}

.quote {
  font-size: 1.05rem;
  line-height: 1.8;
}

.metric-value {
  font-size: 2.5rem;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
}

.w-alpha-container {
  padding: 60px 40px;
  flex-direction: row;
  gap: 48px;
}

.c-beta-text-block {
  max-width: 100%;
  padding: 32px 48px;
}

.t-gamma-headline {
  font-size: 26px;
}


.g-zeta-grid {
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.i-eta-badge {
  max-height: 95px;
}

/* Extra Large Desktop (1536px+) - Premium Optimization */

.cost-analysis-hero {
  padding: 100px 60px;
  margin-bottom: -233px;
}



.cost-A-info-block-one,
.cost-A-info-block-two {
  padding: 60px;
}

.footer-wrapper {
  padding: 100px 60px;
}

.footer-grid {
  gap: 80px;
}

.w-alpha-container {
  padding: 100px 60px;
}

/* ===== COMPARISON HERO SECTION STYLES cloudzero ===== */

.comparison-hero-section {
  background: linear-gradient(135deg, #081e42 0%, #1e40af 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: auto;
  animation: fadeInSection 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.comparison-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(29, 78, 216, 0.08) 0%,
      transparent 50%);
  pointer-events: none;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

.comparison-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  animation: containerSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes containerSlideIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}




/* Left Content */
.comparison-left-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

.comparison-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.comparison-left-content:hover .comparison-main-title {
  letter-spacing: 0;
}




.comparison-subtitle {
  font-size: 1.125rem;
  color: rgba(229, 231, 235, 0.85);
  line-height: 1.7;
  max-width: 500px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.comparison-left-content:hover .comparison-subtitle {
  color: rgba(255, 255, 255, 0.95);
}




/* Form */
.comparison-form-wrapper {
  display: flex;
  gap: 12px;
  max-width: 450px;
  margin-top: 20px;
  animation: slideUpForm 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes slideUpForm {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.comparison-form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      transparent 0%,
      rgba(37, 99, 235, 0.02) 100%);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.comparison-form-wrapper:hover::before {
  opacity: 1;
}




.comparison-input-field {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  color: #0f172a;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.comparison-input-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.05) 0%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 50px;
}

.comparison-input-field:hover::before {
  opacity: 1;
}

.comparison-input-field::placeholder {
  color: rgba(15, 23, 42, 0.5);
  transition: color 0.3s ease;
}

.comparison-input-field:focus {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
  border-color: rgba(37, 99, 235, 0.6);
  background: rgba(255, 255, 255, 0.98);
}

.comparison-input-field:focus::placeholder {
  color: rgba(15, 23, 42, 0.4);
}



.comparison-btn-primary {
  padding: 12px 32px;
  background: linear-gradient(135deg, #d1f349 0%, #bef264 100%);
  color: #0f172a;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 16px rgba(209, 243, 73, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.comparison-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
  pointer-events: none;
}

.comparison-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(209, 243, 73, 0.45);
  letter-spacing: 0.5px;
}

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

.comparison-btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(209, 243, 73, 0.35);
}



/* Right Content - Testimonial Card */
.comparison-right-content {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

.testimonial-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(209, 243, 73, 0.5),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%,
      rgba(37, 99, 235, 0.1) 0%,
      transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 20px;
}

.testimonial-card:hover::after {
  opacity: 1;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.8);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.25);
}




.testimonial-logo {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wortell-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .wortell-logo {
  color: #d1f349;
}



.testimonial-quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
  letter-spacing: 0.2px;
}



.testimonial-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-author {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.author-name {
  color: white;
  font-weight: 700;
}

.author-title {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.9rem;
}

.read-full-story {
  color: #d1f349;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 8px;
}

.read-full-story:hover {
  gap: 10px;
  color: #bef264;
}





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

.header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.header p {
  font-size: 18px;
  color: #6b7280;
}

.content-wrapper {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-evenly;
}

.content-wrappers {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

/* Accordion Styles */
.accordion-container {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.accordion-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.accordion-item.active {
  border-color: #e8edf5;
}

.accordion-header {
  padding: 24px 28px;
}

.accordion-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 0 28px 24px 28px;
}

.accordion-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Content Card Styles */
.content-card {
  width: 704px;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8edf5;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-card:hover {
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-6px);
}

.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg,
      #a5b4fc 0%,
      #a5b4fc 25%,
      transparent 50%,
      transparent 75%,
      #fcd34d 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.content-card:hover .card-title {
  letter-spacing: 0;
}

.card-divider {
  height: 2px;
  background: linear-gradient(90deg, #a5b4fc 0%, #2563eb 50%, #fcd34d 100%);
  margin-bottom: 20px;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.content-card:hover .card-divider {
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.card-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 24px;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
}

.stat-box {
  flex: 1;
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.5) 0%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-box.blue {
  border: 2px solid #a5b4fc;
  transition: all 0.3s ease;
}

.stat-box.blue:hover {
  border-color: #2563eb;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.stat-box.coral {
  border: 2px solid #fca5a5;
  transition: all 0.3s ease;
}

.stat-box.coral:hover {
  border-color: #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.stat-box.pink {
  border: 2px solid #f9a8d4;
  transition: all 0.3s ease;
}

.stat-box.pink:hover {
  border-color: #ec4899;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.stat-box.yellow {
  border: 2px solid #fcd34d;
  transition: all 0.3s ease;
}

.stat-box.yellow:hover {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.stat-box.blue .stat-label {
  color: #2563eb;
  transition: all 0.3s ease;
}

.stat-box.blue:hover .stat-label {
  color: #1d4ed8;
  letter-spacing: 0.8px;
}

.stat-box.coral .stat-label {
  color: #dc2626;
  transition: all 0.3s ease;
}

.stat-box.coral:hover .stat-label {
  color: #b91c1c;
  letter-spacing: 0.8px;
}

.stat-box.pink .stat-label {
  color: #db2777;
  transition: all 0.3s ease;
}

.stat-box.pink:hover .stat-label {
  color: #be185d;
  letter-spacing: 0.8px;
}

.stat-box.yellow .stat-label {
  color: #d97706;
  transition: all 0.3s ease;
}

.stat-box.yellow:hover .stat-label {
  color: #b45309;
  letter-spacing: 0.8px;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #1a1a2e 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-box:hover .stat-value {
  letter-spacing: 0;
  filter: brightness(1.1);
}

.arrow {
  color: #94a3b8;
  font-size: 12px;
  margin: 0 -4px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-dot.blue {
  background: #6366f1;
}

.feature-dot.green {
  background: #22c55e;
}

.feature-dot.pink {
  background: #f472b6;
}

.feature-dot.yellow {
  background: #fbbf24;
}

.feature-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

/* CTA Buttons */
.cta-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #4ade80;
  color: #ffffff;
}

.btn-primary:hover {
  background: #22c55e;
}

.btn-secondary {
  background: #3b82f6;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #2563eb;
}

/* Card Content Panels */
.card-panel {
  display: none;
}

.card-panel.active {
  display: block;
}

/* Cost Optimization Card */
.cost-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  height: 160px;
  margin: 24px 0;
}

.chart-bar {
  width: 60px;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.chart-bar span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.chart-bar.before {
  background: linear-gradient(to top, #f87171, #fca5a5);
  height: 140px;
}

.chart-bar.after {
  background: linear-gradient(to top, #4ade80, #86efac);
  height: 70px;
}

.chart-labels {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 12px;
}

.chart-labels span {
  font-size: 13px;
  color: #6b7280;
}

/* Documentation Card */
.doc-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.doc-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #6366f1;
}

.doc-icon {
  width: 40px;
  height: 40px;
  background: #e0e7ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.doc-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.doc-text p {
  font-size: 13px;
  color: #6b7280;
}


.codename-wrapper {
  background: linear-gradient(135deg, rgb(8 30 66) 0%, rgb(8 30 66) 100%);
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.codename-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 40px;
}

.codename-title {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  max-width: 700px;
}

.codename-highlight {
  color: #7fdbff;
  font-style: italic;
  font-weight: 400;
}

.codename-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.codename-nav-btn {
  border: none;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  padding: 8px;
}

.codename-nav-btn:hover {
  opacity: 1;
}

.codename-card {
  display: flex;
  max-width: 1100px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.codename-testimonial {
  background: linear-gradient(180deg, #0066cc 0%, #003d7a 100%);
  padding: 50px 60px;
  flex: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px 0 0 24px;
}

.codename-logo {
  margin-bottom: 30px;
}

.codename-logo-text {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.codename-logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: super;
}

.codename-leaf {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: -8px;
  margin-bottom: 8px;
}

.codename-leaf::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid #ffffff;
  border-radius: 0 50% 0 50%;
  transform: rotate(-45deg);
}

.codename-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #d0e8ff;
  margin-bottom: 40px;
  font-weight: 400;
}

.codename-author {
  margin-top: auto;
}

.codename-author-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.codename-author-role {
  font-size: 14px;
  color: #7fdbff;
  font-weight: 400;
}

.codename-stats {
  background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 100%);
  padding: 50px 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 24px 24px 0;
}

.codename-stat {
  margin-bottom: 30px;
  text-align: center;
}

.codename-stat:last-of-type {
  margin-bottom: 40px;
}

.codename-stat-value {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.codename-stat-label {
  font-size: 14px;
  color: #4ecdc4;
  font-weight: 500;
}

.codename-cta {
  text-align: center;
  margin-top: auto;
}

.codename-cta-link {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ffffff;
  transition: opacity 0.3s ease;
}

.codename-cta-link:hover {
  opacity: 0.8;
}

.codename-arrow {
  font-size: 12px;
}



/* ===== ENHANCED PROFESSIONAL STYLING FOR CLOUDZERO PAGE ===== */

/* Cost Visibility & Optimization Sections Enhancement */
.cost-A-info-block-one,
.cost-A-info-block-two {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cost-A-label-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cost-A-visibility-badge {
  background: linear-gradient(135deg, #d4ff59 0%, #c4f24e 100%);
  color: #0a1929;
}

.cost-A-optimization-badge {
  background: linear-gradient(135deg, #e8ff66 0%, #d4f24e 100%);
  color: #0a1929;
}

.cost-A-label-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cost-A-section-title {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.cost-A-description-text {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 28px;
  margin: 7px 0;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  transition: all 0.3s ease;
  list-style-type: none;
}

.cost-A-description-texts {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 28px;
  margin: 7px 0;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  list-style-type: none;
}

.cost-A-description-text:before {
  content: url(./assests/compare/cloudzeroimg/right-download.svg);
  width: 15px;
  height: 15px;
  position: absolute;
  top: 2px;
  left: 4px;
}

.cost-A-description-texts:before {
  content: url(./assests/compare/cloudzeroimg/right-download.svg);
  width: 15px;
  height: 15px;
  position: absolute;
  top: 2px;
  left: 4px;
}

.cost-A-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: #2563eb;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  margin-top: 12px;
}

.cost-A-action-link::after {
  content: "→";
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cost-A-action-link:hover {
  color: #1d4ed8;
  gap: 12px;
}

.cost-A-action-link:hover::after {
  transform: translateX(4px);
}

/* Media Content Enhancement */
.cost-A-media-content,
.cost-A-fallback-image {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Section Container Enhancement */
section.bg-white {
  position: relative;
  transition: all 0.3s ease;
}

section.bg-white:hover::before {
  opacity: 1;
}

section.bg-dark {
  background: #0a1e40;
  position: relative;
  overflow: hidden;
}



/* Enhancement for Main Container */
.primary-container {
  position: relative;
  z-index: 2;
}

.main-heading {
  animation: fadeInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

.main-heading h1:hover {
  letter-spacing: 0;
}

.highlight-text {
  background: linear-gradient(135deg, #16c7ff 0%, #126cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.highlight-text:hover {
  letter-spacing: 0;
}

/* Accordion Enhancement */
.accordion-container {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accordion-item {
  border-radius: 16px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.accordion-item:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
  transform: translateX(4px);
}

.accordion-item.active {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.accordion-header {
  transition: all 0.3s ease;
  position: relative;
  padding-left: 32px;
}

.accordion-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-item.active .accordion-header::before {
  opacity: 1;
}

.accordion-header h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  color: #0f172a;
}

.accordion-item:hover .accordion-header h3 {
  color: #2563eb;
}

.accordion-item.active .accordion-header h3 {
  color: #2563eb;
}

.accordion-content {
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    padding 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  opacity: 1;
}

.accordion-content p {
  line-height: 1.8;
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* Testimonial Slider Enhancement */
.header-title {
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-content {
  animation: slideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

.slide-left,
.slide-right {
  transition: all 0.3s ease;
  border-radius: 12px;
  position: relative;
}

.slide-left::before,
.slide-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.05) 0%,
      transparent 100%);
  border-radius: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slide-left:hover::before,
.slide-right:hover::before {
  opacity: 1;
}

.quote {
  font-style: italic;
  line-height: 1.8;
  letter-spacing: 0.2px;
  color: rgba(0, 0, 0, 0.85);
  transition: all 0.3s ease;
}

.metric-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 12px 20px;
}

.metric-box:hover {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
}

.metric-value {
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.metric-box:hover .metric-value {
  letter-spacing: 0.5px;
}

.stat-label {
  font-weight: 700;
  color: #0f172a;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

/* Navigation Arrow Enhancement */
.nav-arrows {
  display: flex;
  gap: 12px;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: 2px solid transparent;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.arrow-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.arrow-btn:active {
  transform: translateY(0);
}

.arrow-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Feature Card Enhancement */
.feature-card {
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.02) 0%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.feature-card:hover {
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
}

.feature-card h3 {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.feature-card:hover h3 {
  letter-spacing: 0;
}

/* Footer Enhancement */
footer {
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(37, 99, 235, 0.2),
      transparent);
  pointer-events: none;
}

.footer-column {
  transition: all 0.3s ease;
}

.footer-column:hover {
  transform: translateY(-2px);
}

.footer-group h3 {
  position: relative;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  padding-bottom: 12px;
}

.footer-group h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-column:hover .footer-group h3::after {
  width: 100%;
}

.footer-links a {
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  text-decoration: none;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #2563eb;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

* {
  transition: all 0.2s ease;
}

/*MEDIA Queryy*/

@media (max-width: 640px) {
  h1 {
    font-size: 2.75rem;
  }

  .hero-video {
    display: none;
  }

  .video-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .video-card {
    max-width: 400px;
    padding: 1rem;
  }

  .video-cta {
    font-size: 0.8rem;
  }

  .col-right {
    display: none;
  }

  .video-thumbnail {
    width: 140px;
    height: 84px;
  }

  .video-thumbnail {
    width: 150px;
    height: 90px;
  }

  .video-text {
    gap: 0.2rem;
  }

  .grid-layout {
    margin-top: 60px;
    margin-left: 1rem;
    padding-right: 1rem;
    gap: 1.25rem;
  }

  .col-left {
    gap: 1rem;
    margin-top: 0.5rem;
    max-width: 100%;
    padding: 0 0.25rem;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .content-section {
    padding: 1.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .trusted-section h2 {
    font-size: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .brand-card {
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    min-width: 95px;
  }

  .brands-background {
    height: 120px;
  }

  .main-section {
    padding: 40px 20px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .t360-deco-ring-right {
    right: 0;
  }

  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:flex-col {
    flex-direction: column;
  }

  .sm\:text-base {
    font-size: 1rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
  }

  /* Tablet buttons - full width to auto */
  button.bg-blue-600 {
    width: auto;
  }

  button.border-2 {
    width: auto;
  }

  .step-heading {
    font-size: 17px;
  }

  .step-description {
    font-size: 13px;
  }

  .highlight-blue {
    font-size: 1.5rem;
  }

  .step-subheading {
    font-size: 14px;
  }

  /* Navigation */
  nav .max-w-7xl {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .text-2xl {
    font-size: 1.25rem;
  }

  /* Hero Section */
 

  .col-left,
  .col-right {
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  .email-form-container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .email-input {
    width: 100%;
  }

  .btn-primary {
    padding: 0.75rem 1rem;
  }

  /* Branded Section */
  .trusted-section {
    padding: 2rem 0;
  }

  .trusted-section h2 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .brands-container {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .brand-card {
    padding: 0.75rem 1rem;
    min-width: 70px;
    font-size: 0.7rem;
  }

  .brands-background {
    display: none;
  }

  /* Content Section */
  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .description-row p,
  .description-row span {
    width: 100%;
    text-align: left !important;
    border-right: none;
    padding: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-value {
    font-size: 2rem;
  }

  /* Steps Grid */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    flex-direction: column;
  }

  .step-image {
    width: 100%;
    max-height: 200px;
  }

  /* Dark Section */
  .primary-container {
    padding: 2rem 1rem;
  }

  .main-heading {
    font-size: 1.5rem;
  }

  .main-heading h1 {
    font-size: 1.5rem;
  }

  .feature-card h3 {
    font-size: 2.5rem;
  }

  /* Calculator */
  .t360-calculator-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .t360-input-section {
    min-width: 100%;
    max-width: 100%;
  }

  .t360-result-card-container {
    width: 100%;
    max-width: 100%;
  }

  .t360-result-card {
    min-height: 300px;
    padding: 1.5rem;
  }

  .t360-amount-value {
    font-size: 2rem;
  }

  .t360-main-title {
    font-size: 1.5rem;
  }

  .t360-section-title {
    font-size: 1rem;
  }

  .t360-label {
    font-size: 0.85rem;
  }

  .t360-number-input {
    font-size: 1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-column {
    padding: 0;
  }

  footer .container {
    padding: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

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

  .bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .right-links {
    flex-wrap: wrap;
    gap: 15px;
  }

  .responsive-mb {
    margin-bottom: 2rem;
  }

  .section-title {
    margin-bottom: 1.5rem;
  }

  button,
  .btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }

  .grid-gap-mobile {
    gap: 1.5rem;
  }

  .card {
    padding: 2rem;
  }

  /* Hero Section - Mobile */
  .cost-analysis-hero {
    padding: 40px 16px 32px;
    margin-top: 64px;
    min-height: auto;
  }

  .cost-analysis-hero-content {
    padding: 0 12px 30px;
    max-width: 100%;
  }

  /* Tabs - Mobile */
  .cost-analysis-tabs {
    gap: 8px;
    margin-bottom: 28px;
    justify-content: center;
  }

  .cost-analysis-tab {
    padding: 6px 12px;
    font-size: 0.75rem;
    gap: 6px;
  }

  /* Headings - Mobile */
  .cost-analysis-heading {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .cost-analysis-subtitle {
    font-size: 0.85rem;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  /* Form - Mobile */
  .cost-analysis-form {
    gap: 8px;
    max-width: 100%;
    margin: 0 auto 32px;
    flex-direction: column;
  }

  .cost-analysis-input {
    min-width: 100%;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .cost-analysis-btn-primary {
    padding: 10px 24px;
    font-size: 0.85rem;
    width: 100%;
  }

  /* Preview - Mobile */
  .cost-analysis-preview {
    margin: 0 auto;
    padding: 0 12px;
  }

  /* Primary Container - Mobile */
  .primary-container {
    max-width: 100%;
  }

  /* Grid Layout - Mobile */
  .grid-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }

  /* Info Blocks - Mobile */
  .cost-A-info-block-one,
  .cost-A-info-block-two {
    padding: 24px;
  }

  .cost-A-section-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .cost-A-description-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .cost-A-label-badge {
    padding: 6px 16px;
    font-size: 0.65rem;
    margin-bottom: 8px;
  }

  /* Media Blocks - Mobile */
  .cost-A-media-blocks {
    margin: 16px 0;
  }

  .cost-A-media-content,
  .cost-A-fallback-image {
    width: 100%;
    border-radius: 8px;
  }

  /* Sections - Mobile */
  section.bg-white,
  section.bg-dark {
    padding: 32px 16px;
  }

  /* Hero for specific sections */
  .codename-hero {
    padding: 40px 16px;
    min-height: auto;
  }

  .codename-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .codename-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  /* Footer - Mobile */
  .footer-wrapper {
    padding: 32px 16px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-column {
    margin-bottom: 16px;
  }

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

  .footer-group h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  /* Container - Mobile */

  .w-alpha-container {
    padding: 40px 20px;
    flex-direction: column;
    gap: 30px;
    min-height: auto;
    align-items: center;
  }

  .c-beta-text-block {
    width: 100%;
    max-width: 100%;
    padding: 20px 0;
    text-align: center;
    flex: none;
  }

  .t-gamma-headline {
    font-size: 1.4rem;
    margin-bottom: 18px;
    line-height: 1.4;
    font-weight: 700;
  }

  .b-delta-cta {
    padding: 11px 26px;
    font-size: 0.9rem;
    margin: 0 auto;
  }

  /* Badge Section - Mobile */
  .v-epsilon-showcase {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
    margin-left: 0;
    border-radius: 16px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    min-height: auto;
    position: relative;
    left: auto;
    right: auto;
  }

  .g-zeta-grid {
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .i-eta-badge {
    max-height: 70px;
    width: auto;
    max-width: 90px;
  }

  .i-eta-badge.type-shield {
    max-height: 85px;
  }

  .i-eta-badge.type-circle {
    max-height: 75px;
  }

  .comparison-hero-container {
    gap: 30px;
    padding: 0 15px;
  }

  .comparison-main-title {
    font-size: 1.75rem;
  }

  .comparison-form-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .comparison-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .comparison-input-field {
    width: 100%;
  }

  .comparison-btn-primary {
    width: 100%;
    padding: 11px 24px;
    font-size: 0.9rem;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .wortell-logo {
    font-size: 1.5rem;
  }

  .read-full-story {
    font-size: 0.85rem;
  }

  .testimonial-card {
    padding: 25px;
  }

  .comparison-hero-section {
    padding: 40px 12px;
  }

  .comparison-hero-container {
    gap: 25px;
    padding: 0;
  }

  .comparison-left-content {
    gap: 18px;
  }

  .comparison-main-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .comparison-subtitle {
    font-size: 0.9rem;
    text-align: center;
  }

  .comparison-form-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .comparison-input-field {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .comparison-btn-primary {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-quote {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .testimonial-footer {
    padding-top: 16px;
    gap: 10px;
  }

  .testimonial-author {
    font-size: 0.85rem;
  }

  .author-title {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {

  /* Hide decorative pseudo-elements on mobile and tablet */
  .cost-A-info-block-one:before {
    display: none;
  }

  .cost-A-media-block:before {
    display: none;
  }

  /* Navigation */
  .text-2xl {
    font-size: 1.5rem;
  }

  /* Hero Section */
  .grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .email-form-container {
    flex-direction: row;
    width: 100%;
  }

  .email-input {
    flex: 1;
  }

  /* Branded Section */
  .trusted-section h2 {
    font-size: 1.2rem;
  }

  .brands-container {
    gap: 1rem;
  }

  .brand-card {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
  }

  /* Content Section */
  .section-header h1 {
    font-size: 2rem;
  }

  .description-row {
    flex-direction: row;
    gap: 1rem;
  }

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

  /* Steps Grid */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    flex-direction: column;
  }

  .step-image {
    width: 100%;
    max-height: 250px;
  }

  /* Dark Section */
  .primary-container {
    padding: 2.5rem 1.5rem;
  }

  .main-heading h1 {
    font-size: 1.75rem;
  }

  .grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .feature-card h3 {
    font-size: 3rem;
  }

  /* Testimonials */
  .header-title {
    font-size: 1.75rem;
  }

  .nav-arrows {
    position: absolute;
    top: 20px;
    right: 20px;
    gap: 1rem;
  }

  .arrow-btn {
    width: 44px;
    height: 44px;
  }

  .slide {
    flex-direction: row;
  }

  .slide-left {
    flex: 1;
  }

  .slide-right {
    flex: 1;
  }

  .quote {
    font-size: 1.05rem;
  }

  .metric-value {
    font-size: 3rem;
  }

  /* Calculator */
  .t360-calculator-wrapper {
    flex-direction: row;
    gap: 2rem;
  }

  .t360-input-section {
    max-width: 350px;
  }

  .t360-result-card-container {
    max-width: 350px;
  }

  .t360-amount-value {
    font-size: 2.5rem;
  }

  .t360-main-title {
    font-size: 2rem;
  }

  footer .container {
    padding: 2rem 1.5rem;
  }
  .w-alpha-container {
    flex-direction: column;
    text-align: center;
    padding: 45px 24px;
    gap: 28px;
    align-items: center;
  }

  .c-beta-text-block {
    width: 100%;
    max-width: 100%;
    padding: 0;
    flex: none;
  }

  .t-gamma-headline {
    font-size: 1.5rem;
    margin-bottom: 18px;
    line-height: 1.4;
  }

  .b-delta-cta {
    padding: 11px 26px;
    font-size: 0.9rem;
    margin: 0 auto;
  }

  .v-epsilon-showcase {
    width: 100%;
    max-width: 100%;
    padding: 24px 18px;
    margin-left: 0;
    border-radius: 14px;
    position: relative;
    left: auto;
    right: auto;
  }

  .g-zeta-grid {
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .i-eta-badge {
    max-height: 75px;
    width: auto;
    max-width: 95px;
  }

  .i-eta-badge.type-shield {
    max-height: 90px;
  }

  .i-eta-badge.type-circle {
    max-height: 80px;
  }

  .info-block {
    padding: 30px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .chart-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .hero-video {
    object-position: right center;
  }

  .col-right {
    width: 45%;
  }

  .video-text {
    gap: 0.25rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .email-form-container {
    max-width: 100%;
    padding: 0.375rem;
  }

  .c-beta-text-block {
    padding: 40px 20px;
    max-width: 100%;
  }

  .v-epsilon-showcase {
    width: 90%;
    margin: 0 auto;
    height: auto;
    padding: 40px 20px;
    border-radius: 20px;
    /* Simplify shape on mobile */
    flex-wrap: wrap;
  }

  .g-zeta-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trusted-section {
    padding: 40px 0;
  }

  .trusted-section h2 {
    font-size: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
    font-weight: 600;
  }

  .brands-container {
    gap: 12px;
    flex-wrap: wrap;
  }

  .brands-background {
    display: none;
  }

  .brand-card {
    padding: 15px 20px;
    min-width: 90px;
    font-size: 12px;
  }

  .section-header h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-metric {
    font-size: 36px;
  }

  .feature-card {
    padding: 20px;
  }

  .nav-desktop-menu {
    display: flex;
  }

  .nav-desktop-buttons {
    display: flex;
  }

  .nav-mobile-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .navbar-enhanced {
    padding: 0.5rem 0;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem;
  }

  .nav-btn-primary,
  .nav-btn-secondary {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .md\:block {
    display: block;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex {
    display: flex;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:gap-12 {
    gap: 3rem;
  }

  .nav-desktop-menu {
    display: flex;
  }

  .nav-desktop-buttons {
    display: flex;
  }

  .nav-mobile-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .navbar-enhanced {
    padding: 0.5rem 0;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem;
  }

  .nav-btn-primary,
  .nav-btn-secondary {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  h4 {
    font-size: 1.375rem;
  }

  .navbar-container {
    height: 56px;
  }

  .navbar-wrapper {
    padding: 0 1rem;
  }

  .brand-logo-img {
    height: 32px;
  }

  .mobile-menu {
    top: 56px;
  }

  .mobile-menu.active {
    max-height: calc(100vh - 56px);
  }

  .mobile-nav-link,
  .mobile-dropdown-toggle,
  .mobile-dropdown-item {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-desktop-menu {
    display: none !important;
  }

  .nav-desktop-buttons {
    display: none !important;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .navbar-enhanced {
    padding: 0.5rem 0;
  }

  .navbar-logo {
    font-size: 1.25rem;
  }

  .hamburger {
    gap: 4px;
  }

 

  .mobile-menu {
    display: block;
    top: 60px;
  }

  .mobile-menu.mobile-menu-open {
    max-height: 600px;
  }

  .mobile-nav-link {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .nav-btn-primary-mobile {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }

  .navbar-offset {
    margin-top: 60px;
  }

  .section-container {
    gap: 30px;
    padding: 30px 20px;
    border-radius: 6px;
  }

  .hero-content {
    gap: 1.25rem;
  }

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

  .comparison-form-wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .testimonial-card {
    padding: 30px;
    max-width: 100%;
  }

  .comparison-main-title {
    font-size: 2.25rem;
    text-align: center;
  }

  .hero-title-two {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 11px 28px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
  .codename-title {
    font-size: 32px;
  }

  .codename-subtitle {
    font-size: 16px;
  }

  .cost-analysis-heading {
    font-size: 2.75rem;
  }

  .comparison-hero-section {
    padding: 50px 15px;
  }

  .comparison-hero-container {
    gap: 35px;
  }

  .comparison-left-content {
    gap: 20px;
  }

  .comparison-main-title {
    font-size: 2rem;
  }

  .comparison-subtitle {
    font-size: 0.95rem;
  }

  .comparison-form-wrapper {
    width: 100%;
  }

  .testimonial-card {
    padding: 28px;
  }

  .testimonial-quote {
    font-size: 0.95rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid {
    width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    /* Stack cards on mobile */
    gap: 40px;
  }

  .content-max-width {
    max-width: 75ch;
  }

  .cost-analysis-subtitle {
    font-size: 1rem;
  }

  .comparison-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }


  /* Hero Section - Tablet */
  .cost-analysis-hero {
    padding: 50px 24px 40px;
    margin-top: 64px;
  }

  .cost-analysis-hero-content {
    padding: 0 20px 40px;
  }

  /* Tabs - Tablet */
  .cost-analysis-tabs {
    gap: 12px;
    margin-bottom: 36px;
  }

  .cost-analysis-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  /* Headings - Tablet */
  .cost-analysis-heading {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .cost-analysis-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  /* Form - Tablet */
  .cost-analysis-form {
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 40px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cost-analysis-input {
    min-width: 250px;
    padding: 11px 18px;
  }

  .cost-analysis-btn-primary {
    padding: 11px 26px;
    font-size: 0.88rem;
  }

  /* Grid Layout - Tablet */
  .grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Info Blocks - Tablet */
  .cost-A-info-block-one,
  .cost-A-info-block-two {
    padding: 32px;
  }

  .cost-A-section-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .cost-A-description-text {
    font-size: 0.95rem;
  }

  .cost-A-label-badge {
    padding: 7px 18px;
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  /* Sections - Tablet */
  section.bg-white,
  section.bg-dark {
    padding: 50px 24px;
  }

  .codename-hero {
    padding: 50px 24px;
  }

  .codename-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .codename-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  /* Footer - Tablet */
  .footer-wrapper {
    padding: 50px 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-group h3 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  /* Testimonials - Tablet */
  .header-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }

  /* Container - Tablet */

  .w-alpha-container {
    padding: 50px 28px;
    flex-direction: row;
    gap: 28px;
    min-height: auto;
    align-items: center;
  }

  .c-beta-text-block {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    max-width: 100%;
    text-align: left;
  }

  .t-gamma-headline {
    font-size: 1.4rem;
    margin-bottom: 18px;
    line-height: 1.4;
  }

  .b-delta-cta {
    padding: 11px 24px;
    font-size: 0.9rem;
  }

  .v-epsilon-showcase {
    flex: 1;
    min-width: 220px;
    padding: 24px;
    margin-left: 0;
    border-radius: 14px;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    min-height: auto;
  }

  .g-zeta-grid {
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .i-eta-badge {
    max-height: 85px;
    width: auto;
    max-width: 100px;
  }

  .i-eta-badge.type-shield {
    max-height: 100px;
  }

  .i-eta-badge.type-circle {
    max-height: 90px;
  }

  .i-eta-badge {
    max-height: 80px;
  }
}

@media (max-width: 998px) {
  .codename-wrapper {
    padding: 40px 24px;
  }

  .codename-card {
    flex-direction: column;
  }

  .codename-testimonial {
    border-radius: 24px 24px 0 0;
    padding: 40px 30px;
  }

  .codename-stats {
    border-radius: 0 0 24px 24px;
    padding: 40px 30px;
  }

  .codename-title {
    font-size: 24px;
  }

  .codename-header {
    flex-direction: column;
    gap: 20px;
  }

  .codename-stat-value {
    font-size: 42px;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }

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

  .main-heading h1 {
    font-size: 2rem;
  }

  .col-right {
    display: flex;
    position: absolute;
    height: 100%;
    width: 50%;
  }

  .nav-links-desktop {
    display: none;
  }

  .nav-cta-buttons {
    display: none;
  }

  .navbar-enhanced {
    padding: 0.75rem 0;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.625rem 1rem;
    gap: 0.25rem;
  }

  .nav-btn-primary,
  .nav-btn-secondary {
    font-size: 0.9rem;
    padding: 0.625rem 1.25rem;
  }

  .t-gamma-headline {
    font-size: 24px;
  }

  .v-epsilon-showcase {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    padding-left: 50px;
  }

  .i-eta-badge {
    max-height: 80px;
  }

  .navbar-mobile-toggle {
    display: flex;
  }

  .lg\:block {
    display: block;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:col-span-2 {
    grid-column: span 2;
  }

  .lg\:gap-12 {
    gap: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .main-section {
    padding: 60px 40px;
  }

  .section-heading {
    font-size: 28px;
    margin-bottom: 60px;
  }

  h3 {
    font-size: 1.875rem;
  }

  .navbar-container {
    gap: 1rem;
  }

  .navbar-wrapper {
    padding: 0 1.5rem;
  }

  .brand-logo-img {
    height: 36px;
  }

  .t360-calculator-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .t360-input-section {
    width: 100%;
    max-width: 100%;
  }

  .t360-result-card-container {
    width: 100%;
    max-width: 400px;
    flex: auto;
  }

  .nav-dropdown-menu {
    min-width: 260px;
  }

  .nav-dropdown-item {
    padding: 0.75rem 0.875rem;
  }

  .nav-dropdown-item-title {
    font-size: 0.875rem;
  }

  .nav-dropdown-item-desc {
    font-size: 0.75rem;
  }

  .nav-dropdown-item-icon {
    font-size: 1.125rem;
  }

  .trusted-section h2 {
    font-size: 1.875rem;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .brand-card {
    padding: 1.25rem 1.75rem;
    font-size: 0.95rem;
  }

  .content-section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h1 {
    font-size: 1.875rem;
  }

 

  .cost-analysis-heading {
    font-size: 3.25rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }



  h1 {
    font-size: 3.5rem;
    line-height: 3.75rem;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  h3 {
    font-size: 1.75rem;
    line-height: 2.125rem;
  }

  h4 {
    font-size: 1.375rem;
    line-height: 1.75rem;
  }


  button,
  .btn {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }

  .highlight-blue {
    font-size: 1.875rem;
  }

  .hero-title-two {
    font-size: 1.875rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .step-description {
    font-size: 13px;
    line-height: 1.55;
  }

  .step-heading {
    font-size: 18px;
  }

  .step-subheading {
    font-size: 15px;
  }

  .section-container {
    flex-direction: column;
    gap: 40px;
  }

  .responsive-mb {
    margin-bottom: 3rem;
  }

  .grid-gap-mobile {
    gap: 2rem;
  }

  .responsive-mt {
    margin-top: 3rem;
  }

  .comparison-hero-section {
    padding: 60px 20px;
  }

  .comparison-hero-container {
    gap: 50px;
  }

  .comparison-main-title {
    font-size: 2.25rem;
  }

  .comparison-subtitle {
    font-size: 1rem;
  }

  .testimonial-card {
    padding: 35px;
}

  .content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .accordion-container,
  .content-card {
    width: 100%;
    max-width: 580px;
  }
  }



@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-title {
    font-size: 2.5rem;
  }

  /* Steps Grid */
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  /* Testimonials */
  .header-title {
    font-size: 2rem;
  }

  .slide {
    gap: 2rem;
  }

  .slide-left {
    flex: 1;
    padding: 2.5rem;
  }

  .slide-right {
    flex: 1;
    padding: 2.5rem;
  }

  /* Calculator */
  .t360-calculator-wrapper {
    gap: 4rem;
  }

  .t360-input-section {
    max-width: 400px;
  }

  .t360-result-card-container {
    max-width: 350px;
  }

  .t360-amount-value {
    font-size: 2.75rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (hover: hover) {
  .step-card:hover {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  }
   /* Enhanced Product Tour - Tablet */
  .product-tour-container {
    gap: 40px;
    padding: 0 24px;
  }

  .product-tour-header {
    max-width: 100%;
  }

 

  .tour-subtitle {
    font-size: 1rem;
  }

  .product-tour-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .product-step-card {
    padding: 28px 20px;
    gap: 16px;
  }

  .step-number {
    font-size: 3.5rem;
    right: 16px;
    top: -5px;
  }
  
  .step-heading {
    font-size: 18px;
  }

  .step-subheading {
    font-size: 14px;
  }

  .step-description {
    font-size: 13px;
  }

  
.product-tour-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
  overflow: hidden;
}

.product-tour-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 101, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-tour-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.product-tour-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tour-subtitle {
  font-size: 1.0625rem;
  color: #6b7280;
  margin-top: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.product-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.product-step-card {
  position: relative;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 101, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.product-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, rgb(8 30 66) 0%, rgb(8 30 66) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 101, 255, 0.12);
  border-color: rgba(0, 101, 255, 0.16);
}

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

.step-number {
  position: absolute;
  top: -10px;
  right: 24px;
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(0, 101, 255, 0.08);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.image-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8 0%, #e0e7f1 100%);
  aspect-ratio: 16 / 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 101, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 101, 255, 0.04) 0%, rgba(0, 101, 255, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.product-step-card:hover .image-container {
  box-shadow: 0 12px 32px rgba(0, 101, 255, 0.16);
  border-color: rgba(0, 101, 255, 0.2);
}

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

.product-step-card:hover .step-image {
  transform: scale(1.06);
}

.step-indicator {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(8 30 66) 0%, rgb(8 30 66) 100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 101, 255, 0.3);
}

.product-step-card:hover .step-indicator {
  opacity: 1;
  transform: scale(1.5);
}

/* Enhanced Text Content */
.product-step-card .text-content {
  position: relative;
  z-index: 2;
}

.product-step-card .step-heading {
  background: linear-gradient(135deg, #0065ff 0%, #0052cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-step-card:hover .step-heading {
  -webkit-text-fill-color: #0052cc;
}

.product-step-card .step-subheading {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.product-step-card .step-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.3px;
}

/* ===== RESPONSIVE DESIGN - MOBILE ===== */
@media (max-width: 1024px) {
  /* Hide desktop navigation and show mobile toggle */
  .nav-links-desktop {
    display: none !important;
  }

  .nav-cta-buttons {
    display: none !important;
  }

  .navbar-mobile-toggle {
    display: flex !important;
  }

  .mobile-menu {
    display: block !important;
  }

  .navbar-wrapper {
    padding: 0 1rem;
  }


  .mobile-menu-btn.active .hamburger-line:nth-child(1),
  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    background: #2563eb;
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 0 1rem;
  }

  .navbar-container {
    gap: 1rem;
  }

  .brand-logo-img {
    max-width: 130px;
  }

  .mobile-menu {
    top: 65px;
    max-height: calc(100vh - 65px);
  }

  .mobile-nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .mobile-nav-link:hover {
    padding-left: 1.25rem;
  }

  .mobile-dropdown-item {
    padding: 0.6rem 1rem 0.6rem 2.25rem;
    font-size: 0.85rem;
  }

  .mobile-dropdown-item:hover {
    padding-left: 2.5rem;
  }
}

@media (max-width: 480px) {
  .navbar-clean {
    padding: 0.75rem 0;
  }

  .navbar-wrapper {
    padding: 0 0.75rem;
  }

  .brand-logo-img {
    max-width: 110px;
  }


  .mobile-menu-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 0.5rem;
  }

  .mobile-nav-link {
    padding: 0.7rem 0.875rem;
    font-size: 0.875rem;
  }

  .mobile-dropdown-item {
    padding: 0.55rem 0.875rem 0.55rem 2rem;
    font-size: 0.8rem;
  }
}

/* ===== RESPONSIVE MEDIA QUERIES FOR DROPDOWNS ===== */

/* Tablets and below - Hide desktop dropdowns */
@media (max-width: 1024px) {
  .nav-links-desktop {
    display: none !important;
  }

  .nav-cta-buttons {
    display: none !important;
  }

  .navbar-mobile-toggle {
    display: flex !important;
  }

  .nav-dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    min-width: auto;
  }

  .nav-dropdown-wrapper:hover .nav-dropdown-panel {
    transform: none;
  }
}

/* Mobile - Optimize dropdown styling for touch */
@media (max-width: 768px) {
  .nav-dropdown-panel {
    min-width: 280px;
    max-width: 90vw;
  }

  .dropdown-item {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }

  .dropdown-icon {
    min-width: 36px;
    min-height: 36px;
    font-size: 1.25rem;
  }

  .dropdown-title {
    font-size: 0.9rem;
  }

  .dropdown-desc {
    font-size: 0.75rem;
  }
}

/* Small mobile - Further optimize */
@media (max-width: 480px) {
  .nav-dropdown-panel {
    min-width: 260px;
    padding: 0.5rem;
  }

  .dropdown-item {
    padding: 0.75rem 0.875rem;
  }

  .dropdown-icon {
    min-width: 32px;
    min-height: 32px;
    font-size: 1.125rem;
  }

  .dropdown-title {
    font-size: 0.875rem;
  }

  .dropdown-desc {
    font-size: 0.7rem;
  }
}

/* ===== HAMBURGER MENU - RESPONSIVE DISPLAY ===== */
/* Show hamburger menu only on tablet and mobile (max-width: 1023px) */
@media (max-width: 1023px) {
  .navbar-mobile-toggle {
    display: flex;
  }
}
