* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
    color: #202124;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly improvements */
button, a, .btn-primary, .btn-secondary, .btn-try-work, .btn-signin {
    -webkit-tap-highlight-color: rgba(143, 0, 0, 0.1);
    touch-action: manipulation;
}

/* Smooth scrolling for mobile */
html {
    scroll-behavior: smooth;
}

/* Header */
.homepage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 48px;
    background: #fff;
    border-bottom: 1px solid #e8eaed;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Desktop and Mobile Header Actions */
.desktop-actions {
    display: flex !important;
    gap: 16px;
    align-items: center;
}

.mobile-actions {
    display: none !important;
}

.mobile-account-menu {
    position: relative;
}

.account-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.account-icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(143, 0, 0, 0.3);
}

.mobile-dropdown {
    position: absolute;
    top: 54px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.mobile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #202124;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
    font-family: 'Mulish', sans-serif;
}

.dropdown-link:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-link:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-link:hover {
    background: #f8f9fa;
}

.dropdown-link i {
    color: #8f0000;
    font-size: 18px;
    width: 20px;
}

/* Mobile-Only Section */
.mobile-only-section {
    display: none;
    padding: 50px 20px;
    background: #ffffff;
}

.mobile-features-container {
    max-width: 600px;
    margin: 0 auto;
}

.mobile-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #202124;
    text-align: center;
    margin-bottom: 35px;
    font-family: 'Libre Baskerville', serif;
    line-height: 1.3;
}

.mobile-feature-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #8f0000;
    transition: all 0.3s;
}

.mobile-feature-card:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.mobile-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.mobile-feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 8px;
    font-family: 'EB Garamond', serif;
    line-height: 1.3;
}

.mobile-feature-content p {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
    font-family: 'Mulish', sans-serif;
}

.mobile-cta-box {
    margin-top: 40px;
    padding: 30px 24px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.mobile-cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Libre Baskerville', serif;
}

.mobile-cta-box p {
    font-size: 15px;
    margin-bottom: 24px;
    opacity: 0.95;
    font-family: 'Mulish', sans-serif;
    line-height: 1.5;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: white;
    color: #8f0000;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.mobile-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-cta-link {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    font-family: 'Mulish', sans-serif;
}

