/* Import variables */
@import 'variables.css';

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Typography with Custom Green Gradient */
h1, h2, h3, h4, h5, h6 {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 700;
  line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
  margin: 0 auto;
}

.nav-logo .logo {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo .logo:hover {
    position: relative;
    overflow: hidden;
}

.nav-logo .logo:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: silverGlare 1.5s ease-in-out;
    pointer-events: none;
    z-index: 10;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.nav-menu {
    display: none;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #428180;
}

.nav-link.active {
    color: #428180;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #428180;
}

.cta-button {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(66, 129, 128, 0.3);
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 200, 200, 0.4);
}

/* Professional Full-Height Dropdown Menu */
.nav-menu {
    position: fixed !important;
    right: -400px !important;
    top: 0 !important;
    width: 350px !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    transition: right 0.4s ease !important;
    overflow-y: auto !important;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15) !important;
    border-left: 3px solid #428180 !important;
}

body.menu-open {
    overflow: hidden !important;
}

.nav-menu.active {
    right: 0 !important;
    display: block !important;
    visibility: visible !important;
}

.nav-menu-container {
    padding: 30px 25px;
    height: 100%;
    background: rgba(248, 248, 248, 0.7); backdrop-filter: blur(6px);
}

.nav-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 0 !important;
    padding: 25px 0 25px 0 !important;
    border-bottom: none !important;
}

.nav-menu-logo {
    display: block !important;
    margin-right: auto !important;
    width: auto !important;
    min-width: 150px !important;
    position: relative !important;
    z-index: 10 !important;
    overflow: visible !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 auto 0 0 !important;
}

.nav-menu-logo .logo {
    height: 50px !important;
    width: auto !important;
    min-width: 150px !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 11 !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    clip: none !important;
    clip-path: none !important;
    mask: none !important;
    overflow: visible !important;
    pointer-events: auto !important;
    font-size: inherit !important;
    line-height: normal !important;
    white-space: normal !important;
    text-indent: 0 !important;
    will-change: auto !important;
    animation: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.nav-menu-logo .logo:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: silverGlare 1.5s ease-in-out;
    pointer-events: none;
    z-index: 12;
}

.menu-close {
    background: rgba(0, 123, 255, 0.1);
    border: none;
    font-size: 20px;
    color: #428180;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: #428180;
    color: white;
}

.nav-menu-divider {
    height: 2px !important;
    background: #f0f0f0 !important;
    margin: 0 0 30px 0 !important;
    border: none !important;
}

.nav-menu-links {
    margin-bottom: 40px;
}

.nav-menu .nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 20px;
    margin-bottom: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.nav-menu .nav-link:hover {
    color: #428180;
    background: rgba(0, 123, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(0, 123, 255, 0.2);
}

.nav-menu .nav-link.active {
    color: #428180;
    font-weight: 700;
    background: rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.3);
}

