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

:root {
    /* Renovex inspired color palette - Light, modern theme */
    --primary-color: #f97316;
    --secondary-color: #ea580c;
    --accent-color: #fb923c;
    --text-dark: #1f2937;
    --text-dark-secondary: #374151;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-section: #f8f9fa;
    --border-color: #e5e7eb;
    --border-dark: #d1d5db;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 25px 70px rgba(0, 0, 0, 0.15);
    --success-color: #10b981;
    --error-color: #ef4444;
    --accent-glow: rgba(249, 115, 22, 0.12);
    --metallic: #1f2937;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.75;
    overflow-x: hidden;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
}

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

.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10001;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reading-progress.visible {
    opacity: 1;
}

.reading-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 95, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--success-color);
    color: white;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo-link:hover {
    opacity: 0.8;
}

.nav-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

/* Hero Section - Premium B2B Style */
.hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow: visible;
    background: #0a0a0a;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
}

.hero::before {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(10, 10, 10, 0.3) 100%);
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 68vh;
    justify-content: center;
}

.hero-content {
    position: relative;
    text-align: left;
    color: white;
    animation: fadeInUp 1s ease-out;
    max-width: 750px;
    z-index: 10;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(251, 191, 36, 0.15);
    border-left: 3px solid #fbbf24;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fbbf24;
    font-family: 'Space Grotesk', sans-serif;
    width: fit-content;
}

.hero-badge-square {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    display: block;
    flex-shrink: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    max-width: 100%;
    letter-spacing: -2px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 680px;
    padding: 0;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.2px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.75rem;
    background: #f97316;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.0625rem;
    border: none;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
    position: relative;
    z-index: 11;
}

.cta-button.primary {
    background: #f97316;
    color: #0a0a0a;
}

.cta-button.primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.cta-button.primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button.primary:hover svg {
    transform: translateX(4px);
}

.cta-button.video-button {
    width: 60px;
    height: 60px;
    padding: 0;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-button.video-button svg {
    width: 24px;
    height: 24px;
    margin-left: 2px;
}

.cta-button.video-button:hover {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Hero Stats Section */
.hero-stats-section {
    position: relative;
    background: var(--bg-section);
    margin-top: -80px;
    padding-top: 80px;
    padding-bottom: 40px;
    z-index: 5;
}

.hero-stats-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Stats Cards */
.hero-stats-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0;
}

.hero-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.6);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 160px;
    z-index: 5;
}

.hero-stat-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-stat-card-image {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
    border-radius: 0 20px 20px 0;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.hero-stat-card .stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

/* Hero Experience Badge */
.hero-experience-badge {
    position: absolute;
    top: 100px;
    right: 80px;
    z-index: 5;
    opacity: 0.9;
}

.experience-badge-content {
    width: 120px;
    height: 120px;
    background: #1a1a1a;
    border: 2px solid #fbbf24;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.experience-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.experience-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    font-family: 'Space Grotesk', sans-serif;
}

/* About Section */
.about {
    background: var(--bg-white);
    padding: 4rem 0;
    color: var(--text-dark);
}

.about-intro-wrapper {
    margin-bottom: 2rem;
}

.about-intro-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro-content .section-title {
    margin-bottom: 1rem;
    text-align: center;
}

.about .intro-text {
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
}

.about .intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark-secondary);
    margin-bottom: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-carousel + .about-features-wrapper {
    margin-top: 1rem;
}

/* About Section Rows */
.about-section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-section-row.reverse {
    direction: rtl;
}

.about-section-row.reverse > * {
    direction: ltr;
}

.about-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-text-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
}

.about-text-block p {
    font-size: 1.1rem;
    color: var(--text-dark-secondary);
    line-height: 1.75;
    margin: 0;
    text-align: left;
}

