@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Subtle Tech Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 103, 254, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 103, 254, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 103, 254, 0.01) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 103, 254, 0.1);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 103, 254, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-right: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
    margin: -20px 0;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -0.5rem;
    right: -0.5rem;
    bottom: 0;
    background: rgba(0, 103, 254, 0.05);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav a:hover::before {
    opacity: 1;
}

.nav a:hover {
    color: #0067FE;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: #ffffff;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
}

.hero-video-side {
    position: relative;
    height: 100vh;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-video {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    filter: contrast(1.2) saturate(1.1);
}

.hero-content-side {
    padding: 2rem;
    display: flex;
    align-items: center;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

.hero-content {
    max-width: 500px;
    transform: none;
    filter: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-video-side {
        height: 50vh;
        padding: 1rem;
    }
    
    .hero-video {
        height: 100%;
    }
    
    .hero-content-side {
        padding: 2rem;
        height: 50vh;
        min-height: 50vh;
        max-height: 50vh;
    }
}

.hero-title {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    background: linear-gradient(135deg, #0067FE, #015DF0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 1.5rem !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    transform: none !important;
    filter: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: -0.02em !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.hero-subtitle {
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
    color: #333333 !important;
    font-weight: 500 !important;
    margin-bottom: 2rem !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    transform: none !important;
    filter: none !important;
    text-shadow: none !important;
    opacity: 1 !important;
    font-family: 'Inter', sans-serif !important;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: #fff;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 103, 254, 0.3);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.cta-button.secondary {
    background: #ffffff;
    color: #0067FE;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    border: 2px solid #0067FE;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 103, 254, 0.4);
}

.cta-button.secondary:hover {
    background: #0067FE;
    color: #ffffff;
    transform: translateY(-2px);
}



.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 30px rgba(0, 103, 254, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::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 {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 103, 254, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section {
    padding: 4rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #F2F2F2 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.3rem;
    color: #1A1A1A;
    max-width: 850px;
    margin: 0 auto 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.section-header .highlight {
    color: #0067FE;
    font-weight: 700;
    font-size: 1.4rem;
}

/* Problem Section */
.problem-section {
    background: #ffffff;
}

.problem-section img {
    max-width: 600px;
    width: 100%;
    margin: 3rem auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 103, 254, 0.15);
}

/* Enhanced Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    perspective: 1000px;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Alternating color schemes for visual variety */
.stat-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(0, 103, 254, 0.1), rgba(0, 103, 254, 0.15));
    border-color: rgba(0, 103, 254, 0.2);
}

.stat-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(0, 230, 228, 0.1), rgba(0, 230, 228, 0.15));
    border-color: rgba(0, 230, 228, 0.2);
}

.stat-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 166, 12, 0.1), rgba(255, 166, 12, 0.15));
    border-color: rgba(255, 166, 12, 0.2);
}

