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

/* Social Sharing Styles */
.social-share {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-text {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.addthis_inline_share_toolbox {
    display: flex;
    gap: 0.5rem;
}

/* Override AddThis default styles */
.addthis_inline_share_toolbox .at-share-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
}

.addthis_inline_share_toolbox .at-share-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.nav-logo:hover {
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.nav-logo h2 {
    color: #2563EB;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563EB;
}

.login-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.signup-btn {
    padding: 8px 16px;
    background: #2563EB;
    color: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: #1d4ed8;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2563EB;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: white;
    color: #2563EB;
    border: 2px solid #2563EB;
}

.btn-secondary:hover {
    background: #2563EB;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #2563EB;
    border: 2px solid #2563EB;
}

.btn-outline:hover {
    background: #2563EB;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    margin-bottom: 3rem;
}

.hero-text-full {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text-full h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-text-full p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-dashboard-full {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 1400px;
}

.dashboard-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

.dashboard-container {
    display: flex;
    height: 600px;
    background: #f8fafc;
}

.dashboard-sidebar {
    width: 250px;
    background: white;
    border-right: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.sidebar-logo {
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.sidebar-logo h3 {
    color: #2563EB;
    font-weight: 700;
    font-size: 1.25rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.nav-item:hover,
.nav-item.active {
    background: #eff6ff;
    color: #2563EB;
    border-right: 3px solid #2563EB;
}

.nav-item i {
    width: 16px;
    font-size: 0.875rem;
}

.dashboard-main {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h2 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
}

.quick-add-btn {
    background: #2563EB;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.875rem;
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.widget {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.widget h4 {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.storage-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meter-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(#2563EB 0deg 245deg, #e5e7eb 245deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.meter-circle::before {
    content: '';
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.meter-circle span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 0.875rem;
    color: #2563EB;
}

.metric-widget {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 0.5rem;
}

.metric-period {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.referral-widget {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
}

.referral-widget .metric-value {
    color: #0ea5e9;
}

.commission-widget {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
}

.commission-widget .metric-value {
    color: #22c55e;
}

.referral-chart-widget {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border: 2px solid #f59e0b;
}

.referral-chart-bars {
    display: flex;
    gap: 6px;
    align-items: end;
    height: 100px;
    justify-content: center;
}

.referral-bar {
    width: 16px;
    background: linear-gradient(to top, #f59e0b, #fbbf24);
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
}

.referral-bar:hover {
    background: linear-gradient(to top, #d97706, #f59e0b);
    transform: scaleY(1.1);
}

.qr-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.qr-code {
    width: 40px;
    height: 40px;
    background: #1f2937;
    border-radius: 4px;
    position: relative;
}

.qr-code::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 2px;
}

.share-btn {
    background: #f3f4f6;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #6b7280;
    cursor: pointer;
}

.dashboard-charts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.chart-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.chart-widget h4 {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.products-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-row {
    display: grid;
    grid-template-columns: 30px 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.875rem;
}

.product-thumb {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
    border-radius: 4px;
}

.chart-area {
    height: 120px;
    display: flex;
    align-items: end;
    justify-content: center;
}

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

.bar {
    width: 20px;
    background: linear-gradient(to top, #2563EB, #60a5fa);
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
}

.bar:hover {
    background: linear-gradient(to top, #1d4ed8, #3b82f6);
}

/* Problem & Solution Section */
.problem-solution {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card,
.solution-card {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.problem-card {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.solution-card {
    background: #f0f9ff;
    border: 2px solid #bae6fd;
}

.problem-icon,
.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3,
.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.problem-card ul,
.solution-card ul {
    list-style: none;
    text-align: left;
}

.problem-card li,
.solution-card li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #374151;
}

/* Themes Showcase Section */
.themes-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.themes-section .section-header h2 {
    color: white;
}

.themes-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.themes-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.themes-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: white;
    color: #1f2937;
}

.theme-slide.active {
    opacity: 1;
}

.theme-preview {
    flex: 1;
    display: flex;
    justify-content: center;
}

.theme-mockup {
    width: 400px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    position: relative;
}

.theme-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.theme-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.theme-overlay .theme-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.theme-logo {
    font-weight: 700;
    font-size: 1.25rem;
}

.theme-nav {
    display: flex;
    gap: 1.5rem;
}

.theme-nav span {
    font-size: 0.9rem;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.2s;
}

.theme-nav span:hover {
    opacity: 1;
}

.theme-hero {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.theme-hero-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.theme-hero-text p {
    margin-bottom: 1rem;
    opacity: 0.9;
    color: white;
}

.theme-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: white;
    color: #1f2937;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.theme-btn:hover {
    transform: translateY(-1px);
}

.theme-products {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
}

.theme-product {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    backdrop-filter: blur(5px);
}

/* Fashion Theme */
.fashion-theme .theme-logo {
    color: #ff6b6b;
    font-weight: 700;
}

/* Electronics Theme */
.electronics-theme .theme-logo {
    color: #3742fa;
    font-weight: 700;
}

/* Furniture Theme */
.food-theme .theme-logo {
    color: #8b4513;
    font-weight: 700;
}

/* Beauty Theme */
.beauty-theme .theme-logo {
    color: #fd79a8;
    font-weight: 700;
}

/* Watch Theme */
.watch-theme .theme-logo {
    color: #ffd700;
    font-weight: 700;
}

/* Interior Theme */
.interior-theme .theme-logo {
    color: #2c5530;
    font-weight: 700;
}

.theme-info {
    flex: 1;
    padding-left: 2rem;
}

.theme-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.theme-info p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.theme-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.theme-features span {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.themes-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    background: white;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.dot:hover {
    background: #9ca3af;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -4px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #2563EB;
    transform: scale(1.05);
    box-shadow: 0 20px 40px -4px rgba(37, 99, 235, 0.2);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563EB;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.plan-header p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #374151;
}

/* Referral Section */
.referral {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563EB 100%);
    color: white;
}

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

.referral-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.referral-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.referral-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.earnings-dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.earnings-dashboard h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.earnings-metric {
    text-align: center;
    margin-bottom: 2rem;
}

.earnings-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
}

.earnings-period {
    font-size: 0.875rem;
    opacity: 0.8;
}

.referral-chart {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 80px;
    justify-content: center;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, #fbbf24, #f59e0b);
    border-radius: 2px 2px 0 0;
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: #f8fafc;
}

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

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience-icon i {
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.audience-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1f2937;
}

.comparison-table th:first-child {
    background: #2563EB;
    color: white;
}

.check {
    color: #059669;
    font-weight: 600;
}

.cross {
    color: #dc2626;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

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

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

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
    border-radius: 50%;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563EB 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.guarantee-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.badge i {
    font-size: 1.25rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

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

.faq-question:hover {
    color: #2563EB;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding-bottom: 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Page Styles */
.about-page {
    padding-top: 80px;
}

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.mission-section {
    padding: 80px 0;
    background: white;
}

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

.mission-text h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 15px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
}

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

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

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.team-section {
    padding: 80px 0;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}





/* Contact Page Styles */
.contact-page {
    padding-top: 80px;
}

.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-content {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-section h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

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

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

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

.form-group label {
    display: block;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.contact-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
}

.contact-details h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #718096;
}

.chat-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.quick-links {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-links h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

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

.quick-links a {
    color: #4a5568;
    text-decoration: none;
}

.quick-links a:hover {
    color: #667eea;
}

.sales-team-section {
    padding: 80px 0;
    background: white;
}

.sales-team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
}

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

.sales-option {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.sales-option:hover {
    transform: translateY(-5px);
}

.sales-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.sales-option h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .about-hero h1,
    .blog-hero h1,
    .careers-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-content,
    .blog-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid,
    .culture-grid,
    .benefits-grid,
    .sales-options,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .job-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1,
    .blog-hero h1,
    .careers-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .value-card,
    .culture-card,
    .benefit-item,
    .job-card,
    .sales-option,
    .faq-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .mission-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content .last-updated {
    text-align: center;
    color: #718096;
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #4a5568;
    margin: 2rem 0 1rem;
}

.legal-content p {
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.8rem;
}

.legal-content strong {
    color: #2d3748;
    font-weight: 600;
}

/* Mobile responsive for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .legal-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #2563EB;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563EB;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Sticky CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

/* Video Modal Styles */
.video-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);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.video-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #000;
}

#demoVideo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    outline: none;
}

/* Demo Placeholder Styles */
.demo-placeholder {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
    text-align: center;
}

.demo-preview {
    padding: 2rem;
    max-width: 500px;
}

.demo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.demo-preview h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.demo-preview p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.demo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.demo-feature i {
    font-size: 1.2rem;
    color: #ffd700;
}

.demo-placeholder .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-placeholder .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .hero-text-full {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-text-full h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-text-full p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 10px;
    }

    .hero-dashboard-full {
        display: none;
    }

    .dashboard-mockup {
        display: none;
    }

    .dashboard-container {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 400px;
    }

    .dashboard-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 1rem 0;
    }

    .sidebar-nav {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .nav-item {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        border-right: none;
        min-width: auto;
    }

    .nav-item:hover,
    .nav-item.active {
        background: #eff6ff;
        color: #2563EB;
        border-right: none;
        border-radius: 6px;
    }

    .dashboard-main {
        padding: 1rem;
        flex: 1;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .dashboard-header h2 {
        font-size: 1.3rem;
    }

    .quick-add-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Features section */
    .features {
        padding: 60px 0;
    }

    .features .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 30px 25px;
        border-radius: 15px;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1.5rem auto;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Pricing section */
    .pricing {
        padding: 60px 0;
    }

    .pricing .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .pricing-card {
        padding: 35px 25px;
        border-radius: 15px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .price {
        font-size: 2.5rem;
    }

    /* Referral section */
    .referral {
        padding: 60px 0;
    }

    .referral-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .referral-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .referral-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .referral-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    /* Target audience section */
    .target-audience {
        padding: 60px 0;
    }

    .target-audience .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .audience-card {
        padding: 30px 25px;
        border-radius: 15px;
    }

    /* Testimonials section */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .testimonial-card {
        padding: 30px 25px;
        border-radius: 15px;
    }

    /* CTA section */
    .cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 20px 24px;
        font-size: 1.1rem;
    }

    .guarantee-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .mobile-cta {
        display: block;
    }

    .dashboard-charts {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .dashboard-widgets {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .widget {
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
    }
    
    .widget h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        color: #6b7280;
    }
    
    .metric-value {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1f2937;
    }
    
    .storage-meter {
        margin-top: 0.5rem;
    }
    
    .meter-circle {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .referral-chart {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .chart-bars {
        gap: 0.5rem;
        height: 60px;
    }
    
    .chart-bar {
        min-height: 20px;
        border-radius: 4px;
    }
    
    .referral-chart-bars {
        height: 80px;
    }
    
    .referral-bar {
        width: 12px;
    }

    .themes-slider-container {
        margin: 0 -20px;
        border-radius: 15px;
    }
    
    .theme-slide {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .theme-mockup {
        width: 100%;
        max-width: 350px;
        height: 250px;
        transform: none;
    }

    .theme-mockup:hover {
        transform: translateY(-4px);
    }

    .theme-info {
        padding-left: 0;
    }

    .theme-info h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .theme-info p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .theme-features {
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .theme-features span {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Video Modal Responsive */
    .video-modal-content {
        margin: 5% auto;
        width: 95%;
        padding: 15px;
        border-radius: 12px;
    }
    
    .video-close {
        font-size: 30px;
        top: 8px;
        right: 15px;
    }

    #demoVideo {
         border-radius: 8px;
     }
     
     /* Demo Placeholder Mobile */
     .demo-placeholder {
         min-height: 350px;
     }
     
     .demo-preview {
         padding: 1.5rem;
     }
     
     .demo-icon {
         font-size: 3rem;
     }
     
     .demo-preview h3 {
         font-size: 1.5rem;
     }
     
     .demo-preview p {
         font-size: 1rem;
         margin-bottom: 1.5rem;
     }
     
     .demo-features {
         grid-template-columns: 1fr;
         gap: 0.75rem;
         margin-bottom: 1.5rem;
     }
     
     .demo-feature {
         justify-content: center;
         font-size: 0.85rem;
     }
 }

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
         padding: 80px 0 40px;
     }

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

     .hero-text-full {
         padding: 0 5px;
     }

     .hero-text-full h1 {
         font-size: 2rem;
         line-height: 1.1;
         margin-bottom: 1rem;
     }

     .hero-text-full p {
         font-size: 1rem;
         margin-bottom: 1.5rem;
     }

     .hero-buttons {
         gap: 0.75rem;
     }

     .hero-buttons .btn {
         padding: 14px 20px;
         font-size: 0.95rem;
         max-width: 260px;
     }

     .hero-dashboard-full {
         display: none;
     }

     .dashboard-mockup {
         display: none;
     }

     .dashboard-container {
         min-height: 350px;
     }

     .dashboard-sidebar {
         padding: 0.75rem 0;
     }

     .sidebar-nav {
         padding: 0 0.75rem;
         gap: 0.25rem;
     }

     .nav-item {
         padding: 0.4rem 0.75rem;
         font-size: 0.8rem;
     }

     .dashboard-main {
         padding: 0.75rem;
     }

     .dashboard-header h2 {
         font-size: 1.1rem;
     }

     .quick-add-btn {
         padding: 0.6rem 0.75rem;
         font-size: 0.8rem;
     }

     .dashboard-widgets {
         padding: 0.75rem;
         gap: 0.75rem;
     }

     .widget {
         padding: 0.75rem;
     }

     .widget h4 {
         font-size: 0.75rem;
     }

     .metric-value {
         font-size: 1.3rem;
     }

     .meter-circle {
         width: 50px;
         height: 50px;
     }

     .referral-chart {
         padding: 0.75rem;
     }

     .chart-bars {
         height: 50px;
     }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .feature-card,
    .pricing-card,
    .testimonial-card,
    .audience-card {
        padding: 25px 20px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .themes-slider-container {
        margin: 0 -15px;
        border-radius: 15px;
    }
    
    .themes-slider {
        padding: 15px;
    }
    
    .theme-slide {
        padding: 1.5rem 1rem;
    }
    
    .theme-mockup {
        width: 100%;
        max-width: 280px;
        height: 200px;
    }

    .theme-info h3 {
        font-size: 1.2rem;
    }

    .theme-features span {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        padding: 18px 20px;
        font-size: 1rem;
        max-width: 280px;
    }

    .video-modal-content {
        margin: 2% auto;
        width: 98%;
        padding: 12px;
    }

    .video-close {
        font-size: 26px;
        top: 5px;
        right: 12px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .dashboard-widgets {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
    
    .feature-icon {
        margin: 0 auto 1.5rem auto;
    }

    .referral-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utility classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* About Page Specific Styles */
.problem-solution-about {
    padding: 80px 0;
    background: #f8fafc;
}

.problem-solution-about .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-solution-about .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.problem-solution-about .section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.dual-mission {
    padding: 80px 0;
    background: white;
}

.dual-mission .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.dual-mission .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.dual-mission .section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

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

.mission-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-icon i {
    font-size: 24px;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.mission-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.mission-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mission-features span {
    background: #eff6ff;
    color: #2563EB;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.who-we-serve {
    padding: 80px 0;
    background: #f8fafc;
}

.who-we-serve .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.who-we-serve .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.who-we-serve .section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

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

.audience-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.audience-icon i {
    font-size: 24px;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.audience-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dual-mission .section-header h2,
    .problem-solution-about .section-header h2,
    .who-we-serve .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-features {
        justify-content: center;
    }
}

/* Notification System Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    word-wrap: break-word;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: #10b981;
}

.notification.error {
    background-color: #ef4444;
}

.notification.warning {
    background-color: #f59e0b;
}

.notification.info {
    background-color: #3b82f6;
}

/* Button loading state */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn.loading i {
    margin-right: 8px;
}

/* Mobile notification adjustments */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}