.about-image-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.about-image-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.about-features-wrapper {
    margin-top: 0;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    border-top: 1px solid var(--border-color);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    font-family: 'Space Grotesk', sans-serif;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text > p {
    font-size: 1.1rem;
    color: var(--text-dark-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text > p:first-child {
    margin-top: 0;
}

.about-text > p:last-of-type {
    margin-bottom: 2.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.about-feature .icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.about-feature > div {
    flex: 1;
}

.about-feature h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    text-align: left;
    letter-spacing: -0.3px;
    font-family: 'Space Grotesk', sans-serif;
}

.about-feature p {
    color: var(--text-dark-secondary);
    margin: 0;
    line-height: 1.85;
    text-align: left;
    font-size: 1.05rem;
}

/* Section Styles - Renovex Style */
section {
    padding: 4rem 0;
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.2px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

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

/* Problem & Solution Section */
.problem-solution {
    background: var(--bg-section);
    color: var(--text-dark);
    position: relative;
    padding: 4rem 0;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.problem-solution-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.problem-solution-images {
    position: relative;
    height: 600px;
}

.problem-solution-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.problem-solution-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problem-solution-overlay-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 6px solid white;
}

.problem-solution-overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.problem-solution-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-solution-content .section-title {
    text-align: left;
    margin-bottom: 0;
    margin-top: 0;
}

.problem-solution-content .intro-text {
    max-width: 100%;
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark-secondary);
    line-height: 1.85;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary-color);
    border-right: 1px solid rgba(229, 231, 235, 0.6);
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    border-left: 1px solid rgba(229, 231, 235, 0.6);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--primary-color);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.feature-card.warning {
    border-top-color: #f59e0b;
}

.feature-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    border-radius: 24px 24px 0 0;
}

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

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

.feature-icon {
    width: 70px;
    height: 70px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding: 0 2.5rem;
    padding-top: 0;
    margin-top: -0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.feature-card.warning .feature-icon {
    color: #f59e0b;
}

.feature-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
    padding: 0 2.5rem;
}

.feature-card p {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    font-size: 1rem;
    padding: 0 2.5rem 2.5rem;
}

/* Products Section */
.products {
    background: var(--bg-white);
    color: var(--text-dark);
    position: relative;
    padding: 4rem 0;
}

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

.products .section-title {
    margin-bottom: 1rem;
}

.products .intro-text {
    margin-top: 0;
    margin-bottom: 2rem;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.products-grid {
    display: flex;
    gap: 3rem;
}

.product-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(229, 231, 235, 0.6);
}

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

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

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

.product-card > .product-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin: 0;
    padding: 0;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.45);
    border: 4px solid white;
    z-index: 2;
    transition: all 0.4s ease;
}

.product-card > h3,
.product-card > p {
    padding: 0 2.5rem;
}

.product-card > h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-card > p {
    padding-bottom: 2.5rem;
    margin: 0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.product-card:hover .product-number {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.5);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.product-card p {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Process Section */
.process {
    background: var(--bg-white);
    color: var(--text-dark);
}

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

.process .section-title {
    margin-bottom: 1rem;
}

.process .section-subtitle {
    margin-bottom: 0.5rem;
}

.process .intro-text {
    margin-top: 0;
    margin-bottom: 2rem;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.process-carousel .process-timeline::before {
    display: none;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(229, 231, 235, 0.4);
}

.process-image {
    width: 320px;
    height: 240px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--bg-section);
    position: relative;
}

.process-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    z-index: 1;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
    display: block;
}

.process-step:hover .process-image {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.25);
}

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