/* Accent bars with different colors */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: all 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.stat-item:nth-child(1)::before {
    background: linear-gradient(90deg, #0067FE, #015DF0);
}

.stat-item:nth-child(2)::before {
    background: linear-gradient(90deg, #00E6E4, #00CFCE);
}

.stat-item:nth-child(3)::before {
    background: linear-gradient(90deg, #FFA60C, #FFB83D);
}

/* Enhanced hover effects */
.stat-item:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.stat-item:nth-child(1):hover {
    border-color: #0067FE;
    box-shadow: 0 25px 60px rgba(0, 103, 254, 0.25);
}

.stat-item:nth-child(2):hover {
    border-color: #00E6E4;
    box-shadow: 0 25px 60px rgba(0, 230, 228, 0.25);
}

.stat-item:nth-child(3):hover {
    border-color: #FFA60C;
    box-shadow: 0 25px 60px rgba(255, 166, 12, 0.25);
}

/* Prominent numbers with counter animation */
.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    display: block;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.stat-item:nth-child(1) .stat-number {
    color: #0067FE;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(2) .stat-number {
    color: #00E6E4;
    background: linear-gradient(135deg, #00E6E4, #00CFCE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(3) .stat-number {
    color: #FFA60C;
    background: linear-gradient(135deg, #FFA60C, #FFB83D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

/* Enhanced labels with better typography */
.stat-label {
    font-size: 1.2rem;
    color: #4D4D4D;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    opacity: 1;
    transform: translateY(-2px);
}

/* Progress indicators */
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 0 0 20px 20px;
    transition: width 2s ease-out 0.5s;
    width: 0;
}

.stat-item:nth-child(1)::after {
    background: linear-gradient(90deg, #0067FE, #015DF0);
}

.stat-item:nth-child(2)::after {
    background: linear-gradient(90deg, #00E6E4, #00CFCE);
}

.stat-item:nth-child(3)::after {
    background: linear-gradient(90deg, #FFA60C, #FFB83D);
}

/* Animate progress bars on scroll/load */
.stat-item.animate::after {
    width: 100%;
}

/* Subtle floating animation */
@keyframes statFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.stat-item:nth-child(1) {
    animation: statFloat 6s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation: statFloat 6s ease-in-out infinite 2s;
}

.stat-item:nth-child(3) {
    animation: statFloat 6s ease-in-out infinite 4s;
}

/* Counter animation keyframes */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.stat-number {
    animation: countUp 0.8s ease-out forwards;
}

.stat-item:nth-child(2) .stat-number {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) .stat-number {
    animation-delay: 0.4s;
}

/* Context text styling */
.stat-context {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.5rem;
    font-style: italic;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-context {
    opacity: 1;
    color: #4b5563;
}

/* Results section styling */
.results-section {
    margin-top: 4rem;
    text-align: center;
}

.results-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.results-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    border-radius: 2px;
}

/* Ensure stats grid alignment */
.stats-grid {
    align-items: stretch;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 103, 254, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 103, 254, 0.2);
    border-color: #0067FE;
}



.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #999999;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-metric {
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #F2F2F2 0%, #ffffff 100%);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateX(8px);
    border-color: #0067FE;
    box-shadow: 0 8px 30px rgba(0, 103, 254, 0.15);
}

.checkmark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 103, 254, 0.3);
}

.benefit-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1A1A1A;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-item:hover {
    transform: translateY(-8px);
    border-color: #0067FE;
    box-shadow: 0 20px 50px rgba(0, 103, 254, 0.2);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(0, 103, 254, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(0, 103, 254, 0.2);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.step-item p {
    color: #999999;
    line-height: 1.6;
}

/* Users Grid */
.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.persona-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 103, 254, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 103, 254, 0.02), rgba(0, 103, 254, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.persona-card:hover::before {
    opacity: 1;
}

.persona-card:hover {
    transform: translateY(-8px);
    border-color: #0067FE;
    box-shadow: 0 20px 50px rgba(0, 103, 254, 0.2);
}

.persona-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0067FE;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.persona-card p {
    color: #999999;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Final CTA */
.final-cta, .platform-final-cta {
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    box-shadow: 0 -10px 30px rgba(0, 103, 254, 0.3);
}

.final-cta::before, .platform-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 103, 254, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    animation: floatPattern 15s ease-in-out infinite;
}

@keyframes floatPattern {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.final-cta .container, .platform-final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2, .platform-final-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.final-cta blockquote {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

/* WHY BIZIOP PAGE SPECIFIC STYLES */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%) !important;
    padding: 8rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath d='M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,200 L0,200 Z' fill='rgba(0,123,255,0.1)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    animation: waveFloat 8s ease-in-out infinite;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .cta-button {
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 103, 254, 0.3);
}

.page-hero .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 103, 254, 0.4);
}

/* Content Row */
.content-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    font-size: 2;
    color: #bed0df;
    margin-bottom: 3rem;
    text-align: center;
}

/* Challenges Section */
.challenges-section {
    background: linear-gradient(135deg, #F2F2F2 0%, #ffffff 100%);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    justify-items: center;
}

.challenges-grid .challenge-card:nth-child(4),
.challenges-grid .challenge-card:nth-child(5) {
    grid-column: span 1;
}

.challenges-grid .challenge-card:nth-child(4) {
    grid-column-start: 1;
    grid-row-start: 2;
}

.challenges-grid .challenge-card:nth-child(5) {
    grid-column-start: 3;
    grid-row-start: 2;
}

@media (max-width: 1024px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .challenges-grid .challenge-card:nth-child(4),
    .challenges-grid .challenge-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .challenges-grid .challenge-card:nth-child(4) {
        grid-column-start: auto;
        grid-row-start: auto;
    }
    
    .challenges-grid .challenge-card:nth-child(5) {
        grid-column-start: auto;
        grid-row-start: auto;
    }
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }
}

.challenge-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.challenge-card:hover::before {
    transform: scaleX(1);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 103, 254, 0.2);
    border-color: #0067FE;
}



.challenge-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.challenge-description {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.solution-arrow {
    font-size: 2rem;
    color: #0067FE;
    text-align: center;
    margin: 1.5rem 0;
}

.solution {
    font-size: 1.1rem;
    color: #0067FE;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(0, 103, 254, 0.1);
    border-radius: 10px;
    border-left: 4px solid #0067FE;
}

.improvement-bar {
    background: #E6E6E6;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1.5rem;
    position: relative;
}

.improvement-fill {
    height: 100%;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    width: 0;
    transition: width 2s ease-out;
    border-radius: 4px;
}

.improvement-text {
    position: absolute;
    right: 10px;
    top: -25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0067FE;
}

/* Agents Section */
.agents-section {
    background: white;
}

.agents-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .agents-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .agents-showcase {
        grid-template-columns: 1fr;
    }
}

.agent-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E6E6E6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 103, 254, 0.15);
    border-color: #0067FE;
}

