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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.header {
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E2E8F0;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6;
    font-family: 'Space Grotesk', sans-serif;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 15px;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.main-nav a:hover {
    color: #3B82F6;
    background-color: rgba(59, 130, 246, 0.1);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: #3B82F6;
    color: #ffffff;
    border: 1px solid #3B82F6;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
    border-radius: 8px;
}

.btn-primary:hover {
    background: #1E40AF;
    color: #ffffff;
    border-color: #1E40AF;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.btn-link {
    color: #3B82F6;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid #3B82F6;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.btn-link:hover {
    color: #ffffff;
    background: #3B82F6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 16px;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #FFFFFF;
}

.gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary.btn-large {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-large:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.trust-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 4px;
    line-height: 1;
}

.trust-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 24px;
}

.card-text {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 14px;
}

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

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Company Logos */
.company-logos {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.company-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="logos-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><rect x="5" y="5" width="15" height="15" fill="none" stroke="%233B82F6" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23logos-pattern)"/></svg>');
    opacity: 0.3;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.logos-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.logos-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.logo-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.logo-item:hover {
    transform: translateY(-5px);
    border-color: #3B82F6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
    background: rgba(255, 255, 255, 0.8);
}

.logo-item img {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(40%) sepia(100%) saturate(2000%) hue-rotate(200deg) brightness(0.8);
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(40%) sepia(100%) saturate(2000%) hue-rotate(200deg) brightness(1);
}

.logo-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Statistics */
.stats {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%233B82F6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.5;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.stats-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.stats-header p {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #3B82F6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.stat-icon {
    margin-bottom: 20px;
    color: #3B82F6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #3B82F6;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: #1A1A1A;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.stat-trend {
    font-size: 14px;
    color: #10B981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="features-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,5 35,15 35,25 20,35 5,25 5,15" fill="%233B82F6" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23features-pattern)"/></svg>');
    opacity: 0.5;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #3B82F6;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.features-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 24px;
    line-height: 1.2;
}

.features-header p {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #3B82F6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    margin-bottom: 24px;
    color: #3B82F6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 400;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.feature-stats .stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #3B82F6;
    line-height: 1;
}

.feature-stats .stat-label {
    font-size: 12px;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Tabs */
.services-tabs {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.services-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E2E8F0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.tabs-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.tabs-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tabs-header p {
    font-size: 1.2rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tabs-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.tab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.tab-item.active::before {
    opacity: 1;
}

.tab-item.active {
    border-color: #3B82F6;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.25);
}

.tab-item:hover:not(.active) {
    border-color: #3B82F6;
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.tab-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tab-item.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
}

.tab-icon svg {
    width: 24px;
    height: 24px;
    color: #3B82F6;
    transition: color 0.3s ease;
}

.tab-item.active .tab-icon svg {
    color: #FFFFFF;
}

.tab-item .tab-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.tab-item .tab-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.tab-item.active .tab-content h3 {
    color: #FFFFFF;
}

.tab-item .tab-content p {
    font-size: 0.9rem;
    color: #64748B;
    margin: 0;
    transition: color 0.3s ease;
}

.tab-item.active .tab-content p {
    color: rgba(255, 255, 255, 0.9);
}

.tabs-content {
    margin-top: 60px;
}

.tabs-content .tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tabs-content .tab-content.active {
    display: block;
}

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

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 20px 0;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.service-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 24px;
    line-height: 1.2;
}

.service-content p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: #F1F5F9;
    border-color: #3B82F6;
    transform: translateX(4px);
}

.feature-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.feature-item span:last-child {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

/* Enhanced Animations */
.tab-item {
    animation: slideInUp 0.6s ease-out;
}

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

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

.service-item {
    animation: fadeInScale 0.8s ease-out;
}

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

.feature-item {
    animation: slideInLeft 0.5s ease-out;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

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

/* Hover Effects */
.tab-item:hover .tab-icon {
    transform: scale(1.1) rotate(5deg);
}

.tab-item.active .tab-icon {
    animation: pulse 2s infinite;
}

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

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.service-image:hover::after {
    opacity: 1;
}

/* Loading States */
.tab-content.loading {
    opacity: 0.7;
    pointer-events: none;
}

.tab-content.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #3B82F6;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Demo Modal Styles */
.demo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.demo-modal-content {
    background: #FFFFFF;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
}

.demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid #E2E8F0;
}

.demo-modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

.close-demo-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748B;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-demo-modal:hover {
    background: #F1F5F9;
    color: #1A1A1A;
}

.demo-video-container {
    padding: 40px;
    text-align: center;
}

.demo-video-placeholder {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 16px;
    padding: 60px 40px;
    border: 2px dashed #CBD5E1;
    position: relative;
    overflow: hidden;
}

.demo-video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="demo-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%233B82F6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23demo-pattern)"/></svg>');
    opacity: 0.3;
}

.demo-video-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.demo-video-placeholder h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.demo-video-placeholder p {
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.demo-feature .feature-icon {
    font-size: 16px;
}

.demo-play-btn {
    position: relative;
    z-index: 1;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.demo-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.demo-modal-footer {
    padding: 30px 40px;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.demo-modal-footer p {
    font-size: 1rem;
    color: #64748B;
    margin-bottom: 20px;
}

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

/* Mobile Demo Modal */
@media (max-width: 768px) {
    .demo-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .demo-modal-header {
        padding: 20px 24px 16px;
    }
    
    .demo-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .demo-video-container {
        padding: 24px;
    }
    
    .demo-video-placeholder {
        padding: 40px 24px;
    }
    
    .demo-video-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .demo-video-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .demo-modal-footer {
        padding: 24px;
    }
}

/* Growth Engine Section */
.growth-engine {
    padding: 80px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

.growth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.growth-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 40px;
    line-height: 1.2;
}

.growth-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.growth-card {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.growth-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #3B82F6;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(15, 15, 15, 0.4) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.card-content h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-button {
    font-size: 14px;
    font-weight: 500;
    color: #3B82F6;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    border: 1px solid #3B82F6;
    margin-bottom: 20px;
}

.card-button:hover {
    color: #ffffff;
    background: #3B82F6;
}

/* How it works Section */
.how-it-works {
    padding: 80px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.how-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.how-icon svg {
    width: 16px;
    height: 17px;
}

.how-label {
    font-size: 14px;
    font-weight: 600;
    color: #3B82F6;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.how-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 24px;
    line-height: 1.2;
}

.how-container p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
    font-weight: 400;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3B82F6;
}

.step:hover {
    transform: translateY(-2px);
    border-color: #3B82F6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.step-icon {
    margin-bottom: 20px;
}

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

.step h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    font-weight: 400;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 40px;
    line-height: 1.2;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-item {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3B82F6;
}

.testimonial-item:hover {
    transform: translateY(-2px);
    border-color: #3B82F6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-item h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 16px;
    line-height: 1.3;
}

.testimonial-item p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 400;
}

.testimonial-author {
    font-weight: 600;
    color: #3B82F6;
    font-style: italic;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

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

.faq h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #3B82F6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.faq-question span:first-child {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.2rem;
    color: #3B82F6;
    font-weight: 400;
    transition: all 0.2s ease;
}

.faq-answer {
    padding: 0 24px 24px;
    background: #FFFFFF;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 400;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer CTA Section */
.footer-cta {
    padding: 80px 0;
    background: #F8FAFC;
    text-align: center;
    color: #1A1A1A;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #E2E8F0;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #1A1A1A;
}

.footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Footer */
.footer {
    background: #FFFFFF;
    color: #1A1A1A;
    padding: 60px 0 40px;
    border-top: 1px solid #E2E8F0;
}

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

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-logo img {
    height: 42px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #6B7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 400;
    padding: 4px 8px;
    border-radius: 6px;
}

.footer-column a:hover {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #6B7280;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 400;
}

.footer-legal a:hover {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.1);
}

/* Modern Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    border: 1px solid #E2E8F0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D4AA, #00B894);
}

.popup-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.popup-content p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.popup-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.popup-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.popup-btn-primary {
    background-color: #3B82F6;
    color: #FFFFFF;
    border: 1px solid #3B82F6;
}

.popup-btn-primary:hover {
    background-color: #1E40AF;
    border-color: #1E40AF;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.popup-btn-secondary {
    background-color: transparent;
    color: #6B7280;
    border: 1px solid #E2E8F0;
}

.popup-btn-secondary:hover {
    background-color: #F8FAFC;
    color: #1A1A1A;
    border-color: #3B82F6;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #6B7280;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.popup-close:hover {
    color: #1A1A1A;
    background-color: #F8FAFC;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.2s ease;
    max-width: 480px;
    margin: 0 auto;
}

.cookie-consent.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3B82F6;
    border-radius: 12px 12px 0 0;
}

.cookie-consent h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cookie-consent p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}


/* Plans Page Styles */
.plans-page {
    min-height: 100vh;
}

.plans-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.plans-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="plans-hero-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23plans-hero-pattern)"/></svg>');
    opacity: 0.3;
}

.plans-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.plans-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #FFFFFF;
}

.plans-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.plans-hero .hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-features .feature-icon {
    color: #10B981;
    font-weight: 700;
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.pricing-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-pattern" x="0" y="0" width="35" height="35" patternUnits="userSpaceOnUse"><polygon points="17.5,5 30,15 30,25 17.5,35 5,25 5,15" fill="%233B82F6" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-pattern)"/></svg>');
    opacity: 0.5;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.pricing-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2;
}

.pricing-container p {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.6;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.toggle-label {
    font-weight: 600;
    color: #475569;
    font-size: 16px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #6b7280;
    transition: .4s;
    border-radius: 30px;
    border: 2px solid #3B82F6;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background-color: #3B82F6;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #3B82F6;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
    background-color: #ffffff;
}

.discount-badge {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

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

.plan-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1E40AF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.plan-popular {
    border-color: #1E40AF;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
}

.plan-popular:hover {
    transform: translateY(-8px) scale(1.07);
}

.popular-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.plan-price {
    margin-bottom: 20px;
}

.price-currency {
    font-size: 2rem;
    font-weight: 600;
    color: #3B82F6;
    vertical-align: top;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #3B82F6;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: #475569;
    font-weight: 500;
}

.plan-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.plan-features {
    margin-bottom: 40px;
}

.plan-features ul {
    list-style: none;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid #6b7280;
}

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

.plan-cta {
    margin-top: auto;
}

/* Features Comparison Section */
.features-comparison {
    padding: 120px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

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

.comparison-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.comparison-table {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-header > div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-header > div:last-child {
    border-right: none;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #6b7280;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid #6b7280;
    font-weight: 500;
    color: #475569;
}

.comparison-row > div:last-child {
    border-right: none;
}

.feature-name {
    text-align: left !important;
    font-weight: 600 !important;
    color: #1e293b !important;
}

.plan-value {
    font-weight: 600;
}

/* Blog Content Section */
.blog-content {
    padding: 120px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

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

.blog-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-post {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.blog-post:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1E40AF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.blog-category {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.blog-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.blog-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #1E40AF;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

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

.faq-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #3B82F6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.faq-question span:first-child {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.2rem;
    color: #3B82F6;
    font-weight: 400;
    transition: all 0.2s ease;
}

.faq-answer {
    padding: 0 24px 24px;
    background: #FFFFFF;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 400;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Plans CTA Section */
.plans-cta {
    padding: 120px 0;
    background: #F8FAFC;
    text-align: center;
    color: #1A1A1A;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #E2E8F0;
}

.plans-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.plans-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.plans-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.1;
    color: #1A1A1A;
}

.plans-cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #1A1A1A;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee span {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

/* Privacy Policy Page Styles */
.legal-page {
    min-height: 100vh;
    padding: 120px 0;
    background: #FFFFFF;
}

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

.legal-container h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.last-updated {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 60px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 50px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.legal-section:hover {
    border-color: #1E40AF;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.legal-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.3;
}

.legal-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #3B82F6;
    margin-bottom: 16px;
    margin-top: 24px;
    line-height: 1.3;
}

.legal-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-info {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    margin-top: 20px;
}

.contact-info p {
    color: #ffffff !important;
    margin-bottom: 12px;
    font-weight: 500;
}

.contact-info strong {
    font-weight: 700;
}

/* Missing Button Styles */
.btn-outline {
    background: transparent;
    color: #3B82F6;
    border: 2px solid #3B82F6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #F8FAFC;
    color: #1A1A1A;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #E2E8F0;
    color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Insights Page Styles */
.insights-page {
    min-height: 100vh;
}

.insights-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.insights-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="insights-hero-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23insights-hero-pattern)"/></svg>');
    opacity: 0.3;
}

.insights-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.insights-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #FFFFFF;
}

.insights-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.insights-hero .hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    min-width: 200px;
}

.metric:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
}

.metric-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.metric-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.metric-trend {
    font-size: 12px;
    color: #10B981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Dashboard Overview Section */
.dashboard-overview {
    padding: 120px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

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

.dashboard-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

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

.dashboard-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
}

.dashboard-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1E40AF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    flex-shrink: 0;
}

.card-title {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
}

.trend-indicator {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trend-indicator.positive {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.trend-indicator.neutral {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #ffffff;
}

.trend-indicator.negative {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.card-content {
    margin-top: 20px;
}

/* Chart Styles */
.chart-placeholder {
    height: 120px;
    margin-bottom: 20px;
   
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
    width: 100%;
}

.bar {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    border-radius: 4px 4px 0 0;
    min-width: 12px;
    transition: all 0.3s ease;
    animation: barGrow 1s ease-out;
}

.bar:hover {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    transform: scaleY(1.1);
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--bar-height, 50%); }
}

.metric-summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.summary-item {
    text-align: center;
    flex: 1;
}

.summary-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.summary-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

/* Product List Styles */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
   
    border-radius: 12px;
    border: 1px solid #6b7280;
    transition: all 0.3s ease;
}

.product-item:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    transform: translateX(5px);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.product-sales {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.product-item:hover .product-name,
.product-item:hover .product-sales {
    color: #ffffff;
}

.product-revenue {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #3B82F6;
    font-size: 1.1rem;
}

.product-item:hover .product-revenue {
    color: #ffffff;
}

/* Traffic Sources Styles */
.traffic-sources {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.source-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.source-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.source-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.source-percentage {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #3B82F6;
    font-size: 1.1rem;
}

.source-bar {
    height: 8px;
    background: #6b7280;
    border-radius: 4px;
    overflow: hidden;
}

.source-fill {
    height: 100%;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* Customer Metrics Styles */
.customer-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
   
    border-radius: 12px;
    border: 1px solid #6b7280;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    transform: translateX(5px);
}

.metric-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
}

.metric-item:hover .metric-icon {
    background: rgba(255, 255, 255, 0.2);
}

.metric-data {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-item:hover .metric-label {
    color: rgba(255, 255, 255, 0.8);
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.2rem;
}

.metric-item:hover .metric-value {
    color: #ffffff;
}

/* Analytics Features Section */
.analytics-features {
    padding: 120px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

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

.features-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

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

.feature-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1E40AF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.feature-icon {
    margin-bottom: 0px;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card p {
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
}

/* Market Trends Section */
.market-trends {
    padding: 120px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

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

.trends-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

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

.trend-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trend-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
}

.trend-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1E40AF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.trend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.trend-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.trend-arrow {
    font-size: 24px;
}

.trend-stat {
    text-align: center;
    margin-bottom: 20px;
}

.trend-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3B82F6;
    line-height: 1;
    margin-bottom: 4px;
}

.trend-period {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trend-content p {
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
}

/* Performance Benchmarks Section */
.performance-benchmarks {
    padding: 120px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

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

.benchmarks-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.benchmark-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
}

.benchmark-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benchmark-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benchmark-item:hover {
    border-color: #1E40AF;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.benchmark-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benchmark-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.benchmark-industry {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.benchmark-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.benchmark-score {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #3B82F6;
    line-height: 1;
}

.benchmark-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benchmark-status.excellent {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.benchmark-status.good {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
}

.benchmark-status.needs-improvement {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

/* Actionable Insights Section */
.actionable-insights {
    padding: 120px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

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

.insights-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.4s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.insight-item:hover {
    border-color: #1E40AF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.insight-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.insight-content {
    flex: 1;
}

.insight-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.insight-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.insight-action {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.insight-action:hover {
    color: #1E40AF;
    text-decoration: underline;
}

/* Insights CTA Section */
.insights-cta {
    padding: 120px 0;
    background: #F8FAFC;
    text-align: center;
    color: #1A1A1A;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #E2E8F0;
}

.insights-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.insights-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.insights-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.1;
    color: #1A1A1A;
}

.insights-cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #1A1A1A;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.features-highlight {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.features-highlight span {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

/* Start Here Page Styles */
.start-here-page {
    min-height: 100vh;
}

.start-hero {
    background: #F8FAFC;
    padding: 120px 0;
    text-align: center;
    color: #1A1A1A;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #E2E8F0;
}

.start-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.start-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.start-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.1;
    color: #1A1A1A;
}

.start-hero p {
    font-size: 1.3rem;
    color: #1A1A1A;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFFFFF;
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #3B82F6;
}

.stat-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #3B82F6;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(59, 130, 246, 0.2);
    border-color: #3B82F6;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #3B82F6;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Start Guide Section */
.quick-start {
    padding: 120px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

.quick-start-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-start-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.quick-start-container p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
    text-align: center;
}

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

.step-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1E40AF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.step-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid #3B82F6;
    display: inline-block;
}

.step-link:hover {
    color: #ffffff;
    background: #3B82F6;
    transform: translateY(-2px);
}

/* Learning Path Section */
.learning-path {
    padding: 120px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

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

.learning-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.learning-container p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
    text-align: center;
}

.learning-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.module {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
}

.module:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1E40AF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

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

.module-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
}

.module-badge {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
    line-height: 1.3;
}

.module-content p {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
}

.module-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.module-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.module-link:hover {
    color: #2563EB;
    transform: translateX(4px);
}

.module p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.module ul {
    list-style: none;
    margin-bottom: 24px;
}

.module li {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}

.module li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3B82F6;
    font-weight: 700;
}

.module-duration {
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Resources Section */
.resources-section {
    padding: 120px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
}

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

.resources-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

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

.resource-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #1E40AF);
}

.resource-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1E40AF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.resource-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.resource-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.resource-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.resource-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid #3B82F6;
    display: inline-block;
}

.resource-link:hover {
    color: #ffffff;
    background: #3B82F6;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

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

.faq-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #3B82F6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.faq-question span:first-child {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.2rem;
    color: #3B82F6;
    font-weight: 400;
    transition: all 0.2s ease;
}

.faq-answer {
    padding: 0 24px 24px;
    background: #FFFFFF;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 400;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Start CTA Section */
.start-cta {
    padding: 120px 0;
    background: #F8FAFC;
    text-align: center;
    color: #1A1A1A;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #E2E8F0;
}

.start-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.start-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.start-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.1;
    color: #1A1A1A;
}

.start-cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #1A1A1A;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.guarantee {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee span {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .hero {
        padding: 80px 0;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 20px;
    }
    
    .floating-cards {
        display: none;
    }
    
    /* Services Tabs Mobile */
    .services-tabs {
        padding: 60px 0;
    }
    
    .tabs-header h2 {
        font-size: 2.4rem;
    }
    
    .tabs-header p {
        font-size: 1rem;
    }
    
    .tabs-nav {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .tab-item {
        padding: 20px;
        gap: 12px;
    }
    
    .tab-icon {
        width: 40px;
        height: 40px;
    }
    
    .tab-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .tab-item .tab-content h3 {
        font-size: 1.1rem;
    }
    
    .tab-item .tab-content p {
        font-size: 0.85rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .service-content h2 {
        font-size: 2.2rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .service-features {
        gap: 12px;
    }
    
    .feature-item {
        padding: 10px 12px;
    }
    
    .feature-item span:last-child {
        font-size: 13px;
    }
    
    .stats-header h2 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .logos-header h3 {
        font-size: 1.5rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .features-header h2 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .growth-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .growth-card {
        height: 280px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-item {
        padding: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .tab-item {
        width: 100%;
        max-width: 300px;
    }
    
    .popup-content {
        padding: 30px;
        margin: 20px;
    }
    
    .age-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .cookie-consent {
        left: 15px;
        right: 15px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .benefits h2,
    .growth-container h2,
    .how-container h2,
    .testimonials h2,
    .faq h2,
    .footer-cta h2 {
        font-size: 2.2rem;
    }
    
    .logos-container {
        gap: 20px;
    }
    
    .logos-container img {
        height: 40px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .age-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .age-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    /* Plans Page Responsive */
    .plans-hero h1 {
        font-size: 2.5rem;
    }
    
    .plans-hero p {
        font-size: 1.1rem;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 15px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px;
    }
    
    .comparison-row > div {
        border-bottom: 1px solid #6b7280;
    }
    
    .comparison-row > div:last-child,
    .comparison-header > div:last-child {
        border-bottom: none;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-post {
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .guarantee {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Privacy Policy Responsive */
    .legal-container h1 {
        font-size: 2.5rem;
    }
    
    .legal-section {
        padding: 30px 20px;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    /* Insights Page Responsive */
    .insights-hero h1 {
        font-size: 2.5rem;
    }
    
    .insights-hero p {
        font-size: 1.1rem;
    }
    
    .hero-metrics {
        gap: 30px;
    }
    
    .metric {
        padding: 20px;
    }
    
    .metric-value {
        font-size: 2.2rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .chart-placeholder {
        height: 80px;
        padding: 15px;
    }
    
    .metric-summary {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .product-revenue {
        align-self: flex-end;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .trends-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trend-card {
        padding: 20px;
    }
    
    .trend-number {
        font-size: 2rem;
    }
    
    .benchmark-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    
    .benchmark-value {
        align-items: flex-start;
    }
    
    .insight-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .insight-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .features-highlight {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Start Here Page Responsive */
    .start-hero h1 {
        font-size: 2.5rem;
    }
    
    .start-hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .learning-modules {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .module {
        padding: 30px 20px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-card {
        padding: 30px 20px;
    }
    
    .resource-icon {
        font-size: 36px;
    }
    
    .guarantee {
        flex-direction: column;
        gap: 15px;
    }
}

/* Registration Popup Styles */
.register-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.register-popup-content {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 480px;
    margin: 20px;
    position: relative;
    border: 1px solid #E2E8F0;
}

.register-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.register-popup-header h2 {
    margin: 0;
    color: #1A1A1A;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.close-popup {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6B7280;
    padding: 8px;
    line-height: 1;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.close-popup:hover {
    color: #1A1A1A;
    background: #F8FAFC;
}

.register-form .form-group {
    margin-bottom: 20px;
}

.register-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1A1A1A;
    font-size: 0.9rem;
}

.register-form .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: #FFFFFF;
}

.register-form .form-group input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-register {
    width: 100%;
    background: #3B82F6;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-register:hover {
    background: #1E40AF;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.error-message {
    color: #EF4444;
    font-size: 0.8rem;
    margin-top: 6px;
}

.success-message {
    color: #10B981;
    font-size: 0.8rem;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .register-popup-content {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .register-popup-header h2 {
        font-size: 1.25rem;
    }
}

/* Mobile Optimization Section */
.mobile-optimization {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.mobile-optimization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mobile-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23mobile-pattern)"/></svg>');
    opacity: 0.3;
}

.mobile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mobile-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.mobile-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.mobile-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Marketing Campaigns Section */
.marketing-campaigns {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.marketing-campaigns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="marketing-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="25" height="25" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23marketing-pattern)"/></svg>');
    opacity: 0.3;
}

.campaigns-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.campaigns-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.campaigns-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.campaigns-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Social Media Section */
.social-media {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="social-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="45" cy="15" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="15" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="15" cy="45" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="45" cy="45" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="45" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="15" cy="75" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="45" cy="75" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="2" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23social-pattern)"/></svg>');
    opacity: 0.3;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.social-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.social-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .mobile-container h2,
    .campaigns-container h2,
    .social-container h2 {
        font-size: 2.2rem;
    }
    
    .mobile-content h3,
    .campaigns-content h3,
    .social-content h3 {
        font-size: 1.5rem;
    }
    
    .mobile-content p,
    .campaigns-content p,
    .social-content p {
        font-size: 1rem;
    }
    
    .mobile-optimization,
    .marketing-campaigns,
    .social-media {
        padding: 60px 0;
    }
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="success-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><star points="20,5 25,15 35,15 27,22 30,32 20,27 10,32 13,22 5,15 15,15" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23success-pattern)"/></svg>');
    opacity: 0.3;
}

.success-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.success-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 60px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.success-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.success-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.success-card p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Trending Products Section */
.trending-products {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.trending-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="trending-pattern" x="0" y="0" width="35" height="35" patternUnits="userSpaceOnUse"><polygon points="17.5,5 25,15 30,15 30,20 25,20 17.5,10 10,20 5,20 5,15 10,15" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23trending-pattern)"/></svg>');
    opacity: 0.3;
}

.trending-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trending-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 60px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.product-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.product-card p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Marketing Guide Section */
.marketing-guide {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.marketing-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="marketing-guide-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><rect x="5" y="5" width="20" height="20" fill="none" stroke="%23ff6b35" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23marketing-guide-pattern)"/></svg>');
    opacity: 0.3;
}

.marketing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.marketing-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.guide-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.guide-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Supplier Management Section */
.supplier-management {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.supplier-management::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="supplier-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="3" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23supplier-pattern)"/></svg>');
    opacity: 0.3;
}

.supplier-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.supplier-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.supplier-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.supplier-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Customer Support Section */
.customer-support {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.customer-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="customer-support-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,2 L18,10 L10,18 L2,10 Z" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23customer-support-pattern)"/></svg>');
    opacity: 0.3;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.support-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.support-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.support-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Fulfillment Optimization Section */
.fulfillment-optimization {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.fulfillment-optimization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="fulfillment-pattern" x="0" y="0" width="35" height="35" patternUnits="userSpaceOnUse"><rect x="5" y="5" width="25" height="25" fill="none" stroke="%23ff6b35" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23fulfillment-pattern)"/></svg>');
    opacity: 0.3;
}

.fulfillment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.fulfillment-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.fulfillment-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.fulfillment-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Product Catalog Section */
.product-catalog {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.product-catalog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="catalog-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><rect x="10" y="10" width="10" height="10" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23catalog-pattern)"/></svg>');
    opacity: 0.3;
}

.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.catalog-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.catalog-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.catalog-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Knowledge Base Section */
.knowledge-base {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.knowledge-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="knowledge-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="12.5" cy="12.5" r="6" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23knowledge-pattern)"/></svg>');
    opacity: 0.3;
}

.knowledge-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.knowledge-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.knowledge-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.knowledge-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Video Tutorials Section */
.video-tutorials {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.video-tutorials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="video-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,10 30,20 20,30 10,20" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23video-pattern)"/></svg>');
    opacity: 0.3;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.video-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.video-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="community-pattern" x="0" y="0" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="3" fill="%23ff6b35" opacity="0.1"/><circle cx="17.5" cy="17.5" r="8" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23community-pattern)"/></svg>');
    opacity: 0.3;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.community-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.community-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.community-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Support Section */
.support {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="support-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><rect x="5" y="5" width="20" height="20" fill="none" stroke="%23ff6b35" stroke-width="1" opacity="0.1"/><circle cx="15" cy="15" r="2" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23support-pattern)"/></svg>');
    opacity: 0.3;
}

/* Store Setup Section */
.store-setup {
    padding: 100px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.store-setup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="store-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><rect x="5" y="5" width="15" height="15" fill="none" stroke="%23ff6b35" stroke-width="1" opacity="0.1"/><rect x="8" y="8" width="9" height="9" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23store-pattern)"/></svg>');
    opacity: 0.3;
}

.setup-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.setup-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.setup-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 20px;
}

.setup-content p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
}

/* Responsive Design for All New Sections */
@media (max-width: 768px) {
    .success-container h2,
    .trending-container h2,
    .marketing-container h2,
    .supplier-container h2,
    .support-container h2,
    .fulfillment-container h2,
    .catalog-container h2,
    .knowledge-container h2,
    .video-container h2,
    .community-container h2,
    .setup-container h2 {
        font-size: 2.2rem;
    }
    
    .success-card h3,
    .product-card h3,
    .guide-content h3,
    .supplier-content h3,
    .support-content h3,
    .fulfillment-content h3,
    .catalog-content h3,
    .knowledge-content h3,
    .video-content h3,
    .community-content h3,
    .setup-content h3 {
        font-size: 1.5rem;
    }
    
    .success-card p,
    .product-card p,
    .guide-content p,
    .supplier-content p,
    .support-content p,
    .fulfillment-content p,
    .catalog-content p,
    .knowledge-content p,
    .video-content p,
    .community-content p,
    .setup-content p {
        font-size: 1rem;
    }
    
    .success-stories,
    .trending-products,
    .marketing-guide,
    .supplier-management,
    .customer-support,
    .fulfillment-optimization,
    .product-catalog,
    .knowledge-base,
    .video-tutorials,
    .community,
    .support,
    .store-setup {
        padding: 60px 0;
    }
    
    .success-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