.process-step:hover {
    background: rgba(249, 115, 22, 0.05);
    transform: translateX(4px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.process-content {
    flex: 1;
    padding-top: 0.5rem;
}

.process-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.process-content p {
    color: var(--text-dark-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

.process-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.process-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

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

.process-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.process-cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.process-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.process-cta-button:hover svg {
    transform: translateX(4px);
}

.process-cta-button span {
    position: relative;
    z-index: 1;
}

/* Trust CTA Section */
.trust-cta {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem 0;
}

.trust-cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.trust-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.trust-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.trust-cta-button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.trust-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.trust-cta-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .trust-cta {
        padding: 2rem 0;
    }
    
    .trust-cta-title {
        font-size: 1.5rem;
    }
    
    .trust-cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Applications Section */
.applications {
    background: var(--bg-section);
    padding: 4rem 0;
    color: var(--text-dark);
    position: relative;
}

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

.applications .section-title {
    margin-bottom: 1rem;
}

.applications .intro-text {
    margin-top: 0;
    margin-bottom: 2rem;
}

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

.application-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(229, 231, 235, 0.6);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.application-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.application-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    position: relative;
    flex-shrink: 0;
}

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

.application-item:hover .application-image img {
    transform: scale(1.1);
}

.application-item .icon {
    width: 56px;
    height: 56px;
    color: var(--primary-color);
    margin: 0 auto 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.application-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.application-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    font-family: 'Space Grotesk', sans-serif;
    flex-shrink: 0;
}

.application-item p {
    color: var(--text-dark-secondary);
    line-height: 1.75;
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
    min-height: auto;
    overflow: visible;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    margin-bottom: 2rem;
    padding: 0 80px;
    overflow: visible;
}

@media (max-width: 1024px) {
    .carousel-container {
        padding: 0 70px;
    }
    
    .carousel-nav.carousel-prev {
        left: -50px;
    }
    
    .carousel-nav.carousel-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 60px;
    }
    
    .carousel-nav.carousel-prev {
        left: -45px;
    }
    
    .carousel-nav.carousel-next {
        right: -45px;
    }
}


.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-track .reference-card,
.carousel-track .product-card,
.carousel-track .application-item,
.carousel-track .about-section-row,
.carousel-track .process-step {
    flex: 0 0 auto;
    min-width: 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}

.carousel-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3);
    transform: translateY(-50%) scale(1.05);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.carousel-nav.carousel-prev {
    left: -60px;
}

.carousel-nav.carousel-next {
    right: -60px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.about-carousel .carousel-nav:disabled {
    display: none;
}

/* Process Carousel Controls */
.process-carousel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-carousel-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.process-carousel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.process-carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

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

.process-carousel-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.process-carousel-prev-btn:hover svg {
    transform: translateX(-2px);
}

.process-carousel-next-btn:hover svg {
    transform: translateX(2px);
}

.process-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Products Carousel Controls */
.products-carousel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.products-carousel-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.products-carousel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.products-carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

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

.products-carousel-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.products-carousel-prev-btn:hover svg {
    transform: translateX(-2px);
}

.products-carousel-next-btn:hover svg {
    transform: translateX(2px);
}

.products-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* About Carousel Controls */
.about-carousel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    padding-top: 0;
}

.about-carousel-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.about-carousel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

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

.about-carousel-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.about-carousel-prev-btn:hover svg {
    transform: translateX(-2px);
}

.about-carousel-next-btn:hover svg {
    transform: translateX(2px);
}

.about-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* References Carousel Controls */
.references-carousel-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.references-carousel-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.references-carousel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.references-carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

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

.references-carousel-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.references-carousel-prev-btn:hover svg {
    transform: translateX(-2px);
}

.references-carousel-next-btn:hover svg {
    transform: translateX(2px);
}

.references-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* References Carousel Specific */
.references-carousel .carousel-track {
    gap: 2rem;
}

.references-carousel .reference-card {
    width: calc(25% - 1.5rem);
}

/* Products Carousel Specific */
.products-carousel .carousel-track {
    gap: 2rem;
}

.products-carousel .product-card {
    width: calc(50% - 1rem);
}

.products-carousel {
    padding: 0 80px;
}

@media (max-width: 1024px) {
    .products-carousel {
        padding: 0 70px;
    }
}

@media (max-width: 768px) {
    .products-carousel {
        padding: 0 60px;
    }
    
    .products-carousel .carousel-nav {
        width: 36px;
        height: 36px;
    }
}

/* Applications Carousel Specific */

/* About Carousel Specific */
.about-carousel {
    padding: 0 80px;
}

.about-carousel .carousel-track {
    gap: 0;
}

.about-carousel .about-section-row {
    padding: 1.5rem;
    width: 100%;
    flex-shrink: 0;
}

.about-carousel .about-content {
    display: block;
}

.about-carousel .carousel-nav.carousel-prev {
    left: calc(50% - 3rem - 24px);
    right: auto;
    top: 1rem;
    transform: translateY(0);
}

.about-carousel .carousel-nav.carousel-next {
    left: calc(50% + 3rem - 24px);
    right: auto;
    top: 1rem;
    transform: translateY(0);
}

.about-carousel .carousel-nav:hover {
    transform: scale(1.1);
}

.about-carousel .carousel-nav:active {
    transform: scale(0.95);
}


@media (max-width: 1024px) {
    .about-carousel {
        padding: 0 70px;
    }
}

@media (max-width: 768px) {
    .about-carousel {
        padding: 0 60px;
    }
    
    .about-carousel .carousel-nav {
        width: 36px;
        height: 36px;
    }
}

/* Process Carousel Specific */
.process-carousel {
    padding: 0 80px;
}

.process-carousel .carousel-track {
    gap: 0;
}

.process-carousel .process-step {
    width: 100%;
    margin-bottom: 0;
    flex-shrink: 0;
}

.process-carousel .process-timeline {
    gap: 0;
    width: 100%;
    flex-direction: row;
    max-width: none;
    margin: 0;
}

.process-carousel .process-step:last-child {
    margin-bottom: 0;
}


@media (max-width: 1024px) {
    .process-carousel {
        padding: 0 70px;
    }
}

@media (max-width: 768px) {
    .process-carousel {
        padding: 0 60px;
    }
    
    .process-carousel .carousel-nav {
        width: 36px;
        height: 36px;
    }
}

/* References Section */
.references {
    background: var(--bg-section);
    padding: 4rem 0;
    color: var(--text-dark);
}

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

.references .section-title {
    margin-bottom: 1rem;
}

.references .section-subtitle {
    margin-bottom: 0.5rem;
}

.references-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
}