.agent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.agent-icon {
    font-size: 2rem;
    color: #0067FE;
}

.agent-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.agent-status.available {
    background: #00E6E4;
}

.agent-status.coming-soon {
    background: #999999;
}

.agent-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.agent-card p {
    color: #999999;
    margin-bottom: 1.5rem;
}

.agent-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(0, 103, 254, 0.1);
    color: #0067FE;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 103, 254, 0.2);
}

.agent-metrics {
    text-align: center;
}

.metric {
    padding: 1rem;
    background: rgba(0, 103, 254, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 103, 254, 0.1);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0067FE;
    display: block;
}

.metric-label {
    font-size: 0.875rem;
    color: #999999;
    font-weight: 500;
}

/* Outcomes Section */
.outcomes-section {
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    color: white;
}

.outcomes-section .section-heading {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.outcomes-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.outcome-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.outcome-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.outcome-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.outcome-detail {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 103, 254, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 103, 254, 0.15);
    border-color: #0067FE;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.value-card p {
    color: #999999;
    line-height: 1.6;
}

/* Enhanced Advantage Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.advantage-card {
    background: linear-gradient(135deg, #ffffff 0%, #F2F2F2 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 103, 254, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 103, 254, 0.2);
    border-color: #0067FE;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 103, 254, 0.3);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.advantage-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-metric {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0067FE;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card p {
    color: #999999;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.advantage-badge {
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 103, 254, 0.3);
}

@media (max-width: 1024px) {
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantage-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.main-footer {
    background: #ffffff;
    border-top: 1px solid #CCCCCC;
    padding: 4rem 0 2rem;
    box-shadow: 0 -4px 20px rgba(0, 103, 254, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #999999;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0067FE;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #CCCCCC;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath d='M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,200 L0,200 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    animation: waveFloat 10s ease-in-out infinite;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.curved-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
}

.curved-divider svg {
    width: 100%;
    height: 100%;
}

.contact-wrapper {
    padding: 6rem 0;
    background: #F2F2F2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.info-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 103, 254, 0.1);
    border: 1px solid rgba(0, 103, 254, 0.1);
    height: fit-content;
}

.info-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #CCCCCC;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0067FE;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: #999999;
    font-size: 1.1rem;
}

.contact-item a {
    color: #0067FE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #015DF0;
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 103, 254, 0.1);
    border: 1px solid rgba(0, 103, 254, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #4D4D4D;
    margin-bottom: 0.5rem;
}

.input-field {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #CCCCCC;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.input-field:focus {
    outline: none;
    border-color: #0067FE;
    box-shadow: 0 0 0 3px rgba(0, 103, 254, 0.1);
}

.input-field.textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0067FE;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 103, 254, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 103, 254, 0.4);
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #00E6E4;
    display: none;
}

.demo-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.demo-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Platform Page Styles */
.platform-hero {
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.platform-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath d='M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,200 L0,200 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    animation: waveFloat 8s ease-in-out infinite;
}

