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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1B1F28;
    background-color: #FAFCFF;
    overflow-x: hidden;
}

:root{ --gutter: clamp(16px, 4vw, 48px); }

/* Universal box shadow removal - but allow for specific elements */
* {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.main-content { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.footer-content { max-width: 1440px; margin: 0 auto; padding: 0 48px; gap: 52px; display: flex; align-self: stretch; background: transparent; border: none; }

/* Enhanced Header - Keeping Logo Large as Requested */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250,252,255,0.96);
    backdrop-filter: saturate(140%) blur(20px);
    max-height: 20vh;
    min-height: 60px;
    border-bottom: 1px solid rgba(17,24,39,0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(250,252,255,0.98);
    box-shadow: 0 8px 32px rgba(17,24,39,0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-section {
    display: flex;
    align-items: center;
    padding: 4px 0;
    min-height: 200px;
    min-width: 200px;
}

.logo-img {
    height: auto;
    min-width: 200px;/* Large logo size as requested */
    width: 200px;
    min-height: 200px;
    max-height: none;
    display: block;
    filter: none;
    opacity: 1;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #1B1F28;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(250, 252, 255, 0.98);
    backdrop-filter: saturate(140%) blur(20px);
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    padding: 120px 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1B1F28;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-item {
    font-size: 18px;
    font-weight: 500;
    color: #1B1F28;
}

.mobile-nav-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #3B82F6;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    color: #1B1F28;
    text-decoration: none;
    line-height: 1.333;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #3B82F6;
}

.chevron-down {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.nav-item:hover .chevron-down {
    transform: rotate(180deg);
}

.header-divider {
    position: absolute;
    bottom: 0;
    left: -96px;
    right: -96px;
    height: 0;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0);
}

/* Main Container */
.main-container {
    padding: 48px 0;
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    min-height: 100vh;
    width: 100%;
}

/* Hero Section - Exact Figma Specs */
.hero { position: relative; padding: 96px 0 48px; height: auto; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(176deg, rgba(250, 252, 255, 1) 39%, rgba(15, 60, 159, 0.16) 100%); z-index: -1; }
.hero-content { 
    display: flex; 
    flex-direction: row;
    gap: 80px; 
    align-items: center; 
    height: auto; 
    position: relative;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.hero-text { 
    flex: 1;
    min-width: 320px;
    padding: 0; 
    gap: 24px; 
    display: flex;
    flex-direction: column;
    order: 1; /* Ensure text comes first */
}
.hero-title { 
    font-family: Inter; 
    font-weight: 700; 
    font-size: clamp(48px, 8vw, 96px); 
    line-height: 1.02; 
    letter-spacing: -0.025em; 
    color: #1B1F28; 
    animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-subtitle-container { 
    display: block; 
    margin-bottom: 0;
}
.hero-subtitle { 
    font-size: clamp(18px, 2.2vw, 24px); 
    opacity: 0.7; 
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}
.hero-spacer { 
    display: none; 
    margin: 0;
}
.hero-image { 
    flex: 1;
    min-width: 320px;
    position: relative; 
    width: 100%; 
    height: auto; 
    order: 2; /* Ensure image comes after text */
}
.hero-main-image { 
    width: 100%; 
    max-width: 900px; 
    height: auto; 
    object-fit: contain; 
    display: block; 
    margin: 0 auto; 
    animation: scaleIn 1s ease-out 0.6s both;
}
.hero-divider { position: static; height: 0; border-bottom: 1px solid transparent; }

/* Problem Section - Clean Design */
.problem-section {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 96px;
    padding: 96px 0;
    position: relative;
    z-index: 1;
    background: #FFFFFF;
}

.problem-container {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 96px;
    padding: 52px 0;
}

.problem-title {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.083;
    letter-spacing: -2.5%;
    color: #1B1F28;
    margin-bottom: 24px;
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.problem-text-container {
    display: flex;
    flex-direction: column;
    padding: 10px 0 0;
}

.problem-text {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.333;
    letter-spacing: -0.5%;
    color: #64748B;
    max-width: 600px;
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.problem-divider {
    position: absolute;
    left: -96px;
    right: -96px;
    height: 0;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0);
}

/* Solution Section - Clean Modern Design */
.solution-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
}

.solution-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.solution-title {
    font-family: Inter;
    font-weight: 700;
    font-size: clamp(40px, 5vw, 52px);
    line-height: 1.1;
    color: #0F172A;
    text-align: center;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.solution-subtitle {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: #64748B;
    text-align: center;
    margin: 0 0 80px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    cursor: pointer;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6, #10B981);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(139, 92, 246, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        0 0 0 4px rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

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

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

.solution-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.solution-card:hover .card-title {
    color: #1E40AF;
    transform: translateY(-2px);
}

.solution-card:hover .card-description {
    color: #374151;
}



.card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out both;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .card-icon::before {
    opacity: 1;
}

.card-icon svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #0F172A;
    margin: 0 0 12px 0;
    animation: fadeInUp 0.8s ease-out both;
}

.card-description {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #64748B;
    margin: 0 0 32px 0;
}

.card-features {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

.feature-item {
    display: flex !important;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 5;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    background: #F1F5F9;
    border-color: #CBD5E1;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

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

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.feature-icon svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.feature-text {
    font-family: Inter;
    font-weight: 600;
    font-size: 15px;
    color: #334155;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.feature-item:hover .feature-text {
    color: #1E40AF;
    transform: translateX(2px);
}



.mockup-side-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: rgba(37, 65, 126, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(37, 65, 126, 0.1);
}

.mockup-side-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(37, 65, 126, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mockup-side-icon {
    font-size: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 65, 126, 0.1);
    border-radius: 6px;
}

.mockup-side-text {
    font-family: Inter;
    font-weight: 600;
    font-size: 14px;
    color: #1B1F28;
}

.retention-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
}

.retention-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    margin-bottom: 8px;
}

.retention-item:hover {
    background: rgba(37, 65, 126, 0.08);
    border-color: rgba(37, 65, 126, 0.2);
    transform: translateY(-2px);
}

.retention-icon {
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 6px;
}

.retention-text {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}

.mockup-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    width: 100%;
    background: rgba(37, 65, 126, 0.03);
    border: 1px solid rgba(37, 65, 126, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(37, 65, 126, 0.05);
}

.mockup-side-header {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -2.5%;
    color: #1B1F28;
    text-align: center;
    margin-bottom: 16px;
}



/* Retention Mockup Special Styling */
.retention-mockup {
    position: relative;
}

.retention-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400px;
    background: #FFFFFF;
    border: 1px solid rgba(37, 65, 126, 0.15);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(37, 65, 126, 0.08);
    padding: 32px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.user-avatar {
    width: 63px;
    height: 63px;
    border-radius: 786.712px;
    border: 1.5px solid rgba(0, 0, 0, 0);
}

.user-name {
    font-family: Inter;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.176;
    letter-spacing: -2.5%;
    color: #1B1F28;
    width: 244px;
}







.solution-divider {
    position: absolute;
    left: -96px;
    right: -96px;
    height: 0;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0);
}

/* Revenue Levers Section - Clean Modern Design */
.revenue-levers {
    padding: 100px 0;
    background: #FFFFFF;
}

.revenue-levers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.levers-title {
    font-family: Inter;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 48px);
    line-height: 1.1;
    color: #0F172A;
    text-align: center;
    margin: 0 0 16px 0;
}

.levers-subtitle {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    text-align: center;
    margin: 0 0 64px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.levers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.lever-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    animation: slideInUp 0.8s ease-out both;
}

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

.lever-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #3B82F6, #8B5CF6);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lever-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(139, 92, 246, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lever-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        0 0 0 4px rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

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

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

.lever-card:hover .lever-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.lever-card:hover .lever-title {
    color: #1E40AF;
    transform: translateY(-2px);
}

.lever-card:hover .lever-description {
    color: #374151;
}

.lever-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    border-radius: 20px;
    margin: 0 auto 28px auto;
    border: 2px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lever-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lever-card:hover .lever-icon::before {
    opacity: 1;
}

.lever-icon svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.lever-title {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #0F172A;
    margin: 0 0 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
}

.lever-description {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #64748B;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation for cards appearing */
.lever-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.solution-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

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

/* Enhanced Professional Animations */
.lever-icon svg {
    animation: iconFloat 4s ease-in-out infinite;
}

.lever-icon:nth-child(odd) svg {
    animation-delay: 0.5s;
}

.card-icon svg {
    animation: iconFloat 4s ease-in-out infinite;
}

.card-icon:nth-child(odd) svg {
    animation-delay: 0.3s;
}

/* Pulse animation for main icons */
.card-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 24px;
    opacity: 0;
    animation: iconPulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

/* Page-wide smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Professional page animations */
body {
    overflow-x: hidden;
}

/* All sections are visible by default */
.problem-section,
.solution-section,
.revenue-levers,
.case-studies,
.final-cta,
.footer {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    visibility: visible;
    position: relative;
    z-index: 1;
}

/* Individual elements are visible by default */
.problem-title,
.problem-text,
.solution-title,
.solution-subtitle,
.levers-title,
.levers-subtitle,
.case-studies-title,
.final-cta-title,
.final-text-title,
.final-text-cta-container {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    visibility: visible;
}

/* Cards are visible by default */
.solution-card,
.lever-card,
.case-study-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    visibility: visible;
}

/* Feature items start visible but will animate on scroll */
.feature-item {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll-triggered animations - elements start hidden */
.header {
    opacity: 1; /* Header is always visible */
}

.logo-section {
    opacity: 1; /* Logo is always visible */
}

.nav-menu {
    opacity: 1; /* Nav is always visible */
}

/* Hero section - visible on page load with entrance animations */
.hero-section {
    opacity: 1;
    animation: heroEntrance 1.2s ease-out forwards;
}

.hero-title {
    opacity: 1;
    animation: titleEntrance 1s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-subtitle {
    opacity: 1;
    animation: subtitleEntrance 1s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-cta {
    opacity: 1;
    animation: ctaEntrance 1s ease-out forwards;
    animation-delay: 0.9s;
}

/* Hero entrance animations */
@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtitleEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Content sections are visible by default */
.problem-section,
.solution-section,
.revenue-levers,
.case-studies,
.final-cta,
.footer {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-title,
.problem-text,
.solution-title,
.solution-subtitle,
.levers-title,
.levers-subtitle,
.case-studies-title,
.final-cta-title,
.final-text-title,
.final-text-cta-container {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cards are visible by default */
.solution-card,
.lever-card,
.case-study-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Feature items are visible by default */
.feature-item {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* All elements are visible by default */
.final-cta .final-text-title,
.final-cta .final-text-cta-container {
    opacity: 0;
    transform: translateY(30px);
}

/* Animation classes for enhanced effects */
.animate-in {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.animate-in-left {
    transform: translateX(5px);
}

/* Simple hover effects for child elements */
.animate-in .solution-card,
.animate-in .lever-card,
.animate-in .case-study-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.animate-in .feature-item {
    transform: translateX(3px);
}

/* Staggered animations are now handled by the animation classes above */

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-2px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-2px) rotate(-0.5deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Feature icon animations */
.feature-icon svg {
    animation: featureGlow 4s ease-in-out infinite;
}

.feature-icon:nth-child(1) svg { animation-delay: 0s; }
.feature-icon:nth-child(2) svg { animation-delay: 0.5s; }
.feature-icon:nth-child(3) svg { animation-delay: 1s; }
.feature-icon:nth-child(4) svg { animation-delay: 1.5s; }

@keyframes featureGlow {
    0%, 100% {
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
    }
}

/* Enhanced card hover animations */
.solution-card:hover .card-icon {
    animation: iconHover 0.6s ease-out forwards;
}

@keyframes iconHover {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(8deg);
    }
    100% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Staggered entrance animations with bounce */
/* Solution cards now use scroll-triggered animations */

/* Removed old keyframe - now using scroll-triggered animations */

/* Enhanced feature item animations - now scroll-triggered */
.feature-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Feature item delays now handled by CSS transitions */

/* Removed old keyframe - now using CSS transitions */

/* Page-wide animation keyframes */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes navSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced hover effects for interactive elements */
.nav-menu a,
.footer-links a,
.case-link,
.final-text-cta-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover,
.footer-links a:hover {
    transform: translateY(-2px);
    color: #3B82F6;
}

.case-link:hover {
    transform: translateX(4px);
    color: #3B82F6;
}

.final-text-cta-container:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Enhanced button animations */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced card hover effects */
.solution-card:hover,
.lever-card:hover,
.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced icon hover effects */
.card-icon:hover svg,
.lever-icon:hover svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
}

/* Enhanced text hover effects */
.card-title:hover,
.lever-title:hover,
.case-study-title:hover {
    color: #3B82F6;
    transform: translateX(4px);
}

/* Enhanced feature item hover effects */
.feature-item:hover {
    transform: translateX(8px);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    padding: 8px;
    margin: -8px;
}

/* Enhanced navigation hover effects */
.nav-menu a:hover {
    transform: translateY(-2px);
    color: #3B82F6;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

/* Enhanced logo hover effect */
.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* Page-wide floating animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    }
}

/* Apply floating animation to hero image */
.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Apply pulse animation to CTA buttons */
.hero-cta .btn-primary {
    animation: pulse 2s ease-in-out infinite;
}

/* Apply glow animation to important elements */
.solution-card:hover,
.lever-card:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Enhanced scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #3B82F6;
    border-radius: 15px;
    opacity: 0.7;
    animation: scrollBounce 2s infinite;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: #3B82F6;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollMove 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

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

.levers-divider {
    position: absolute;
    left: -96px;
    right: -96px;
    height: 0;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0);
}

/* Case Studies Section - Exact Figma Specs */
.case-studies {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 52px;
    padding: 96px 0;
    border: none !important;
    background: transparent !important;
    margin: 0;
    box-shadow: none !important;
    outline: none !important;
    overflow: hidden;
}

/* Removed old case studies override */

.case-studies-title {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.083;
    letter-spacing: -2.5%;
    color: #1B1F28;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.marquee-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0 48px;
    height: 80px;
    background: transparent;
}

.marquee-track {
    display: flex;
    align-items: center;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    transition: transform 0.1s ease-out;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin: 0 10px;
    background: linear-gradient(135deg, rgba(37, 65, 126, 0.1) 0%, rgba(37, 65, 126, 0.05) 100%);
    border: 2px solid rgba(37, 65, 126, 0.2);
    border-radius: 50px;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    color: #1B1F28;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(37, 65, 126, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-item:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, rgba(37, 65, 126, 0.15) 0%, rgba(37, 65, 126, 0.1) 100%);
    border-color: rgba(37, 65, 126, 0.4);
    box-shadow: 0 8px 30px rgba(37, 65, 126, 0.2);
    color: #2563EB;
}

@keyframes marquee {
    0% {
        transform: translateX(0) !important;
    }
    100% {
        transform: translateX(-50%) !important;
    }
}

/* JavaScript-powered marquee styles */
.marquee-track {
    will-change: transform;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section spacing improvements */
.problem-section,
.solution-section,
.revenue-levers,
.case-studies,
.final-cta,
.final-text-section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .problem-section,
    .solution-section,
    .revenue-levers,
    .case-studies,
    .final-cta,
    .final-text-section {
        padding: 60px 0;
    }
}

/* Hero CTA Styles */
.hero-cta-container {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    order: 3; /* Ensure it comes after hero text and image */
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    min-width: 160px;
    text-align: center;
}

.hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #1B1F28;
    text-decoration: none;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.hero-cta-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

/* Problem Section Bullets */
.problem-bullets {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    animation: fadeInLeft 1s ease-out 0.7s both;
}

.problem-bullets li {
    padding: 8px 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.problem-close {
    margin-top: 32px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-left: 4px solid #3B82F6;
    border-radius: 0 12px 12px 0;
    color: #1E40AF;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    animation: fadeInLeft 1s ease-out 0.9s both;
}

/* Solution Reassurance */
.solution-reassurance {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.solution-reassurance p {
    color: #065F46;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

/* Levers Micro-CTA */
.levers-cta {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
}

.levers-cta p {
    color: #475569;
    font-size: 16px;
    margin: 0;
}

.levers-cta a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.levers-cta a:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

/* Responsive styles for marquee */
@media (max-width: 768px) {
    .marquee-container {
        padding: 0 24px;
    }
    
    .marquee-item {
        padding: 6px 12px;
        margin: 0 8px;
        font-size: 14px;
    }
}

/* Responsive styles for existing elements */
@media (max-width: 1024px) {
    .header .container {
        padding: 0 24px;
    }
    
    .main-content {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 16px;
    }
    
    .nav-list {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .mobile-nav-overlay {
        display: block;
    }
    
    .main-container {
        padding: 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .solution-card,
    .lever-card {
        padding: 20px;
    }
    
    .card-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .feature-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 12px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .solution-card,
    .lever-card {
        padding: 16px;
    }
    
    .card-title,
    .lever-title {
        font-size: 18px;
    }
    
    .card-description,
    .lever-description {
        font-size: 14px;
    }
}

/* Responsive styles for new elements */
@media (max-width: 768px) {
    .hero-cta-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        margin-top: 0;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 14px 24px;
        font-size: 14px;
        text-align: center;
        min-width: auto;
        width: 100%;
    }
    
    .problem-bullets li {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .problem-close {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .solution-reassurance {
        padding: 16px;
        margin-top: 32px;
    }
    
    .solution-reassurance p {
        font-size: 16px;
    }
    
    .levers-cta {
        padding: 16px;
        margin-top: 32px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-cta-container {
        justify-content: center;
    }
    
    .problem-section {
        flex-direction: column;
        gap: 48px;
        padding: 60px 24px;
    }
    
    .problem-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .problem-title {
        font-size: 36px;
        text-align: center;
    }
    
    .problem-text {
        font-size: 20px;
        max-width: 100%;
    }
    
    .solution-section {
        padding: 80px 24px;
    }
    
    .solution-section .container {
        padding: 0;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .revenue-levers {
        padding: 80px 24px;
    }
    
    .revenue-levers .container {
        padding: 0;
    }
    
    .levers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .case-studies {
        padding: 60px 24px;
    }
    
    .final-cta,
    .final-text-section {
        padding: 60px 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 32px;
    }
    
    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .hero-subtitle {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .problem-section {
        padding: 48px 16px;
    }
    
    .problem-title {
        font-size: 28px;
    }
    
    .problem-text {
        font-size: 18px;
    }
    
    .solution-section {
        padding: 60px 16px;
    }
    
    .solution-title {
        font-size: 32px;
    }
    
    .solution-subtitle {
        font-size: 18px;
        margin-bottom: 48px;
    }
    
    .revenue-levers {
        padding: 60px 16px;
    }
    
    .levers-title {
        font-size: 32px;
    }
    
    .case-studies {
        padding: 48px 16px;
    }
    
    .case-studies-title {
        font-size: 32px;
    }
    
    .final-cta {
        padding: 48px 16px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-text-section {
        padding: 48px 16px;
    }
    
    .final-text-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 16px;
    }
    
    .problem-container {
        padding: 0;
    }
    
    .solution-section .container,
    .revenue-levers .container {
        padding: 0 16px;
    }
    
    .hero-cta-container {
        gap: 12px;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    /* Contact Form Mobile Styles */
    .contact-form {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-text {
        font-size: 18px;
        margin-bottom: 48px;
    }
}

/* Responsive styles for marquee */
@media (max-width: 768px) {
    .marquee-wrapper {
        padding: 0 24px;
    }
    
    .marquee-text {
        padding: 6px 12px;
        margin: 0 8px;
        font-size: 14px;
    }
}

/* Removed old case-logo-item styles */

/* Removed old case logo hover styles */

/* Removed old case-logo styles */

.case-title {
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #64748B;
    text-align: center;
    max-width: 200px;
}

.case-link {
    font-family: Inter;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    color: #3B82F6;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #3B82F6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.case-link:hover {
    background: #3B82F6;
    color: #FFFFFF;
}

/* Contact Form Section */
.contact-section {
    padding: 96px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E2E8F0' fill-opacity='0.05'%3E%3Cpath d='M60 60m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.contact-title {
    font-family: Inter;
    font-weight: 700;
    font-size: clamp(40px, 5vw, 52px);
    line-height: 1.1;
    color: #0F172A;
    text-align: center;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-text {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: #64748B;
    text-align: center;
    margin: 0 0 64px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto 64px auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    border-radius: 32px;
    padding: 64px;
    box-shadow: 
        0 25px 60px -12px rgba(0, 0, 0, 0.1),
        0 12px 30px -4px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6, #10B981, #F59E0B);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form:hover::before {
    transform: scaleX(1);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.contact-form:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.contact-form:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 35px 80px -20px rgba(0, 0, 0, 0.15),
        0 20px 40px -8px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(59, 130, 246, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 40px;
    position: relative;
}

.form-group label {
    display: block;
    font-family: Inter;
    font-weight: 600;
    font-size: 15px;
    color: #1F2937;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    transition: width 0.3s ease;
}

.form-group:focus-within label::after {
    width: 100%;
}

/* Name fields - Blue accent */
.form-group:nth-child(1) input,
.form-group:nth-child(2) input {
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group:nth-child(1) input:focus,
.form-group:nth-child(2) input:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(59, 130, 246, 0.15);
    background: #FFFFFF;
}

/* Email field - Purple accent */
.form-group:nth-child(3) input {
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFF 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group:nth-child(3) input:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1), 0 4px 12px rgba(139, 92, 246, 0.15);
    background: #FFFFFF;
}

/* Phone field - Green accent */
.form-group:nth-child(4) input {
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group:nth-child(4) input:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), 0 4px 12px rgba(16, 185, 129, 0.15);
    background: #FFFFFF;
}

/* Company field - Orange accent */
.form-group:nth-child(5) input {
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBEB 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group:nth-child(5) input:focus {
    border-color: #F59E0B;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1), 0 4px 12px rgba(245, 158, 11, 0.15);
    background: #FFFFFF;
}

/* Role field - Indigo accent */
.form-group:nth-child(6) select {
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFF 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group:nth-child(6) select:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), 0 4px 12px rgba(99, 102, 241, 0.15);
    background: #FFFFFF;
}

/* Message field - Teal accent */
.form-group:nth-child(7) textarea {
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDFA 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

.form-group:nth-child(7) textarea:focus {
    border-color: #14B8A6;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1), 0 4px 12px rgba(20, 184, 166, 0.15);
    background: #FFFFFF;
}

/* Hear about us field - Rose accent */
.form-group:nth-child(8) select {
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF1F2 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group:nth-child(8) select:focus {
    border-color: #F43F5E;
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1), 0 4px 12px rgba(244, 63, 94, 0.15);
    background: #FFFFFF;
}

/* Common input styles */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    font-family: Inter;
    font-size: 16px;
    color: #1F2937;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 52px;
}

.contact-submit {
    width: 100%;
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border: none;
    border-radius: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563EB, #7C3AED);
}

.contact-submit:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
}

.loading-spinner {
    animation: spin 1s linear infinite;
    color: currentColor;
}

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

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

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

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

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

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

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

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

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

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
    }
    50% {
        border-color: rgba(59, 130, 246, 0.6);
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-overlay.show .modal-container {
    transform: scale(1) translateY(0);
}

.modal-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 24px 24px 0 0;
}

.modal-container.success::before {
    background: linear-gradient(90deg, #10B981, #3B82F6, #8B5CF6);
}

.modal-container.error::before {
    background: linear-gradient(90deg, #EF4444, #DC2626, #B91C1C);
}

.modal-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.modal-icon.success-icon svg {
    filter: drop-shadow(0 8px 16px rgba(16, 185, 129, 0.3));
}

.modal-icon.error-icon svg {
    filter: drop-shadow(0 8px 16px rgba(239, 68, 68, 0.3));
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1B1F28;
    margin-bottom: 16px;
    line-height: 1.2;
}

.modal-message {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.modal-button {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    min-width: 140px;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
}

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

/* Error Modal Styles */
.modal-icon.error-icon svg circle {
    fill: #EF4444;
}

.modal-icon.error-icon svg path {
    fill: white;
    d: path("M24 4C12.95 4 4 12.95 4 24C4 35.05 12.95 44 24 44C35.05 44 44 35.05 44 24C44 12.95 35.05 4 24 4ZM26 34H22V30H26V34ZM26 26H22V14H26V26Z");
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #EF4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Final CTA Section - Exact Figma Specs */
.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 96px 0;
    border: none !important;
    background: transparent !important;
    margin: 0;
    text-align: center;
    box-shadow: none !important;
    outline: none !important;
}

.final-cta * {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.final-cta-title {
    font-family: Inter;
    font-weight: 400;
    font-size: 64px;
    line-height: 1.063;
    letter-spacing: -2.5%;
    color: #1B1F28;
    text-align: center;
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.final-cta-divider {
    display: none;
}

/* Final Text Section - Exact Figma Specs */
.final-text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 96px;
    padding: 96px 0;
    border: none;
    background: transparent;
    margin: 0;
    text-align: center;
}

.final-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 96px;
    padding: 52px 0;
    max-width: 800px;
    margin: 0 auto;
}

.final-text-title {
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.083;
    letter-spacing: -2.5%;
    color: #1B1F28;
}

.final-text-cta-container {
    display: flex;
    flex-direction: column;
    padding: 10px 0 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.final-text-cta {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.333;
    letter-spacing: -0.5%;
    color: #1B1F28;
    cursor: pointer;
    transition: color 0.2s ease;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    text-decoration: none !important;
}

.final-text-cta:hover {
    color: #3B82F6 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
}

.final-text-divider {
    display: none;
}

/* Footer - Exact Figma Specs */
.footer {
    background: transparent;
    padding: 80px 0 40px;
    border: none;
    margin: 0;
}

.footer-divider {
    display: none;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    gap: 12px;
}

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

.footer-links-section {
    display: flex;
    gap: 52px;
}

.footer-link-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 200px;
}

.footer-heading {
    font-family: Inter;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.333;
    color: #1B1F28;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-family: Inter;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.333;
    color: rgba(20, 28, 46, 0.62);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #1B1F28;
}

.footer-tagline {
    font-family: Inter;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.333;
    color: rgba(20, 28, 46, 0.62);
}

.footer-page-link {
    font-family: Inter;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.333;
    color: rgba(20, 28, 46, 0.62);
}

/* Responsive Design */
/* Default styles for large screens (1441px and above) */
.logo-img {
    height: auto;
    min-height: 200px;
    width: 200px;
    min-width: 200px;
}

@media (max-width: 1440px) {
    .container,
    .main-content {
        padding: 0 24px;
    }
    
    .header-content {
        gap: 48px;
    }
    
    .logo-img {
        height: auto;
        min-height: 200px;
        width: 200px;
        min-width: 200px;
    }
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-main-image { max-width: 720px; }
    .hero-title { font-size: clamp(40px, 10vw, 64px); }
    .logo-img { 
        height: auto;
        min-height: 200px;
        width: 200px;
        min-width: 200px;
    }
    .hero-content {
        flex-direction: column;
        height: auto;
        padding: 80px 0;
    }
    
    .hero-text {
        width: 100%;
        padding: 40px 0;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: auto;
    }
    
    .solution-section {
        padding: 60px 0;
        gap: 60px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
    }
    
    .solution-card {
        padding: 32px;
    }
    
    .card-content {
        margin-bottom: 24px;
    }
    
    .levers-grid .lever-card:nth-child(1),
    .levers-grid .lever-card:nth-child(2),
    .levers-grid .lever-card:nth-child(3) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
    }
    
    .logo-img {
        height: auto;
        min-height: 200px;
        width: 200px;
        min-width: 200px;
        max-height: none;
    }
    
    .nav-list {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .problem-section,
    .final-text-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .solution-section {
        padding: 60px 24px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 100%;
    }
    
    .solution-card {
        padding: 32px 24px;
        min-height: auto;
    }
    
    .card-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .card-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .card-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .feature-item {
        padding: 16px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .marquee-container {
        padding: 0 24px;
    }
    
    .marquee-item {
        padding: 8px 16px;
        margin: 0;
        font-size: 14px;
    }

    /* Hero mobile responsive */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 24px;
    }

    .hero-text {
        order: 1;
        margin-bottom: 0;
        flex: none;
        width: 100%;
    }

    .hero-image {
        order: 2;
        flex: none;
        width: 100%;
    }

    .hero-cta-container {
        order: 3;
        margin-top: 2rem;
        gap: 1rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Contact form mobile responsive */
    .contact-section {
        padding: 60px 24px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        width: 100%;
    }

    .contact-submit {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Mobile Modal Styles */
    .modal-container {
        padding: 32px 24px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-message {
        font-size: 15px;
        max-width: 280px;
    }

    .modal-button {
        width: 100%;
        max-width: 200px;
    }

    /* Additional mobile improvements */
    .hero-title {
        font-size: 48px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .problem-title,
    .solution-title,
    .levers-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container,
    .main-content {
        padding: 0 16px;
    }
    
    .logo-img {
        height: auto;
        min-height: 200px;
        width: 200px;
        min-width: 200px;
        max-height: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .nav-list {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
}

/* Responsive Design Improvements */
@media (max-width: 1100px) {
    .solution-section {
        padding: 80px 0;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
    }
    
    .solution-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 60px 0;
    }
    
    .solution-section .container {
        padding: 0 16px;
    }
    
    .solution-title {
        font-size: 32px;
    }
    
    .solution-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }
    
    .solution-grid {
        gap: 24px;
    }
    
    .solution-card {
        padding: 24px;
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .feature-item {
        padding: 14px;
    }
    
    .revenue-levers {
        padding: 60px 0;
    }
    
    .revenue-levers .container {
        padding: 0 16px;
    }
    
    .levers-title {
        font-size: 32px;
    }
    
    .levers-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }
    
    .levers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .lever-card {
        padding: 24px;
    }
    
    .lever-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .lever-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .lever-description {
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .levers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: 60px 0;
        gap: 40px;
    }
    
    .solution-grid {
        gap: 40px;
        padding: 0 24px;
    }
    
    .solution-card {
        padding: 32px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .card-text {
        font-size: 15px;
    }
    
    .mockup-container {
        padding: 24px;
    }
    
    .mockup-item {
        padding: 16px;
    }
}

@media (max-width: 600px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Content Protection Styles */
* {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Allow text selection for form inputs only */
input, textarea, select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Disable image dragging */
img {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    pointer-events: none !important;
}

/* Disable link dragging */
a {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
}

/* Anti-scraping measures */
body::before {
    content: "Technoforges - Protected Content";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 999999;
    pointer-events: none;
}

/* Show protection message on selection attempt */
body::selection {
    background: transparent !important;
    color: inherit !important;
}

body::-moz-selection {
    background: transparent !important;
    color: inherit !important;
}