.reference-card {
    background: var(--bg-white);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(229, 231, 235, 0.6);
    position: relative;
    cursor: pointer;
}

.reference-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.reference-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--bg-section);
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -webkit-font-smoothing: antialiased;
    filter: brightness(1.03) contrast(1.06) saturate(1.12);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.reference-card:hover .reference-image img {
    transform: scale(1.08) translateZ(0);
    filter: brightness(1.06) contrast(1.09) saturate(1.18);
}

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reference-card:hover .reference-overlay {
    opacity: 1;
}

.reference-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.reference-type {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 0;
}

.reference-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: -0.4px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.3;
}

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

.references-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.references-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

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

.references-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.references-cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.references-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.references-cta-button:hover svg {
    transform: translateX(4px);
}

.references-cta-button span {
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq {
    background: var(--bg-white);
    padding: 4rem 0;
    color: var(--text-dark);
    position: relative;
}

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

.faq .section-title {
    margin-bottom: 1rem;
}

.faq .section-subtitle {
    margin-bottom: 0.5rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
    color: var(--text-dark);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-dark-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: var(--bg-section);
    padding: 4rem 0;
    color: var(--text-dark);
}

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

.contact-image {
    width: 100%;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.contact-info:hover .contact-image {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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


.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -1px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-info > p {
    color: var(--text-dark-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-detail:hover {
    background: var(--accent-glow);
}

.contact-detail .icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-detail > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-extra {
    font-size: 0.9rem;
    color: var(--text-lighter);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.8);
    transition: all 0.3s ease;
}

.contact-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.contact-feature .icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-feature span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Form Styles */
.contact-form {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.6);
    position: relative;
    overflow: hidden;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--accent-glow);
    transform: translateY(-2px);
}

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

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

.form-submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
}

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

.form-submit-btn:hover:not(:disabled)::before {
    width: 300px;
    height: 300px;
}

.form-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    background: var(--secondary-color);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-block;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

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

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

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

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

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

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-color);
    margin-top: 2px;
}

.footer-contact > li > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact span {
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Form Float Button */
.form-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.form-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.6);
    background: var(--secondary-color);
}

.form-float svg {
    width: 28px;
    height: 28px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    max-width: 500px;
    text-align: center;
    animation: modalFadeIn 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    box-shadow: var(--shadow-xl);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Space Grotesk', sans-serif;
}