.nav-menu-actions {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.nav-menu-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 12px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-menu-btn.primary {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    color: white;
    box-shadow: 0 4px 12px rgba(66, 129, 128, 0.3);
}

.nav-menu-btn.primary:hover {
    background: linear-gradient(135deg, #1c4244 0%, #428180 35%, #28aa98 65%, #2dc0a8 100%);
    background-size: 200% 200%;
    animation: gradientShine 2s ease-in-out infinite;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 129, 128, 0.4);
}

.nav-menu-btn.secondary {
    background: transparent;
    color: #428180;
    border: 2px solid #428180;
}

.nav-menu-btn.secondary:hover {
    background: #428180;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
  .nav-menu {
        width: 100%;
        right: -100%;
    }
}

.nav-container {
    padding: 1rem 2rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu-logo .logo {
        height: 50px;
        max-width: 200px;
    }
    
    .nav-menu-container {
        padding: 1.5rem;
    }
    
    .nav-menu-links {
        max-width: 280px;
    }
    
    .nav-menu-actions {
        max-width: 280px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 4px 15px rgba(66, 129, 128, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 200, 200, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #428180;
    border: 2px solid #428180;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 2s ease-in-out infinite;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 129, 128, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    background: rgba(245, 245, 245, 0.7); backdrop-filter: blur(6px);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.highlight {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 500;
}

.hero-animation {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-lottie {
    width: 100%;
    height: 100%;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-animation {
        height: 300px;
    }
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    background: rgba(245, 245, 245, 0.7); backdrop-filter: blur(6px);
    text-align: center;
}

.page-hero-content h1 {
    margin-bottom: 1.5rem;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styling */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-label::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

/* Problem Section */
.problem-section {
    background: #f8f9ff;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    height: 80px;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    background: #428180;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.feature-text p {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-size: 1rem;
    margin: 0;
}

.solution-animation {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 968px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #428180;
}

.service-icon {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    height: 100%;
    width: auto;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-link {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-link:hover {
    animation-duration: 1.5s;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 25%, #d0d0d0 50%, #b8b8b8 75%, #a0a0a0 100%);
    background-size: 200% 200%;
    animation: greyGradientShine 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.cta-section h2 {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #1c4244 0%, #428180 35%, #28aa98 65%, #2dc0a8 100%);
    background-size: 200% 200%;
    animation: gradientShine 2s ease-in-out infinite;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 129, 128, 0.4);
}

.cta-guarantee {
    margin-top: 1.5rem;
}

.cta-guarantee p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Premium Footer - System Rules Compliant */
.footer {
    background: linear-gradient(120deg, #f8f9fa 0%, #e3e8ee 100%);
    color: #333;
    padding: 100px 0 0;
    position: relative;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 8px 32px rgba(40, 170, 152, 0.07);
    border-radius: 0;
    overflow: hidden;
}

/* Footer Container */
.footer-container {
    width: 100%;
    max-width: none;
    padding: 0 4vw;
    margin: 0;
}

@media (max-width: 600px) {
    .footer-container {
        padding: 0 2vw;
    }
}

/* Footer Main Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    margin-bottom: 80px;
    align-items: start;
    padding: 40px 0 0 0;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Company Overview Column */
.footer-company {
    max-width: 350px;
}

.footer-logo {
    width: auto;
    max-width: 280px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Navigation Columns */
.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28aa98;
    margin-bottom: 20px;
    position: relative;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
}

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

.footer-nav-item {
    margin-bottom: 12px;
}

.footer-nav-link {
    color: #28aa98;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-weight: 500;
}

.footer-nav-link:hover {
    color: #2dc0a8;
    padding-left: 8px;
}

.footer-nav-link:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

/* Newsletter Column */
.footer-newsletter {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 28px 24px 32px 24px;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    border: 2px solid #28aa98;
    position: relative;
    overflow: hidden;
    max-width: 370px;
    margin: 0 auto;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
}

.footer-newsletter-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #28aa98;
    margin-bottom: 12px;
    text-align: center;
}

.footer-newsletter-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form-group {
    position: relative;
}

.footer-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.footer-form-input:focus {
    outline: none;
    border-color: #28aa98;
    box-shadow: 0 0 0 3px rgba(40, 170, 152, 0.1);
}

.footer-form-input.error {
    border-color: #dc3545;
}

.footer-form-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.footer-form-error.show {
    display: block;
}

.footer-submit-btn {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
}

.footer-submit-btn:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Newsletter Action Buttons */
.footer-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    justify-content: stretch;
    align-items: stretch;
}

.footer-action-btn {
    width: 100%;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
  text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.footer-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
}

.footer-action-btn:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn.primary {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: normal;
}

.footer-action-btn.primary:hover {
    background: linear-gradient(135deg, #2dc0a8, #28aa98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn.primary:focus {
    background: linear-gradient(135deg, #2dc0a8, #28aa98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn.secondary {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: normal;
}

.footer-action-btn.secondary:hover {
    background: linear-gradient(135deg, #2dc0a8, #28aa98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn.secondary:focus {
    background: linear-gradient(135deg, #2dc0a8, #28aa98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn span {
    font-size: 1.25em;
    margin-right: 0.5em;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.footer-action-btn.primary:hover span, .footer-action-btn.primary:focus span {
    color: #fffbe7;
    text-shadow: 0 2px 8px rgba(40,170,152,0.18);
}

.footer-action-btn.secondary:hover span, .footer-action-btn.secondary:focus span {
    color: #28aa98;
    text-shadow: 0 1px 4px rgba(40,170,152,0.10);
}

@media (max-width: 600px) {
    .footer-newsletter {
        max-width: 100%;
        padding: 18px 6vw 22px 6vw;
    }
    .footer-action-btn {
        font-size: 0.98rem;
        padding: 14px 0;
    }
}

.footer-logo {
    max-width: 300px;
}

.footer-logo .logo {
    height: 65px;
    cursor: pointer;
    transition: all 0.3s ease;
  position: relative;
}

.footer-logo .logo:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: silverGlare 1.5s ease-in-out;
    pointer-events: none;
    z-index: 10;
}
    width: auto;
    max-width: 280px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-logo p {
    color: #ccc;
    font-size: 1rem;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #428180;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

/* Legal Section */
.footer-legal {
    border-top: 1px solid #dee2e6;
    padding: 40px 0;
    background: #fff;
}

.footer-legal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: #28aa98;
}

.footer-legal-link:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 170, 152, 0.3);
}

.back-to-top:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* About Page Styles */
.story-section {
    background: #f8f9ff;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.story-animation {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.mission-animation {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-points {
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.point-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.point-text h4 {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.point-text p {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-size: 1rem;
    margin: 0;
}

.values-section {
    background: #f8f9ff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    height: 80px;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-title {
    color: #428180;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 968px) {
    .story-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        justify-content: center;
    }
}

/* Services Page Styles */
.services-overview {
    padding: 0;
}

.service-detailed {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-icon-large img {
    width: 100%;
    height: 100%;
}

.service-title h2 {
    margin-bottom: 0.5rem;
}

.service-title p {
    color: #666;
    font-size: 1.25rem;
    margin: 0;
}

.service-content {
    display: grid;
    gap: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-category h4 {
    color: #428180;
    margin-bottom: 1rem;
}

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

.feature-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.feature-category li:last-child {
    border-bottom: none;
}

.feature-category li::before {
    content: '✓';
    color: #428180;
    font-weight: 600;
    margin-right: 0.5rem;
}

.service-results {
    display: flex;
    gap: 3rem;
    justify-content: center;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 15px;
}

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

.result-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #428180;
    display: block;
}

.result-stat .stat-label {
    color: #666;
    font-weight: 500;
}

.additional-services {
    background: #f8f9ff;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-service {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.additional-icon {
    height: 60px;
    margin-bottom: 1rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-number::before {
  content: '';
  position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.step-duration {
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-results {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Testimonials Page Styles */
.results-overview {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 25%, #d0d0d0 50%, #b8b8b8 75%, #a0a0a0 100%);
    background-size: 200% 200%;
    animation: greyGradientShine 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 60px 0;
}

.results-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.result-stat-large .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.result-stat-large .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.case-study {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-study-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.case-study-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.case-study-content.reverse .case-study-text {
    order: 2;
}

.case-study-content.reverse .case-study-animation {
    order: 1;
}

.case-study-header {
    margin-bottom: 2rem;
}

.case-study-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.case-study-industry {
    background: #428180;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
    margin-bottom: 2rem;
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-results h4 {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

.case-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.case-result {
    text-align: center;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 10px;
}

.result-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    display: block;
}

.result-label {
    font-size: 0.875rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 500;
}

.case-study-animation {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-section {
    background: #f8f9ff;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 25%, #d0d0d0 50%, #b8b8b8 75%, #a0a0a0 100%);
    background-size: 200% 200%;
    animation: greyGradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.testimonial-card.featured blockquote {
    color: white;
    font-size: 1.25rem;
}

.testimonial-card.featured .author-info h4 {
    color: white;
}

.testimonial-card.featured .author-info p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.featured .company-size {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-size: 1.125rem;
    font-style: italic;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.author-info h4 {
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.author-info p {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.company-size {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.industry-results {
    padding: 80px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    height: 60px;
    margin-bottom: 1rem;
}

.industry-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
}

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

.industry-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    display: block;
}

.industry-stat .stat-label {
    font-size: 0.875rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 500;
}

@media (max-width: 968px) {
    .case-study-content,
    .case-study-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-content.reverse .case-study-text,
    .case-study-content.reverse .case-study-animation {
        order: unset;
    }
    
    .case-results-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 150px 0 80px;
    background: rgba(245, 245, 245, 0.7); backdrop-filter: blur(6px);
    text-align: center;
}

.contact-hero-content h1 {
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 600;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    margin-bottom: 1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #428180;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #428180;
    border-color: #428180;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.form-guarantee {
    text-align: center;
    margin-top: 1rem;
}

.form-guarantee p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
}

.success-animation {
    height: 100px;
    margin-bottom: 1rem;
}

.contact-info {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
}

.contact-animation {
    height: 200px;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-text h4 {
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.contact-text p {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin: 0;
}

.contact-testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #428180;
}

.contact-testimonial blockquote {
    font-style: italic;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
/* Import variables */
@import 'variables.css';

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Typography with Custom Green Gradient */
h1, h2, h3, h4, h5, h6 {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 700;
  line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.7;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
  margin: 0 auto;
}

.nav-logo .logo {
  height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo .logo:hover {
    position: relative;
    overflow: hidden;
}

.nav-logo .logo:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: silverGlare 1.5s ease-in-out;
    pointer-events: none;
    z-index: 10;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.nav-menu {
    display: none;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #428180;
}

.nav-link.active {
    color: #428180;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #428180;
}

.cta-button {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(66, 129, 128, 0.3);
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 200, 200, 0.4);
}

/* Professional Full-Height Dropdown Menu */
.nav-menu {
    position: fixed !important;
    right: -400px !important;
    top: 0 !important;
    width: 350px !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    transition: right 0.4s ease !important;
    overflow-y: auto !important;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.15) !important;
    border-left: 3px solid #428180 !important;
}

body.menu-open {
    overflow: hidden !important;
}

.nav-menu.active {
    right: 0 !important;
    display: block !important;
    visibility: visible !important;
}

.nav-menu-container {
    padding: 30px 25px;
    height: 100%;
    background: rgba(248, 248, 248, 0.7); backdrop-filter: blur(6px);
}

.nav-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 0 !important;
    padding: 25px 0 25px 0 !important;
    border-bottom: none !important;
}

.nav-menu-logo {
    display: block !important;
    margin-right: auto !important;
    width: auto !important;
    min-width: 150px !important;
    position: relative !important;
    z-index: 10 !important;
    overflow: visible !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 auto 0 0 !important;
}

.nav-menu-logo .logo {
    height: 50px !important;
    width: auto !important;
    min-width: 150px !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 11 !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    clip: none !important;
    clip-path: none !important;
    mask: none !important;
    overflow: visible !important;
    pointer-events: auto !important;
    font-size: inherit !important;
    line-height: normal !important;
    white-space: normal !important;
    text-indent: 0 !important;
    will-change: auto !important;
    animation: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.nav-menu-logo .logo:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: silverGlare 1.5s ease-in-out;
    pointer-events: none;
    z-index: 12;
}

.menu-close {
    background: rgba(0, 123, 255, 0.1);
    border: none;
    font-size: 20px;
    color: #428180;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: #428180;
    color: white;
}

.nav-menu-divider {
    height: 2px !important;
    background: #f0f0f0 !important;
    margin: 0 0 30px 0 !important;
    border: none !important;
}

.nav-menu-links {
    margin-bottom: 40px;
}

.nav-menu .nav-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 20px;
    margin-bottom: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.nav-menu .nav-link:hover {
    color: #428180;
    background: rgba(0, 123, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(0, 123, 255, 0.2);
}

.nav-menu .nav-link.active {
    color: #428180;
    font-weight: 700;
    background: rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.3);
}

.nav-menu-actions {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.nav-menu-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 12px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-menu-btn.primary {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    color: white;
    box-shadow: 0 4px 12px rgba(66, 129, 128, 0.3);
}

.nav-menu-btn.primary:hover {
    background: linear-gradient(135deg, #1c4244 0%, #428180 35%, #28aa98 65%, #2dc0a8 100%);
    background-size: 200% 200%;
    animation: gradientShine 2s ease-in-out infinite;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 129, 128, 0.4);
}

.nav-menu-btn.secondary {
    background: transparent;
    color: #428180;
    border: 2px solid #428180;
}

.nav-menu-btn.secondary:hover {
    background: #428180;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
  .nav-menu {
        width: 100%;
        right: -100%;
    }
}

.nav-container {
    padding: 1rem 2rem;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu-logo .logo {
        height: 50px;
        max-width: 200px;
    }
    
    .nav-menu-container {
        padding: 1.5rem;
    }
    
    .nav-menu-links {
        max-width: 280px;
    }
    
    .nav-menu-actions {
        max-width: 280px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 4px 15px rgba(66, 129, 128, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 200, 200, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #428180;
    border: 2px solid #428180;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 2s ease-in-out infinite;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 129, 128, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    background: rgba(245, 245, 245, 0.7); backdrop-filter: blur(6px);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.highlight {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 500;
}

.hero-animation {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-lottie {
    width: 100%;
    height: 100%;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-animation {
        height: 300px;
    }
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    background: rgba(245, 245, 245, 0.7); backdrop-filter: blur(6px);
    text-align: center;
}

.page-hero-content h1 {
    margin-bottom: 1.5rem;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styling */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-label::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

/* Problem Section */
.problem-section {
    background: #f8f9ff;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    height: 80px;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    background: #428180;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.feature-text p {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-size: 1rem;
    margin: 0;
}

.solution-animation {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 968px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #428180;
}

.service-icon {
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    height: 100%;
    width: auto;
}

.service-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-link {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-link:hover {
    animation-duration: 1.5s;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 25%, #d0d0d0 50%, #b8b8b8 75%, #a0a0a0 100%);
    background-size: 200% 200%;
    animation: greyGradientShine 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.cta-section h2 {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #1c4244 0%, #428180 35%, #28aa98 65%, #2dc0a8 100%);
    background-size: 200% 200%;
    animation: gradientShine 2s ease-in-out infinite;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 129, 128, 0.4);
}

.cta-guarantee {
    margin-top: 1.5rem;
}

.cta-guarantee p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Premium Footer - System Rules Compliant */
.footer {
    background: linear-gradient(120deg, #f8f9fa 0%, #e3e8ee 100%);
    color: #333;
    padding: 100px 0 0;
    position: relative;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 8px 32px rgba(40, 170, 152, 0.07);
    border-radius: 0;
    overflow: hidden;
}

/* Footer Container */
.footer-container {
    width: 100%;
    max-width: none;
    padding: 0 4vw;
    margin: 0;
}

@media (max-width: 600px) {
    .footer-container {
        padding: 0 2vw;
    }
}

/* Footer Main Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    margin-bottom: 80px;
    align-items: start;
    padding: 40px 0 0 0;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Company Overview Column */
.footer-company {
    max-width: 350px;
}

.footer-logo {
    width: auto;
    max-width: 280px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Navigation Columns */
.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28aa98;
    margin-bottom: 20px;
    position: relative;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
}

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

.footer-nav-item {
    margin-bottom: 12px;
}

.footer-nav-link {
    color: #28aa98;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-weight: 500;
}

.footer-nav-link:hover {
    color: #2dc0a8;
    padding-left: 8px;
}

.footer-nav-link:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

/* Newsletter Column */
.footer-newsletter {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 28px 24px 32px 24px;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    border: 2px solid #28aa98;
    position: relative;
    overflow: hidden;
    max-width: 370px;
    margin: 0 auto;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
}

.footer-newsletter-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #28aa98;
    margin-bottom: 12px;
    text-align: center;
}

.footer-newsletter-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form-group {
    position: relative;
}

.footer-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.footer-form-input:focus {
    outline: none;
    border-color: #28aa98;
    box-shadow: 0 0 0 3px rgba(40, 170, 152, 0.1);
}

.footer-form-input.error {
    border-color: #dc3545;
}

.footer-form-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.footer-form-error.show {
    display: block;
}

.footer-submit-btn {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
}

.footer-submit-btn:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Newsletter Action Buttons */
.footer-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    justify-content: stretch;
    align-items: stretch;
}

.footer-action-btn {
    width: 100%;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
  text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.footer-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
}

.footer-action-btn:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn.primary {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: normal;
}

.footer-action-btn.primary:hover {
    background: linear-gradient(135deg, #2dc0a8, #28aa98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn.primary:focus {
    background: linear-gradient(135deg, #2dc0a8, #28aa98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn.secondary {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    box-shadow: none;
    font-weight: 600;
    letter-spacing: normal;
}

.footer-action-btn.secondary:hover {
    background: linear-gradient(135deg, #2dc0a8, #28aa98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn.secondary:focus {
    background: linear-gradient(135deg, #2dc0a8, #28aa98);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 170, 152, 0.3);
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-action-btn span {
    font-size: 1.25em;
    margin-right: 0.5em;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.footer-action-btn.primary:hover span, .footer-action-btn.primary:focus span {
    color: #fffbe7;
    text-shadow: 0 2px 8px rgba(40,170,152,0.18);
}

.footer-action-btn.secondary:hover span, .footer-action-btn.secondary:focus span {
    color: #28aa98;
    text-shadow: 0 1px 4px rgba(40,170,152,0.10);
}

@media (max-width: 600px) {
    .footer-newsletter {
        max-width: 100%;
        padding: 18px 6vw 22px 6vw;
    }
    .footer-action-btn {
        font-size: 0.98rem;
        padding: 14px 0;
    }
}

.footer-logo {
    max-width: 300px;
}

.footer-logo .logo {
    height: 65px;
    cursor: pointer;
    transition: all 0.3s ease;
  position: relative;
}

.footer-logo .logo:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: silverGlare 1.5s ease-in-out;
    pointer-events: none;
    z-index: 10;
}
    width: auto;
    max-width: 280px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.footer-logo p {
    color: #ccc;
    font-size: 1rem;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #428180;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

/* Legal Section */
.footer-legal {
    border-top: 1px solid #dee2e6;
    padding: 40px 0;
    background: #fff;
}

.footer-legal-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: #28aa98;
}

.footer-legal-link:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 170, 152, 0.3);
}

.back-to-top:focus {
    outline: 2px solid #28aa98;
    outline-offset: 2px;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* About Page Styles */
.story-section {
    background: #f8f9ff;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.story-animation {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.mission-animation {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-points {
    margin-top: 2rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.point-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.point-text h4 {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.point-text p {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-size: 1rem;
    margin: 0;
}

.values-section {
    background: #f8f9ff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    height: 80px;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-title {
    color: #428180;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 968px) {
    .story-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        justify-content: center;
    }
}

/* Services Page Styles */
.services-overview {
    padding: 0;
}

.service-detailed {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-icon-large img {
    width: 100%;
    height: 100%;
}

.service-title h2 {
    margin-bottom: 0.5rem;
}

.service-title p {
    color: #666;
    font-size: 1.25rem;
    margin: 0;
}

.service-content {
    display: grid;
    gap: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-category h4 {
    color: #428180;
    margin-bottom: 1rem;
}

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

.feature-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.feature-category li:last-child {
    border-bottom: none;
}

.feature-category li::before {
    content: '✓';
    color: #428180;
    font-weight: 600;
    margin-right: 0.5rem;
}

.service-results {
    display: flex;
    gap: 3rem;
    justify-content: center;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 15px;
}

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

.result-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #428180;
    display: block;
}

.result-stat .stat-label {
    color: #666;
    font-weight: 500;
}

.additional-services {
    background: #f8f9ff;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-service {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.additional-icon {
    height: 60px;
    margin-bottom: 1rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-number::before {
  content: '';
  position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.step-duration {
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-results {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Testimonials Page Styles */
.results-overview {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 25%, #d0d0d0 50%, #b8b8b8 75%, #a0a0a0 100%);
    background-size: 200% 200%;
    animation: greyGradientShine 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 60px 0;
}

.results-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.result-stat-large .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.result-stat-large .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.case-study {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-study-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.case-study-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.case-study-content.reverse .case-study-text {
    order: 2;
}

.case-study-content.reverse .case-study-animation {
    order: 1;
}

.case-study-header {
    margin-bottom: 2rem;
}

.case-study-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.case-study-industry {
    background: #428180;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.case-study-challenge,
.case-study-solution,
.case-study-results {
    margin-bottom: 2rem;
}

.case-study-challenge h4,
.case-study-solution h4,
.case-study-results h4 {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

.case-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.case-result {
    text-align: center;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 10px;
}

.result-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    display: block;
}

.result-label {
    font-size: 0.875rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 500;
}

.case-study-animation {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-section {
    background: #f8f9ff;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 25%, #d0d0d0 50%, #b8b8b8 75%, #a0a0a0 100%);
    background-size: 200% 200%;
    animation: greyGradientShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    color: white;
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    pointer-events: none;
}

.testimonial-card.featured blockquote {
    color: white;
    font-size: 1.25rem;
}

.testimonial-card.featured .author-info h4 {
    color: white;
}

.testimonial-card.featured .author-info p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.featured .company-size {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-size: 1.125rem;
    font-style: italic;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.author-info h4 {
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.author-info p {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.company-size {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
}

.industry-results {
    padding: 80px 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    height: 60px;
    margin-bottom: 1rem;
}

.industry-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
}

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

.industry-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    display: block;
}

.industry-stat .stat-label {
    font-size: 0.875rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 500;
}

@media (max-width: 968px) {
    .case-study-content,
    .case-study-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-study-content.reverse .case-study-text,
    .case-study-content.reverse .case-study-animation {
        order: unset;
    }
    
    .case-results-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 150px 0 80px;
    background: rgba(245, 245, 245, 0.7); backdrop-filter: blur(6px);
    text-align: center;
}

.contact-hero-content h1 {
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-weight: 600;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    margin-bottom: 1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #428180;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #428180;
    border-color: #428180;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.form-guarantee {
    text-align: center;
    margin-top: 1rem;
}

.form-guarantee p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
}

.success-animation {
    height: 100px;
    margin-bottom: 1rem;
}

.contact-info {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
}

.contact-animation {
    height: 200px;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-text h4 {
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.contact-text p {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin: 0;
}

.contact-testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #428180;
}

.contact-testimonial blockquote {
    font-style: italic;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-author strong {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
}

.testimonial-author span {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    font-size: 0.875rem;
}

.btn-loading {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #428180;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.faq-section {
    background: #f8f9ff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    margin: 0;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .contact-benefits {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Final Hero Section */
.hero-final {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container-final {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Desktop Layout */
.hero-desktop-final {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-mobile-final {
    display: none;
}

/* .attention-grabber-final removed */

.hero-headline-final {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.number-highlight-final {
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtext-final {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-cta-final {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-final, .btn-secondary-final {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-final {
    background: linear-gradient(135deg, #2dc0a8, #428180);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 192, 168, 0.3);
}

.btn-primary-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 192, 168, 0.4);
}

.btn-secondary-final {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-final:hover {
    background: white;
    color: #1a1a1a;
}

.video-player-final {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #2dc0a8, #428180);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.video-player-final:hover {
    transform: translateY(-10px);
}

.video-info-final {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
}

/* Mobile Layout */
/* .attention-grabber-mobile-final removed */

.hero-video-mobile-final {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.video-player-mobile-final {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 260px;
    background: linear-gradient(135deg, #2dc0a8, #428180);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.video-player-mobile-final:hover {
    transform: translateY(-5px);
}

.video-info-mobile-final {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-headline-mobile-final {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.number-highlight-mobile-final {
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext-mobile-final {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.4;
    text-align: center;
}

.hero-cta-mobile-final {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.btn-primary-mobile-final, .btn-secondary-mobile-final {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.btn-primary-mobile-final {
    background: linear-gradient(135deg, #2dc0a8, #428180);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 192, 168, 0.3);
}

.btn-secondary-mobile-final {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Responsive Breakpoints */
@media (max-width: 968px) {
    .hero-desktop-final {
        display: none;
    }
    
    .hero-mobile-final {
        display: block;
        text-align: center;
    }
    
    .hero-final {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-headline-mobile-final {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    
    .video-player-mobile-final {
        max-width: 448px;
        height: 308px;
    }
    
    .btn-primary-mobile-final, .btn-secondary-mobile-final {
        padding: 16px 30px;
        font-size: 1rem;
        max-width: 280px;
    }
}

/* Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* NZ Brands Slider Section */
.brands-slider-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.brands-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #428180 0%, #28aa98 50%, #2dc0a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.brands-slider {
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.brands-track {
    display: flex;
    animation: scrollLogos 40s linear infinite;
    gap: 40px;
    white-space: nowrap;
}

.brands-track::after {
    content: '';
    flex-shrink: 0;
    width: 40px;
}

.brand-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-item img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.brand-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 2)); }
}

/* Interactive Charts Section */
.charts-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

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

.chart-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.chart-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.chart-widget h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #428180 0%, #2dc0a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chart-container {
    height: 250px;
    margin-bottom: 20px;
    position: relative;
}

.chart-controls {
    margin-top: 20px;
}

.chart-controls label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.chart-controls input[type="range"] {
    width: 100%;
    margin-bottom: 15px;
}

.savings-display {
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.savings-amount {
    font-size: 1.2rem;
    font-weight: 700;
}

.talent-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #2dc0a8;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Productivity Widgets Section */
.widgets-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

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

.productivity-widget, .performance-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.productivity-widget:hover, .performance-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.productivity-widget h3, .performance-widget h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #428180 0%, #2dc0a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.productivity-meter {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f0f0f0;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-fill {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-percentage {
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.productivity-stats {
    display: flex;
    justify-content: space-between;
}

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

.prod-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.prod-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2dc0a8;
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.perf-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.perf-card:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    color: white;
}

.perf-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.perf-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.perf-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Roles Pricing Section */
.roles-pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.roles-pricing-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.roles-pricing-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #428180 0%, #28aa98 50%, #2dc0a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roles-pricing-section p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.role-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
  left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #428180, #2dc0a8);
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.role-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.role-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2dc0a8;
    margin-bottom: 20px;
}

.role-price span {
    font-size: 1rem;
    color: #666;
}

.role-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    color: #555;
}

.role-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2dc0a8;
    font-weight: bold;
}

.role-features li:last-child {
    border-bottom: none;
}

.hidden-role {
    display: none;
}

.show-more-container {
    text-align: center;
    margin-top: 40px;
}

.show-more-btn {
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 192, 168, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 192, 168, 0.4);
}

/* Complete Roles Pricing Section */
.complete-roles-pricing {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
}

.complete-roles-pricing .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.complete-roles-pricing h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #428180 0%, #28aa98 50%, #2dc0a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roles-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-role-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, #428180, #2dc0a8);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pricing-role-card .role-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.pricing-role-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.pricing-role-card .role-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2dc0a8;
    margin-bottom: 20px;
}

.pricing-role-card .role-price span {
    font-size: 1rem;
    color: #666;
}

.standard-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.standard-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    color: #555;
}

.standard-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2dc0a8;
    font-weight: bold;
}

.standard-features li:last-child {
    border-bottom: none;
}

.show-more-roles-container {
    text-align: center;
    margin-top: 40px;
}

.show-more-roles-btn {
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    color: white;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(45, 192, 168, 0.3);
}

.show-more-roles-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(45, 192, 168, 0.4);
}

/* Problem Reasons Styling */
.problem-reasons {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff4444;
}

.problem-reasons strong {
    color: #ff4444;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

.problem-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-reasons li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.problem-reasons li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .charts-grid, .widgets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brands-heading {
        font-size: 1.6rem;
    }
    
    .brand-item {
        width: 100px;
        height: 50px;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .roles-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .productivity-meter {
        width: 150px;
        height: 150px;
    }
    
    .problem-reasons {
        padding: 15px;
        margin-top: 15px;
    }
    
    .problem-reasons li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

@media (max-width: 576px) {
    .roles-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .complete-roles-pricing h2 {
        font-size: 2.2rem;
    }
    
    .brands-heading {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .pricing-role-card h3 {
        font-size: 1.2rem;
        min-height: 45px;
    }
}

/* Advanced Premium Sections - Critical CSS Missing */

/* Advanced Stats Section 1 */
.advanced-stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-particles::before {
    content: '';
    position: absolute;
  width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(40, 170, 152, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: floating-particles 20s linear infinite;
}

@keyframes floating-particles {
    0% { transform: translateY(100vh); }
    100% { transform: translateY(-100vh); }
}

.stats-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.performance-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 170, 152, 0.2);
    border: 1px solid rgba(40, 170, 152, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-badge 2s infinite;
}

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

.badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #28aa98;
}

.stats-headline {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #28aa98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.stats-subheading {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.live-metrics-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.metric-data {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 900;
    color: #28aa98;
    line-height: 1;
}

.metric-unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: #28aa98;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.metric-trend {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 600;
}

.metric-trend.positive {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff88;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.dashboard-widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  height: 2px;
    background: linear-gradient(90deg, transparent, #28aa98, transparent);
}

.dashboard-widget:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.widget-subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Advanced Cost Section */
.advanced-cost-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.section-background {
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float-icon 8s ease-in-out infinite;
}

.float-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.float-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.float-icon:nth-child(4) { top: 40%; right: 30%; animation-delay: 6s; }

@keyframes float-icon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.2; }
}

.cost-hero {
    text-align: center;
    margin-bottom: 80px;
}

.shock-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 0, 0, 0); }
}

.alert-icon {
    font-size: 1.2rem;
}

.alert-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff0000;
}

.cost-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.cost-subheading {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-dashboard {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.calculator-widget {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(40, 170, 152, 0.2);
}

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

.calculator-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.calculator-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.input-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.input-group label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.premium-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(40, 170, 152, 0.3);
    border: 2px solid #fff;
}

.input-display {
    font-weight: 900;
    font-size: 1.5rem;
    color: #28aa98;
    margin-top: 15px;
}

.results-section {
    background: rgba(40, 170, 152, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(40, 170, 152, 0.2);
}

.cost-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.cost-card {
    text-align: center;
    padding: 25px;
    border-radius: 16px;
    min-width: 180px;
}

.local-cost {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.our-cost {
    background: rgba(40, 170, 152, 0.1);
    border: 2px solid rgba(40, 170, 152, 0.3);
}

.cost-amount {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1;
}

.local-cost .cost-amount { color: #ff0000; }
.our-cost .cost-amount { color: #28aa98; }

.comparison-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.arrow-icon {
    font-size: 2rem;
    color: #28aa98;
    font-weight: 900;
}

.savings-result {
    text-align: center;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(40, 170, 152, 0.3);
}

.savings-amount {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 10px;
}

/* Case Study Section */
.advanced-case-study {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.case-study-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 170, 152, 0.2);
    border: 1px solid rgba(40, 170, 152, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.case-study-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #28aa98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.case-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-tab {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.case-tab.active,
.case-tab:hover {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    transform: translateY(-2px);
}

.case-tab-content {
    display: none;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-tab-content.active {
    display: block;
}

/* Customer Service Page Styles */
.cs-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cs-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 170, 152, 0.2);
    border: 1px solid rgba(40, 170, 152, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cs-badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #28aa98;
}

.cs-hero-headline {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #28aa98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cs-hero-subtext {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cs-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cs-btn-primary, .cs-btn-secondary {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cs-btn-primary {
    background: linear-gradient(135deg, #2dc0a8, #428180);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 192, 168, 0.3);
}

.cs-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 192, 168, 0.4);
}

.cs-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cs-btn-secondary:hover {
    background: white;
    color: #1a1a1a;
}

.cs-hero-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cs-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Problem Section */
.cs-problem {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.cs-problem-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cs-warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: pulse-warning 2s infinite;
}

.cs-warning-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff0000;
}

.cs-problem-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-align: center;
}

.cs-problem-subtext {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cs-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.cs-pain-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #ff4444;
}

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

.cs-pain-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cs-pain-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cs-pain-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cs-pain-stat {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Cost Calculator */
.cs-cost-calculator {
    background: rgba(40, 170, 152, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(40, 170, 152, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.cs-calc-header h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.cs-calc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cs-calc-input {
    text-align: center;
}

.cs-calc-input label {
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cs-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 15px;
}

.cs-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(40, 170, 152, 0.3);
    border: 2px solid #fff;
}

.cs-display {
    font-weight: 900;
    font-size: 1.2rem;
    color: #28aa98;
}

.cs-calc-breakdown {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cs-calc-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cs-calc-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #28aa98;
    color: #1a1a1a;
}

.cs-calc-savings {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    margin-top: 20px;
}

.cs-savings-amount {
    font-size: 1.8rem;
    font-weight: 900;
}

/* Solution Section */
.cs-solution {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.cs-solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 170, 152, 0.2);
    border: 1px solid rgba(40, 170, 152, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.cs-solution-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #28aa98;
}

.cs-solution-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
    line-height: 1.1;
}

.cs-solution-subtext {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cs-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.cs-offer-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.cs-offer-card.featured {
    border-color: #28aa98;
    transform: scale(1.05);
}

.cs-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.cs-offer-badge {
    position: absolute;
    top: -15px;
  left: 50%;
  transform: translateX(-50%);
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
  color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cs-offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.cs-offer-price {
    text-align: center;
    margin-bottom: 10px;
}

.cs-price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #28aa98;
}

.cs-price-currency, .cs-price-period {
    font-size: 1.2rem;
    color: #666;
}

.cs-offer-savings {
    text-align: center;
    color: #28aa98;
    font-weight: 600;
    margin-bottom: 30px;
}

.cs-offer-features {
    margin-bottom: 30px;
}

.cs-feature {
    padding: 8px 0;
    color: #333;
    font-size: 0.95rem;
}

.cs-offer-btn {
    display: block;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cs-offer-btn:hover {
  transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 170, 152, 0.3);
}

.cs-offer-btn.secondary {
    background: transparent;
    color: #28aa98;
    border: 2px solid #28aa98;
}

.cs-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cs-benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(40, 170, 152, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(40, 170, 152, 0.2);
}

.cs-benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cs-benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.cs-benefit-desc {
    color: #666;
    font-size: 0.95rem;
}

/* Social Proof Section */
.cs-social-proof {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cs-proof-header {
    text-align: center;
    margin-bottom: 80px;
}

.cs-proof-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #28aa98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.cs-proof-subtext {
    font-size: 1.4rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.cs-testimonials {
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
}

.cs-testimonial {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cs-testimonial.active {
    display: block;
}

.cs-testimonial-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
}

.cs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cs-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #28aa98;
}

.cs-author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28aa98;
}

.cs-author-title {
    font-size: 1rem;
    opacity: 0.8;
}

.cs-author-company {
    font-size: 0.9rem;
    opacity: 0.6;
}

.cs-testimonial-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

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

.cs-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #28aa98;
    display: block;
}

.cs-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cs-testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 80px;
}

.cs-control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.cs-control-btn.active {
    background: #28aa98;
    transform: scale(1.2);
}

.cs-trust-logos {
    text-align: center;
}

.cs-trust-header h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cs-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cs-trust-logo {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

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

/* How It Works Section */
.cs-how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cs-works-header {
    text-align: center;
    margin-bottom: 80px;
}

.cs-works-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.1;
}

.cs-works-subtext {
    font-size: 1.4rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.cs-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.cs-step {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #28aa98;
}

.cs-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.cs-step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.cs-step-icon {
    margin-bottom: 20px;
}

.cs-step-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.cs-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cs-step-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cs-step-benefit {
    background: rgba(40, 170, 152, 0.1);
    color: #28aa98;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.cs-works-cta {
    text-align: center;
    background: rgba(40, 170, 152, 0.05);
    padding: 60px 40px;
    border-radius: 24px;
    border: 2px solid rgba(40, 170, 152, 0.2);
}

.cs-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cs-cta-text {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.cs-cta-btn {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cs-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(40, 170, 152, 0.3);
}

/* Features Section */
.cs-features {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.cs-features-header {
    text-align: center;
    margin-bottom: 80px;
}

.cs-features-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.1;
}

.cs-features-subtext {
    font-size: 1.4rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.cs-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.cs-feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #28aa98;
}

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

.cs-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.cs-feature-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cs-feature-highlight {
    background: rgba(40, 170, 152, 0.1);
    color: #28aa98;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.cs-comparison-table {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.cs-comparison-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.cs-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: white;
    min-width: 600px;
}

.cs-table th,
.cs-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.cs-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 10;
}

.cs-table-highlight {
    background: rgba(40, 170, 152, 0.1) !important;
    color: #28aa98 !important;
    font-weight: 700 !important;
}

.cs-table tbody tr:hover {
    background: rgba(40, 170, 152, 0.05);
}

.cs-table tbody tr:hover .cs-table-highlight {
    background: rgba(40, 170, 152, 0.15) !important;
}

@media (max-width: 768px) {
    .cs-comparison-table {
        padding: 20px 15px;
        margin: 20px 0;
        border-radius: 16px;
    }

    .cs-comparison-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .cs-table-wrapper {
        margin: 0;
        border-radius: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cs-table {
        font-size: 0.85rem;
        min-width: 500px;
    }

    .cs-table th,
    .cs-table td {
        padding: 12px 15px;
        white-space: nowrap;
    }

    .cs-table th {
        font-size: 0.85rem;
        font-weight: 600;
        background: #f8f9fa;
        position: sticky;
        left: 0;
        z-index: 10;
    }

    .cs-table th:first-child {
        position: sticky;
        left: 0;
        background: #f8f9fa;
        z-index: 20;
    }

    .cs-table td:first-child {
        position: sticky;
        left: 0;
        background: white;
        z-index: 5;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .cs-comparison-table {
        padding: 15px 10px;
        margin: 15px 0;
    }

    .cs-comparison-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .cs-table {
        font-size: 0.8rem;
        min-width: 450px;
    }

    .cs-table th,
    .cs-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .cs-table th {
        font-size: 0.8rem;
    }
}

/* Pricing Section */
.cs-pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
    color: white;
  position: relative;
    overflow: hidden;
}

.cs-pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.cs-pricing-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #28aa98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.cs-pricing-subtext {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cs-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.cs-toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

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

.cs-toggle-slider {
  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: 30px;
}

.cs-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cs-toggle-slider {
    background-color: #28aa98;
}

input:checked + .cs-toggle-slider:before {
    transform: translateX(30px);
}

.cs-toggle-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.cs-toggle-save {
    background: #28aa98;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 8px;
}

.cs-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.cs-pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.cs-pricing-card.featured {
    border-color: #28aa98;
    transform: scale(1.05);
    background: rgba(40, 170, 152, 0.1);
}

.cs-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cs-pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.cs-pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
}

.cs-pricing-price {
    text-align: center;
    margin-bottom: 10px;
}

.cs-pricing-desc {
    text-align: center;
    opacity: 0.8;
    margin-bottom: 30px;
}

.cs-pricing-features {
    margin-bottom: 30px;
}

.cs-pricing-feature {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cs-pricing-btn {
    display: block;
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cs-pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 170, 152, 0.3);
}

.cs-pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.cs-guarantee-icon {
    font-size: 2rem;
}

.cs-guarantee-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #28aa98;
}

.cs-guarantee-text {
    opacity: 0.9;
    line-height: 1.5;
}

/* Guarantee Section */
.cs-guarantee {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cs-guarantee-header {
    text-align: center;
    margin-bottom: 80px;
}

.cs-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.cs-guarantee-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #28aa98;
}

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

.cs-guarantee-number {
    font-size: 4rem;
    font-weight: 900;
    color: #28aa98;
    margin-bottom: 10px;
    line-height: 1;
}

.cs-guarantee-cta {
    text-align: center;
    background: rgba(40, 170, 152, 0.05);
    padding: 60px 40px;
    border-radius: 24px;
    border: 2px solid rgba(40, 170, 152, 0.2);
}

.cs-guarantee-btn {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 20px;
}

.cs-guarantee-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(40, 170, 152, 0.3);
}

.cs-guarantee-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ Section */
.cs-faq {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cs-faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.cs-faq-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.1;
}

.cs-faq-subtext {
    font-size: 1.4rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.cs-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.cs-faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cs-faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cs-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.cs-faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.cs-faq-icon {
    font-size: 1.5rem;
    color: #28aa98;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* FAQ answer hidden by default */
.cs-faq-answer {
    display: none;
}

/* FAQ answer shown when active */
.cs-faq-item.active .cs-faq-answer {
    display: block;
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
    background: rgba(40, 170, 152, 0.05);
}

/* Final CTA Section */
.cs-final-cta {
    padding: 120px 0 320px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cs-final-header {
    text-align: center;
    margin-bottom: 60px;
}

.cs-final-headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #28aa98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.cs-final-subtext {
    font-size: 1.4rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.cs-final-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
}

.cs-final-stat {
    text-align: center;
}

.cs-final-form {
    max-width: 600px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.cs-form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #28aa98;
}

.cs-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cs-form-input,
.cs-form-select {
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cs-form-input:focus,
.cs-form-select:focus {
    outline: none;
    border-color: #28aa98;
    box-shadow: 0 0 0 2px rgba(40, 170, 152, 0.2);
}

.cs-form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cs-form-submit {
    background: linear-gradient(135deg, #28aa98, #2dc0a8);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cs-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 170, 152, 0.3);
}

.cs-form-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 15px;
}

.cs-final-guarantee {
    text-align: center;
}

.cs-guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cs-badge {
    background: rgba(40, 170, 152, 0.2);
    color: #28aa98;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(40, 170, 152, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-company {
    max-width: none;
    }
    
    .footer-newsletter {
        padding: 25px;
    }
    
    .footer-legal-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-legal-links {
        justify-content: center;
        gap: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-newsletter {
        padding: 25px 20px;
    }
    
    .footer-action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile Responsive for Customer Service */
@media (max-width: 768px) {
    .cs-hero-headline {
        font-size: 2.5rem;
    }
    
    .cs-problem-headline,
    .cs-solution-headline,
    .cs-proof-headline,
    .cs-works-headline,
    .cs-features-headline,
    .cs-pricing-headline,
    .cs-faq-headline,
    .cs-final-headline {
        font-size: 2.5rem;
    }
    
    .cs-calc-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cs-offer-grid {
        grid-template-columns: 1fr;
    }
    
    .cs-offer-card.featured {
        transform: none;
    }
    
    .cs-final-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cs-form-row {
        grid-template-columns: 1fr;
    }
    
    .cs-guarantee-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cs-testimonial-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cs-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .cs-trust-logo {
        height: 30px;
    }
}

/* Mobile Responsive for Advanced Sections */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .live-metrics-bar {
        flex-direction: column;
        gap: 30px;
    }
    
    .calculator-interface {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cost-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .stats-headline,
    .cost-headline,
    .case-study-headline {
        font-size: 2.5rem;
    }
    
    .case-nav-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Sabri Suby Style Hero Section */

/* Hero Suby Layout */
.hero-suby {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f3f4 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Desktop Layout */
.hero-desktop {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-mobile {
    display: none;
}

.hero-content-left {
    padding-right: 40px;
}

.hero-main-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 50px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.hero-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 420px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    color: white;
    padding: 22px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(45, 192, 168, 0.25);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(45, 192, 168, 0.35);
}

.hero-btn-secondary {
    background: transparent;
    color: #428180;
    padding: 22px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    border: 3px solid #428180;
    border-radius: 60px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.hero-btn-secondary:hover {
    background: #428180;
    color: white;
    transform: translateY(-3px);
}

.hero-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-player {
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 380px;
    background: linear-gradient(135deg, #1c4244 0%, #428180 50%, #2dc0a8 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    overflow: hidden;
}

.hero-video-player:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.video-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-meta {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-time {
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.video-text {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    font-family: 'Inter', sans-serif;
}
.hero-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 25%, #f5f5f5 50%, #f0f0f0 75%, #eeeeee 100%);
    animation: heroGradientShift 8s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
    padding: 0;
  }



@keyframes heroGradientShift {
    0% { background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 25%, #f5f5f5 50%, #f0f0f0 75%, #eeeeee 100%); }
    100% { background: linear-gradient(135deg, #eeeeee 0%, #f0f0f0 25%, #f5f5f5 50%, #f8f8f8 75%, #ffffff 100%); }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    min-height: 70vh;
}

.hero-video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1c4244 0%, #428180 50%, #2dc0a8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(28, 66, 68, 0.15);
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.video-play-button {
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-play-button {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.video-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.video-duration {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 160px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}

/* Number Highlight with Animation */
.number-highlight {
    position: relative;
    background: linear-gradient(135deg, #428180 0%, #28aa98 50%, #2dc0a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.number-highlight::after {
    content: none;
}

@keyframes curlyUnderlineDraw {
    0%, 80% { 
        transform: scaleX(0) translateX(0%) rotate(-1deg);
        transform-origin: left center;
        opacity: 0;
    }
    10%, 70% { 
        transform: scaleX(1) translateX(0%) rotate(-1deg);
        transform-origin: left center;
        opacity: 1;
    }
}

/* Four Grid Layout */
.four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Five Grid Layout */
.five-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* Enhanced Problem Cards */
.problem-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.problem-card:hover::before {
    animation: shineEffect 0.6s ease-in-out;
}

@keyframes shineEffect {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

.problem-card h3 {
    background: linear-gradient(135deg, #428180 0%, #28aa98 50%, #2dc0a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 16px 0 12px;
    font-size: 18px;
    font-weight: 600;
}

.problem-card p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

/* Problem Section */
.problem-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 25%, #f6f6f6 50%, #f2f2f2 75%, #efefef 100%);
    animation: problemGradientShift 10s ease-in-out infinite alternate;
}



@keyframes problemGradientShift {
    0% { background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 25%, #f6f6f6 50%, #f2f2f2 75%, #efefef 100%); }
    100% { background: linear-gradient(135deg, #efefef 0%, #f2f2f2 25%, #f6f6f6 50%, #f9f9f9 75%, #ffffff 100%); }
}

/* Solutions Section */
.solutions-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 25%, #f7f7f7 50%, #f3f3f3 75%, #f1f1f1 100%);
    animation: solutionsGradientShift 12s ease-in-out infinite alternate;
}



@keyframes solutionsGradientShift {
    0% { background: linear-gradient(135deg, #ffffff 0%, #fafafa 25%, #f7f7f7 50%, #f3f3f3 75%, #f1f1f1 100%); }
    100% { background: linear-gradient(135deg, #f1f1f1 0%, #f3f3f3 25%, #f7f7f7 50%, #fafafa 75%, #ffffff 100%); }
}

.solution-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.solution-card:hover::before {
    animation: shineEffect 0.6s ease-in-out;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.solution-card h3 {
    background: linear-gradient(135deg, #428180 0%, #28aa98 50%, #2dc0a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 16px 0 12px;
    font-size: 18px;
    font-weight: 600;
}

.solution-card p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.solution-icon {
    margin-bottom: 16px;
}

/* Mobile Styles for Hero */
.hero-mobile-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 40px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.hero-mobile-video {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.mobile-video-player {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 280px;
    background: linear-gradient(135deg, #1c4244 0%, #428180 50%, #2dc0a8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.mobile-video-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.mobile-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.mobile-video-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.mobile-video-meta {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-video-time {
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.mobile-video-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    font-family: 'Inter', sans-serif;
}

.hero-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 100%;
    margin: 40px auto 0;
}

.mobile-btn-primary {
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    color: white;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 192, 168, 0.25);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.mobile-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45, 192, 168, 0.35);
}

.mobile-btn-secondary {
    background: transparent;
    color: #428180;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid #428180;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.mobile-btn-secondary:hover {
    background: #428180;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .five-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .four-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 30px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-video-section {
        order: 2;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .hero-video-section {
        order: 2;
        margin: 20px 0;
    }
    
    .video-placeholder {
        max-width: 400px;
        width: 100%;
    }
    
    .hero-buttons {
        order: 3;
        align-items: center;
        gap: 12px;
        margin-top: 30px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .five-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .four-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .five-grid {
        grid-template-columns: 1fr;
    }
    
    .four-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content-wrapper {
        padding: 40px 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    
    .video-placeholder {
        max-width: 350px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        max-width: 280px;
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* Footer Contact Buttons */
.footer-contact-buttons {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-btn.primary {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    background-size: 200% 200%;
    animation: gradientShine 3s ease-in-out infinite;
    color: white;
    box-shadow: 0 4px 15px rgba(66, 129, 128, 0.3);
}

.footer-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 129, 128, 0.4);
    background-size: 150% 150%;
}

.footer-btn.secondary {
    background: transparent;
    color: #428180;
    border-color: #428180;
}

.footer-btn.secondary:hover {
    background: #428180;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 129, 128, 0.3);
}

@media (max-width: 768px) {
    .footer-contact-buttons {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }
    
    .footer-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .footer-container {
        padding: 0 2vw;
    }
}

.number-highlight::after {
    content: none;
}

.number-highlight-final {
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.number-highlight-mobile-final {
    background: linear-gradient(135deg, #2dc0a8 0%, #428180 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.number-highlight::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.number-highlight-final::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.number-highlight-mobile-final::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-headline-final::after,
.hero-headline-mobile-final::after,
.hero-final::after,
.hero-container-final::after,
.hero-desktop-final::after,
.hero-mobile-final::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Logo styling - non-clickable */
.nav-logo img,
.nav-menu-logo img,
.footer-logo {
    cursor: default;
    pointer-events: none;
}

.nav-logo img:hover,
.nav-menu-logo img:hover,
.footer-logo:hover {
    transform: none;
    opacity: 1;
}

/* Remove any existing logo hover effects */
.nav-logo .logo:hover::before {
    display: none;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 4rem 0;
    background: #f8f9ff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--color-primary-mid2);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    color: var(--color-primary-mid2);
    font-weight: 600;
}

.pricing-amount .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary-mid2);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-left: 0.5rem;
}

.pricing-description {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features .feature {
    padding: 0.5rem 0;
    color: var(--color-text-primary);
    font-size: 0.9rem;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary-start) 0%, var(--color-primary-mid1) 35%, var(--color-primary-mid2) 65%, var(--color-primary-end) 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 192, 168, 0.3);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Enhanced Cost Calculator */
.cs-cost-calculator {
    background: rgba(40, 170, 152, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(40, 170, 152, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.cs-calc-header h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.cs-calc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.cs-calc-input h4 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cs-input-group {
    margin-bottom: 30px;
}

.cs-input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.cs-number-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    background: white;
    transition: all 0.3s ease;
}

.cs-number-input:focus {
    outline: none;
    border-color: #28aa98;
    box-shadow: 0 0 0 3px rgba(40, 170, 152, 0.1);
}

.cs-roles-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-role-input {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.cs-role-input label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.cs-role-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cs-hours-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    background: white;
    transition: all 0.3s ease;
}

.cs-hours-input:focus {
    outline: none;
    border-color: #28aa98;
    box-shadow: 0 0 0 3px rgba(40, 170, 152, 0.1);
}

.cs-calc-breakdown h4,
.cs-calc-savings h4 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.cs-calc-breakdown {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.cs-calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cs-calc-item:last-child {
    border-bottom: none;
}

.cs-calc-label {
    font-weight: 600;
    color: #666;
}

.cs-calc-amount {
    font-weight: 700;
    color: #1a1a1a;
}

.cs-calc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-top: 15px;
    border-top: 2px solid #28aa98;
    font-weight: 800;
    font-size: 1.1rem;
}

.cs-calc-total .cs-calc-label {
    color: #1a1a1a;
}

.cs-calc-total .cs-calc-amount {
    color: #ff4444;
}

.cs-calc-savings {
    background: linear-gradient(135deg, rgba(40, 170, 152, 0.1), rgba(45, 192, 168, 0.1));
    padding: 25px;
    border-radius: 16px;
    border: 2px solid rgba(40, 170, 152, 0.3);
}

.cs-savings-text {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.cs-savings-amount {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #28aa98;
    margin-bottom: 20px;
}

.cs-savings-highlight {
    background: rgba(40, 170, 152, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.cs-savings-label {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.cs-savings-total {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #28aa98;
}

.cs-savings-percent {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

.cs-savings-breakdown h5 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 700;
}

.cs-savings-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.cs-savings-item {
    background: white;
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cs-savings-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cs-savings-period {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-savings-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #28aa98;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .cs-calc-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cs-role-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .cs-savings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .cs-savings-item {
        padding: 10px 6px;
    }
    
    .cs-savings-value {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .cs-comparison-table {
        padding: 15px;
        margin: 0;
        border-radius: 12px;
    }

    .cs-comparison-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .cs-table-wrapper {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .cs-table {
        font-size: 0.85rem;
        display: grid;
        grid-template-columns: minmax(120px, auto) repeat(2, minmax(80px, 1fr));
        gap: 0;
        border-collapse: collapse;
        width: 100%;
    }

    .cs-table th,
    .cs-table td {
        padding: 8px;
        border: 1px solid #f0f0f0;
        min-width: auto;
        white-space: normal;
        hyphens: auto;
        word-break: break-word;
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .cs-table th {
        font-size: 0.85rem;
        font-weight: 600;
        background: #f8f9fa;
    }

    .cs-table th:first-child {
        position: sticky;
        left: 0;
        background: #f8f9fa;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .cs-comparison-table {
        padding: 10px;
    }

    .cs-comparison-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .cs-table {
        font-size: 0.75rem;
        grid-template-columns: minmax(100px, auto) repeat(2, minmax(70px, 1fr));
    }

    .cs-table th,
    .cs-table td {
        padding: 6px;
        font-size: 0.75rem;
    }

    .cs-table th {
        font-size: 0.75rem;
    }
}

/* Contact Form Styles */
.cs-form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-form-section h4 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
    font-weight: 600;
}

.cs-role-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-end;
}

.cs-role-input-group,
.cs-hours-input-group {
    flex: 1;
}

.cs-role-input-group label,
.cs-hours-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
}

.cs-form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid var(--color-primary-mid1);
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    font-weight: 600;
    background-clip: padding-box;
    /* Blue/teal gradient text */
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.cs-form-input:focus {
    outline: none;
    border-color: #2dc0a8;
    box-shadow: 0 0 0 3px rgba(45, 192, 168, 0.1);
}

.cs-form-input::placeholder {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
}

.cs-textarea-group {
    margin-bottom: 1.5rem;
}

.cs-textarea-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
}

.cs-form-textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px 20px;
    border: 1.5px solid var(--color-primary-mid1);
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    font-weight: 600;
    resize: vertical;
    background-clip: padding-box;
    /* Blue/teal gradient text */
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.cs-form-textarea:focus {
    outline: none;
    border-color: #2dc0a8;
    box-shadow: 0 0 0 3px rgba(45, 192, 168, 0.1);
}

.cs-form-textarea::placeholder {
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
}

.cs-selection-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-end;
}

.cs-selection-group {
    flex: 1;
}

.cs-selection-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
}

.cs-form-select, .cs-selection-group select {
    width: 100%;
    min-width: 180px;
    max-width: 320px;
    padding: 15px 20px;
    border: 1.5px solid var(--color-primary-mid1);
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    font-weight: 600;
    background-clip: padding-box;
    /* Blue/teal gradient text */
    background: linear-gradient(135deg, #428180 0%, #28aa98 35%, #2dc0a8 65%, #1c4244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cs-form-select:focus, .cs-selection-group select:focus {
    outline: none;
    border-color: #2dc0a8;
    box-shadow: 0 0 0 2px rgba(45, 192, 168, 0.15);
}

@media (max-width: 768px) {
    .cs-form-select, .cs-selection-group select {
        min-width: 100%;
        max-width: 100%;
    }
}