.mobile-cta-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-container img {
    height: 40px;
    width: auto;
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-try-work {
    padding: 10px 24px;
    background: transparent;
    color: #8f0000;
    border: 1px solid #8f0000;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-try-work:hover {
    background: rgba(143, 0, 0, 0.05);
    border-color: #ff0000;
}

.btn-signin {
    padding: 10px 24px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-signin:hover {
    background: linear-gradient(135deg, #cc0000 0%, #660000 100%);
    box-shadow: 0 1px 2px 0 rgba(143,0,0,0.3), 0 1px 3px 1px rgba(143,0,0,0.15);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 48px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: #202124;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #5f6368;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 12px 32px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #cc0000 0%, #660000 100%);
    box-shadow: 0 1px 2px 0 rgba(143,0,0,0.3), 0 1px 3px 1px rgba(143,0,0,0.15);
}

.btn-secondary {
    padding: 12px 32px;
    background: transparent;
    color: #8f0000;
    border: 1px solid #8f0000;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(143, 0, 0, 0.05);
    border-color: #ff0000;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.desktop-preview {
    display: flex;
}

.drive-preview {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 2px 6px 2px rgba(60,64,67,0.15);
    background: #fff;
    padding: 20px;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8eaed;
}

.preview-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.preview-title {
    font-size: 16px;
    color: #202124;
    font-weight: 500;
}

.preview-files {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-file {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 4px;
    background: #f8f9fa;
    transition: background 0.2s;
}

.preview-file:hover {
    background: #e8eaed;
}

.file-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.file-icon.blue { color: #8f0000; }
.file-icon.green { color: #ff0000; }
.file-icon.red { color: #cc0000; }
.file-icon.yellow { color: #ff6666; }

.file-info {
    flex: 1;
}

.file-name {
    font-size: 14px;
    color: #202124;
    font-weight: 500;
    margin-bottom: 2px;
}

.file-meta {
    font-size: 12px;
    color: #5f6368;
}

.security-badge {
    position: absolute;
    bottom: -20px;
    right: 40px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 2px 4px 0 rgba(143,0,0,0.3), 0 4px 8px 2px rgba(143,0,0,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    /* Keep desktop header on tablets */
    .desktop-actions {
        display: flex !important;
    }

    .mobile-actions {
        display: none !important;
    }

    .hero-section {
        flex-direction: column;
        padding: 60px 32px;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 42px;
    }

    .drive-preview {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .homepage-header {
        padding: 14px 20px;
    }

    .logo-container img {
        height: 36px;
    }

    /* Show mobile menu, hide desktop buttons */
    .desktop-actions {
        display: none !important;
    }

    .mobile-actions {
        display: flex !important;
    }

    /* Hide desktop preview, show mobile section */
    .desktop-preview {
        display: none !important;
    }

    .mobile-only-section {
        display: block !important;
    }

    /* Hide desktop sections on mobile */
    .features-section,
    .comparison-section,
    .cta-section {
        display: none !important;
    }

    .hero-section {
        padding: 40px 20px;
        gap: 40px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
        justify-content: center;
    }

    .drive-preview {
        padding: 16px;
    }

    .preview-header {
        margin-bottom: 16px;
    }

    .preview-file {
        padding: 10px;
    }

    .file-name {
        font-size: 13px;
    }

    .file-meta {
        font-size: 11px;
    }

    .security-badge {
        bottom: -12px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .homepage-header {
        padding: 12px 16px;
    }

    .logo-container img {
        height: 32px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-try-work,
    .btn-signin {
        padding: 7px 14px;
        font-size: 12px;
    }

    .hero-section {
        padding: 30px 16px;
        gap: 30px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 13px 20px;
        font-size: 14px;
    }

    .drive-preview {
        padding: 14px;
    }

    .preview-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .preview-title {
        font-size: 14px;
    }

    .file-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .security-badge {
        bottom: -10px;
        right: 10px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* ========== NEW SECTIONS REDESIGN ========== */

/* Features Section */
.features-section {
    padding: 100px 48px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'Libre Baskerville', serif;
}

.section-subtitle {
    font-size: 19px;
    color: #5f6368;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
}

/* Features Showcase */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.main-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    padding: 60px;
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 60px rgba(143, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.main-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.feature-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.floating-icon.icon-3 {
    top: 40%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.central-badge {
    width: 220px;
    height: 220px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-inner {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.badge-text {
    display: block;
    font-size: 16px;
    color: #5f6368;
    font-weight: 500;
    margin-top: 8px;
    font-family: 'Mulish', sans-serif;
}

.feature-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Libre Baskerville', serif;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
    font-family: 'Mulish', sans-serif;
}

.feature-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
}

.feature-benefits li i {
    font-size: 20px;
    color: #4ade80;
}

/* Features Grid Modern */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000 0%, #8f0000 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #8f0000;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    position: relative;
}

.feature-item[data-color="blue"] .feature-icon-wrapper {
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(143, 0, 0, 0.3);
}

.feature-item[data-color="green"] .feature-icon-wrapper {
    background: linear-gradient(135deg, #ff3333 0%, #b30000 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(179, 0, 0, 0.3);
}

.feature-item[data-color="purple"] .feature-icon-wrapper {
    background: linear-gradient(135deg, #cc0000 0%, #660000 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(102, 0, 0, 0.3);
}

.feature-item[data-color="orange"] .feature-icon-wrapper {
    background: linear-gradient(135deg, #ff6666 0%, #990000 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(153, 0, 0, 0.3);
}

.feature-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 12px;
    font-family: 'EB Garamond', serif;
}

.feature-item p {
    font-size: 15px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Mulish', sans-serif;
}

.feature-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid #e8eaed;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #5f6368;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 48px;
    background: #f8f9fa;
}

.comparison-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 50px 0;
}

.comparison-header-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    color: white;
    padding: 30px;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-column,
.webnify-column,
.others-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.column-badge i {
    font-size: 20px;
    color: #fbbf24;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    padding: 25px 30px;
    border-bottom: 1px solid #e8eaed;
    transition: background 0.2s;
}

.comparison-row:hover {
    background: #f8f9fa;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: #202124;
    font-size: 16px;
    font-family: 'Mulish', sans-serif;
}

.feature-name i {
    font-size: 22px;
    color: #8f0000;
    flex-shrink: 0;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-main {
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    font-family: 'Mulish', sans-serif;
}

.feature-desc {
    font-size: 13px;
    color: #5f6368;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'Mulish', sans-serif;
}

.webnify-value,
.others-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 15px;
}

.value-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.value-highlight {
    font-weight: 700;
    color: #8f0000;
    font-size: 16px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.value-low {
    font-weight: 600;
    color: #6b7280;
    font-size: 15px;
    font-family: 'Mulish', sans-serif;
    line-height: 1;
}

.value-subtext {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
    font-family: 'Mulish', sans-serif;
    text-align: center;
}

.webnify-value i {
    color: #8f0000;
    font-size: 22px;
}

.others-value i {
    color: #ef4444;
    font-size: 22px;
}

/* Comparison Stats */
.comparison-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #8f0000;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #202124;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #5f6368;
    margin-top: 5px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
}

/* CTA Section */
.cta-section {
    padding: 120px 48px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.cta-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.cta-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    animation-delay: 2s;
}

.cta-shape.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-badge i {
    font-size: 16px;
}

.cta-title {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Libre Baskerville', serif;
}

.cta-description {
    font-size: 20px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Mulish', sans-serif;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
}

.cta-feature i {
    color: #ff6666;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-cta-primary {
    padding: 18px 48px;
    background: linear-gradient(135deg, #ff0000 0%, #8f0000 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(143, 0, 0, 0.4);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(143, 0, 0, 0.6);
}

.btn-cta-secondary {
    padding: 18px 48px;
    background: transparent;
    color: white;
    border: 2px solid #8f0000;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-cta-secondary:hover {
    background: rgba(143, 0, 0, 0.2);
    border-color: #ff0000;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Mulish', sans-serif;
}

.trust-item i {
    color: #ff6666;
    font-size: 18px;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .features-section,
    .comparison-section {
        padding: 70px 32px;
    }

    .cta-section {
        padding: 90px 32px;
    }

    .main-feature-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 40px;
    }

    .features-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .comparison-header-row,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 20px;
        font-size: 14px;
    }

    .comparison-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 20px;
    }

    .comparison-section {
        padding: 50px 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .main-feature-card {
        padding: 35px 25px;
        gap: 35px;
    }

    .feature-visual {
        min-height: 250px;
    }

    .feature-content h3 {
        font-size: 26px;
    }

    .feature-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .feature-benefits {
        gap: 12px;
    }

    .feature-benefits li {
        font-size: 15px;
    }

    .central-badge {
        width: 180px;
        height: 180px;
    }

    .badge-number {
        font-size: 38px;
    }

    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-header-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 18px 12px;
        font-size: 14px;
    }

    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 18px 12px;
    }

    .feature-main {
        font-size: 14px;
    }

    .feature-desc {
        font-size: 12px;
    }

    .value-highlight,
    .value-low {
        font-size: 14px;
    }

    .value-subtext {
        font-size: 11px;
    }

    .comparison-stats {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 38px;
    }

    .cta-description {
        font-size: 18px;
    }

    .cta-features {
        gap: 16px;
        flex-direction: column;
    }

    .cta-feature {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .cta-trust {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 16px;
    }

    .comparison-section {
        padding: 40px 16px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 14px;
        letter-spacing: 1px;
    }

    .main-feature-card {
        padding: 25px 18px;
        gap: 25px;
    }

    .feature-visual {
        min-height: 200px;
    }

    .feature-content h3 {
        font-size: 22px;
        line-height: 1.3;
    }

    .feature-content p {
        font-size: 15px;
    }

    .feature-benefits li {
        font-size: 14px;
    }

    .central-badge {
        width: 150px;
        height: 150px;
    }

    .badge-number {
        font-size: 32px;
    }

    .badge-text {
        font-size: 14px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-item {
        padding: 28px 18px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .feature-item h4 {
        font-size: 19px;
        line-height: 1.4;
    }

    .feature-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .feature-stat {
        padding-top: 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .comparison-header-row {
        padding: 14px 10px;
        font-size: 13px;
    }

    .comparison-row {
        padding: 16px 10px;
    }

    .column-badge {
        padding: 8px 12px;
        font-size: 12px;
    }

    .feature-name {
        gap: 10px;
    }

    .feature-name i {
        font-size: 18px;
    }

    .feature-main {
        font-size: 13px;
    }

    .feature-desc {
        font-size: 11px;
    }

    .value-highlight,
    .value-low {
        font-size: 13px;
    }

    .value-subtext {
        font-size: 10px;
    }

    .webnify-value i,
    .others-value i {
        font-size: 18px;
    }

    .stat-card {
        padding: 25px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stat-value {
        font-size: 26px;
    }

    .cta-section {
        padding: 60px 16px;
    }

    .cta-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-feature {
        font-size: 13px;
    }

    .cta-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 15px 28px;
        font-size: 15px;
        width: 100%;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .cta-trust {
        flex-direction: column;
        gap: 20px;
    }
}

/* Copyright Section */
.copyright-section {
    background: #0f172a;
    padding: 20px 48px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-section p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
    font-family: 'Mulish', sans-serif;
    line-height: 1.6;
}

.copyright-section a {
    color: #ff6666;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.copyright-section a:hover {
    color: #ff0000;
    text-decoration: underline;
}

/* Copyright Responsive */
@media (max-width: 768px) {
    .copyright-section {
        padding: 18px 20px;
    }

    .copyright-section p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .copyright-section {
        padding: 16px 16px;
    }

    .copyright-section p {
        font-size: 12px;
    }
}