.modal-content p {
    color: var(--text-dark-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.modal-close {
    padding: 0.75rem 2rem;
    background: var(--metallic);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

/* Enhanced animation classes */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-background img {
        transform: none !important;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-logo {
        height: 45px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 57px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1rem;
        border-top: 1px solid var(--border-color);
        z-index: 999;
        max-height: calc(100vh - 57px);
        overflow-y: auto;
    }
    
    .nav-menu a {
        color: var(--text-dark);
    }
    
    .nav-menu a:hover {
        color: var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .about-content {
        gap: 3rem;
    }

    .about-section-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-section-row.reverse {
        direction: ltr;
    }

    .about-text p:last-of-type {
        margin-bottom: 2.5rem;
    }


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

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

    .hero {
        min-height: 75vh;
        padding: 0;
    }

    .hero-wrapper {
        padding: 80px 30px 70px;
        min-height: 65vh;
        justify-content: center;
    }

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

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats-section {
        margin-top: -70px;
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .hero-stats-section .container {
        padding: 0 30px;
    }

    .hero-stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero-stat-card {
        height: 140px;
        padding: 2rem;
    }
    
    .problem-solution {
        padding-top: 3rem;
    }
    
    .hero-stat-card-content {
        gap: 0.5rem;
    }
    
    .hero-stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    
    .experience-badge-content {
        width: 120px;
        height: 120px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 1.5rem;
    }

    .hero-trust-badges {
        justify-content: center;
        gap: 1rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .trust-badge-item {
        font-size: 0.875rem;
    }

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

    .hero-title {
        font-size: 2.5rem;
        max-width: 100%;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

@media (max-width: 1024px) {
    .references-carousel .reference-card {
        width: calc(50% - 1rem);
    }
    
    .products-carousel .product-card {
        width: calc(50% - 1rem);
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .reference-image {
        height: 180px;
    }

    .reference-content {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        height: 40px;
    }

    .footer-logo {
        height: 55px;
    }

    .references-carousel .reference-card,
    .products-carousel .product-card,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .process-carousel-controls {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .process-carousel-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .process-carousel-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .products-carousel-controls {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .products-carousel-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .products-carousel-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .reference-image {
        height: 160px;
    }

    .reference-content {
        padding: 1.25rem;
    }

    .reference-card h3 {
        font-size: 1.15rem;
    }

    .references-cta-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .references-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .feature-image {
        height: 200px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        padding: 0 2rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        padding: 0 2rem;
    }

    .feature-card p {
        padding: 0 2rem 2rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        gap: 1rem;
        flex-direction: column;
    }

    .process-image {
        width: 100%;
        height: 250px;
    }

    .process-cta-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .process-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .problem-solution-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .problem-solution-images {
        height: 400px;
    }
    
    .problem-solution-main-image {
        width: 70%;
        height: 80%;
    }
    
    .problem-solution-overlay-image {
        width: 55%;
        height: 55%;
    }
    
    .problem-solution-content .section-title {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .problem-solution-content .intro-text {
        text-align: center;
    }

    .application-image {
        height: 180px;
    }

    .contact-image {
        height: 250px;
    }

    .contact-form {
        padding: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .form-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .form-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 100px 0 50px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-wrapper {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero-title-highlight {
        margin-top: 0.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.8rem;
    }

    .hero-badge {
        margin-bottom: 1.5rem;
        padding: 0.5rem 1.4rem;
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero {
        min-height: 60vh;
        max-height: 65vh;
        padding-bottom: 40px;
    }

    .hero-wrapper {
        padding: 70px 20px 40px;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-stats-section {
        margin-top: 0;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-stats-section .container {
        padding: 0 20px;
    }

    .hero-stats-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-stat-card {
        height: auto;
        min-height: 120px;
        padding: 1.5rem;
        text-align: center;
    }
    
    .hero-stat-card-content {
        gap: 0.5rem;
    }

    .hero-stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-experience-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 2rem auto 0;
        width: fit-content;
    }
    
    .experience-badge-content {
        width: 100px;
        height: 100px;
    }
    
    .experience-logo {
        font-size: 2rem;
    }
    
    .experience-text {
        font-size: 0.75rem;
    }
    
    .problem-solution-wrapper {
        gap: 2rem;
    }
    
    .problem-solution-images {
        height: 300px;
    }
    
    .problem-solution-main-image {
        width: 65%;
        height: 75%;
    }
    
    .problem-solution-overlay-image {
        width: 50%;
        height: 50%;
        border: 4px solid white;
    }
    
    .problem-solution-content .section-title {
        font-size: 2rem;
    }
    
    .problem-solution-content .intro-text {
        font-size: 1rem;
    }
    
    .problem-solution {
        padding-top: 3rem;
    }
    
    .hero-wrapper {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        max-width: 100%;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

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