.platform-hero-content {
    position: relative;
    z-index: 2;
}

.platform-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.platform-hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platform-cta {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.platform-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.agents-section {
    background: #F3F7FB;
    padding: 8rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #212529;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    border-radius: 2px;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    justify-items: center;
}

.agents-grid .agent-card:nth-child(4),
.agents-grid .agent-card:nth-child(5) {
    grid-column: span 1;
}

.agents-grid .agent-card:nth-child(4) {
    grid-column-start: 1;
    grid-row-start: 2;
}

.agents-grid .agent-card:nth-child(5) {
    grid-column-start: 3;
    grid-row-start: 2;
}

@media (max-width: 1024px) {
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .agents-grid .agent-card:nth-child(4),
    .agents-grid .agent-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .agents-grid .agent-card:nth-child(4) {
        grid-column-start: auto;
        grid-row-start: auto;
    }
    
    .agents-grid .agent-card:nth-child(5) {
        grid-column-start: auto;
        grid-row-start: auto;
    }
}

@media (max-width: 768px) {
    .agents-grid {
        grid-template-columns: 1fr;
    }
}

.agent-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 103, 254, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 103, 254, 0.1);
    width: 100%;
    max-width: 350px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 103, 254, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.agent-card:hover::before {
    opacity: 1;
}

.agent-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 103, 254, 0.2);
    border-color: #0067FE;
}

.agent-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.agent-link {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.agent-link.primary {
    background: #0067FE;
    color: white;
}

.agent-link.primary:hover {
    background: #015DF0;
    transform: translateY(-2px);
}

.agent-link.secondary {
    background: #F2F2F2;
    color: #0067FE;
    border: 1px solid #0067FE;
}

.agent-link.secondary:hover {
    background: #0067FE;
    color: white;
}

.flow-diagram {
    background: white;
    padding: 8rem 0;
}

.flow-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
    position: relative;
    align-items: start;
}

.flow-container::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    z-index: 0;
    opacity: 0.3;
}

.flow-step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step .image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    box-shadow: 0 10px 30px rgba(0, 103, 254, 0.3);
    z-index: 2;
}

.flow-step:nth-child(1) .image-placeholder::before {
    content: '🎤';
    font-size: 2.2rem;
}

.flow-step:nth-child(2) .image-placeholder::before {
    content: '🧠';
    font-size: 2.2rem;
}

.flow-step:nth-child(3) .image-placeholder::before {
    content: '⚡';
    font-size: 2.2rem;
}

.flow-step:nth-child(4) .image-placeholder::before {
    content: '📊';
    font-size: 2.2rem;
}



.flow-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
    line-height: 1.3;
}

.flow-step p {
    color: #999999;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 200px;
}

.flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 60px;
    right: -1rem;
    font-size: 1.5rem;
    color: #0067FE;
    font-weight: bold;
    z-index: 1;
}

.use-cases {
    background: linear-gradient(135deg, #F2F2F2 0%, #ffffff 100%);
    padding: 8rem 0;
    position: relative;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 103, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.use-case-tile {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.use-case-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    border-color: rgba(0, 103, 254, 0.3);
}

.use-case-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 103, 254, 0.02), rgba(0, 103, 254, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.use-case-tile:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.use-case-tile .image-placeholder {
    height: 180px;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    border-bottom: 3px solid #012770;
}

.use-case-tile .image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-tile:hover .image-placeholder::after {
    opacity: 1;
}



.use-case-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.use-case-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.8), transparent);
}



.use-case-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.use-case-tile:hover .use-case-content h3 {
    color: #0067FE;
}

.use-case-content p {
    color: #999999;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.platform-final-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.platform-final-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.platform-final-cta .platform-cta {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.platform-final-cta .platform-cta:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    padding: 8rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath d='M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,200 L0,200 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    animation: waveFloat 10s ease-in-out infinite;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #0067FE;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 103, 254, 0.3);
}

.hero-cta:hover {
    background: #015DF0;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 103, 254, 0.4);
}

.who-we-are {
    padding: 8rem 0;
    background: #ffffff;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333333;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0067FE;
    border-radius: 2px;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #808080;
    text-align: center;
}

.mission-vision {
    padding: 8rem 0;
    background: linear-gradient(135deg, #F2F2F2 0%, #ffffff 100%);
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: stretch;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: 100%;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 103, 254, 0.2);
    transition: transform 0.3s ease;
}

.mission-img:hover {
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .mission-image {
        order: -1;
        padding-top: 0;
    }
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.12);
    border-left: 6px solid #0067FE;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 103, 254, 0.02), rgba(0, 103, 254, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover::before, .vision-card:hover::before {
    opacity: 1;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(30, 41, 59, 0.15);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.mission-card p, .vision-card p {
    color: #808080;
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.values-section {
    padding: 8rem 0;
    background: #ffffff;
}

.values-container {
    position: relative;
    width: 800px;
    height: 800px;
    margin: 6rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.values-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border: 2px dashed rgba(0, 103, 254, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.value-card {
    position: absolute;
    width: 220px;
    height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #F2F2F2 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 103, 254, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.value-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 103, 254, 0.2);
    border-color: #0067FE;
}

.value-card:nth-child(1) {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.value-card:nth-child(2) {
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

.value-card:nth-child(3) {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.value-card:nth-child(4) {
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
}

.values-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 103, 254, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    line-height: 1.2;
}



.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 103, 254, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 103, 254, 0.2);
    border-color: #0067FE;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card p {
    color: #999999;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 400;
}

.value-card .image-placeholder {
    display: none;
}

@media (max-width: 768px) {
    .values-container {
        width: 100%;
        height: auto;
    }
    
    .values-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        position: static;
    }
    
    .value-card {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
        padding: 2rem;
    }
    
    .values-center {
        display: none;
    }
    
    .value-card .image-placeholder {
        display: block;
    }
}

.advisory-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #F2F2F2 0%, #ffffff 100%);
}

.certification-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.certification-row .image-placeholder {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #CCCCCC, #B3B3B3);
    border-radius: 12px;
    animation: none;
    border: 2px solid rgba(0, 103, 254, 0.1);
    transition: all 0.3s ease;
}

.certification-row .image-placeholder:hover {
    border-color: #0067FE;
    transform: scale(1.05);
}

.advisory-subtext {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #808080;
    font-size: 1.1rem;
    line-height: 1.7;
}

.aws-partnership {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 103, 254, 0.1);
}

.aws-logo img {
    transition: transform 0.3s ease;
}

.aws-partnership:hover .aws-logo img {
    transform: scale(1.05);
}

.aws-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

.aws-content p {
    color: #999999;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .aws-partnership {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

.security-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #333333 0%, #4D4D4D 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath d='M0,0 C150,100 350,100 500,50 C650,0 850,100 1000,50 L1000,0 Z' fill='rgba(0,123,255,0.1)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.security-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.security-section .section-heading {
    color: white;
    margin-bottom: 2rem;
}

.security-section .section-heading::after {
    background: #0067FE;
}

.security-block {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-footer {
    padding: 8rem 0;
    background: #ffffff;
    text-align: center;
}

.cta-footer h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 103, 254, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 103, 254, 0.4);
}

/* Resources Page Styles */
.resources-hero {
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    padding: 8rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.resources-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath d='M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,200 L0,200 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    animation: waveFloat 10s ease-in-out infinite;
}

.resources-hero-content {
    position: relative;
    z-index: 2;
}

.resources-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.resources-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0067FE;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 103, 254, 0.3);
}

.carousel-btn:hover {
    background: #015DF0;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    padding: 0 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.carousel-track .resource-card {
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.carousel-track .resource-card .blog-image {
    height: 200px;
    object-fit: cover;
}

.carousel-track .resource-card .resource-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.carousel-track .resource-card h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.carousel-track .resource-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #B3B3B3;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #0067FE;
}

@media (max-width: 768px) {
    .carousel-track .resource-card {
        min-width: 300px;
        max-width: 300px;
    }
    
    .prev-btn, .next-btn {
        display: none;
    }
}

.resource-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.08);
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 103, 254, 0.15);
    border-color: #0067FE;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 103, 254, 0.1);
}

.resource-card-content {
    padding: 2rem;
}

.resource-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #999999;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    color: #0067FE;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #015DF0;
}

.case-study-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.08);
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 103, 254, 0.15);
    border-color: #0067FE;
}

.case-study-card .image-placeholder {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
}

.case-study-content {
    flex: 1;
}

.case-study-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.company-name {
    color: #0067FE;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.industry-tag {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-text {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .nav {
        display: none;
    }

    .final-cta blockquote {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 5rem 0;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .users-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .final-cta blockquote {
        font-size: 1.1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}
/* Force 4 boxes in one line - Override existing styles */
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 4rem;
}

.users-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 4rem;
}

.feature-card, .persona-card {
    min-width: 0 !important;
    width: 100% !important;
}

/* Mobile responsive - 2x2 grid */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .users-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr !important;
    }
    
    .users-grid {
        grid-template-columns: 1fr !important;
    }
}
/* OTHER PAGES HERO STYLES */
.page-hero, .contact-hero {
    background: #ffffff;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #1A1A1A;
    border: none;
}

.page-hero h1, .contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #1A1A1A;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #1A1A1A;
    text-shadow: none;
}

.page-hero::before, .contact-hero::before {
    display: none;
}
/* CONTACT PAGE STYLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4D4D4D;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Wrapper */
.contact-wrapper {
    padding: 6rem 0;
    background: #F2F2F2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Info Box */
.info-box {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 103, 254, 0.1);
    border: 1px solid rgba(0, 103, 254, 0.1);
    height: fit-content;
}

.info-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #CCCCCC;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0067FE;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: #999999;
    font-size: 1.1rem;
}

.contact-item a {
    color: #0067FE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #015DF0;
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 103, 254, 0.15);
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: 0 25px 60px rgba(0, 103, 254, 0.2);
    border-color: rgba(0, 103, 254, 0.2);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #333333, #4D4D4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #4D4D4D;
    margin-bottom: 0.5rem;
}

.input-field {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #CCCCCC;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.input-field:focus {
    outline: none;
    border-color: #0067FE;
    box-shadow: 0 0 0 3px rgba(0, 103, 254, 0.1);
}

.input-field.textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0067FE;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 103, 254, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 103, 254, 0.4);
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #00E6E4;
    display: none;
}

/* CTA Footer */
.cta-footer {
    background: linear-gradient(135deg, #333333 0%, #4D4D4D 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath d='M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,0 L0,0 Z' fill='rgba(0,123,255,0.1)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.cta-footer h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-footer p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Curved Divider */
.curved-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
}

.curved-divider svg {
    width: 100%;
    height: 100%;
}

@keyframes waveFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Enhanced Contact Page Styles */

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 140px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Contact Options */
.contact-options {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 103, 254, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 103, 254, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 103, 254, 0.12);
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 1;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 103, 254, 0.25);
    border-color: #0067FE;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.contact-card:hover h3 {
    color: #0067FE;
}

.contact-card p {
    color: #999999;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.card-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 103, 254, 0.2);
    margin-top: auto;
}

.card-cta:hover {
    background: linear-gradient(135deg, #015DF0, #011745);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 103, 254, 0.3);
}

/* Enhanced Form Styles */
.form-subtitle {
    color: #999999;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 90%;
}

.form-note {
    font-size: 0.9rem;
    color: #999999;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Enhanced Info Box */
.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #0067FE;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #CCCCCC;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item div {
    flex: 1;
}

.trust-indicators {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #CCCCCC;
}

.trust-indicators h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    color: #999999;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F2F2F2 0%, #ffffff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 103, 254, 0.08);
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 103, 254, 0.15);
    border-color: #0067FE;
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #999999;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 200px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}