/* ===== RESET & BASE STYLES ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */

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

.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: #ffffff;
}

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

.btn-outline:hover {
    background: #1e3a8a;
    color: #ffffff;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* ===== HEADER & NAVIGATION ===== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */

.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #ffffff;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.trust-badges span {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ===== FEATURES SECTION ===== */

.features-section {
    padding: 80px 0;
}

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

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

/* ===== PRICING SECTION ===== */

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

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

.pricing-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #3b82f6;
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge.best-value {
    background: linear-gradient(135deg, #10b981, #059669);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
}

.period {
    font-size: 1.2rem;
    color: #64748b;
}

.billing-info {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.features-list li {
    padding: 0.8rem 0;
    color: #64748b;
    border-bottom: 1px solid #f8fafc;
}

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

/* ===== SERVERS SECTION ===== */

.servers-section {
    padding: 80px 0;
}

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

.server-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.server-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin: 1rem 0;
}

.server-card p {
    color: #64748b;
    line-height: 1.8;
}

/* ===== TESTIMONIALS SECTION ===== */

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

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

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #1e3a8a;
}

/* ===== PRIVACY SECTION ===== */

.privacy-section {
    padding: 80px 0;
}

/* ===== CTA BANNER ===== */

.cta-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

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

/* ===== FOOTER ===== */

.footer {
    background: #0f172a;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col a:hover {
    opacity: 1;
    color: #67e8f9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ===== PAGE HERO (INTERIOR PAGES) ===== */

.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #ffffff;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FEATURE DETAILS ===== */

.feature-details {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0;
}

.feature-details li {
    padding: 5px 0;
    color: #64748b;
    font-size: 0.95rem;
}

/* ===== ADDITIONAL FEATURES SECTION ===== */

.additional-features {
    padding: 60px 0;
    background: #f8fafc;
}

.features-list-section {
    max-width: 900px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon-small {
    font-size: 2rem;
    min-width: 50px;
}

.feature-content h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #1e3a8a;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
}

/* ===== COMPATIBILITY / DEVICES SECTION ===== */

.compatibility-section {
    padding: 60px 0;
}

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

.device-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.device-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.device-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1e3a8a;
}

.device-card p {
    font-size: 0.9rem;
    color: #64748b;
}

/* ===== COMPARISON TABLE SECTION ===== */

.comparison-section {
    padding: 60px 0;
    background: #f8fafc;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
}

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

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

.comparison-table th {
    background: #1e3a8a;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.comparison-table td {
    text-align: center;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.comparison-table .price-row {
    background: #f0f9ff;
    font-weight: 600;
}

/* ===== FAQ SECTION ===== */

.faq-section {
    padding: 60px 0;
}

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

.faq-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

/* ===== GUARANTEE SECTION ===== */

.guarantee-section {
    padding: 60px 0;
    background: #f8fafc;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    min-width: 80px;
}

.guarantee-content h2 {
    color: #1e3a8a;
    margin-bottom: 15px;
}

.guarantee-content p {
    color: #64748b;
    line-height: 1.7;
}

/* ===== SERVERS OVERVIEW ===== */

.servers-overview {
    padding: 40px 0 60px;
    background: #f8fafc;
}

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

.stat-card {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.stat-label {
    color: #64748b;
    font-size: 1rem;
}

.server-flag {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.server-location {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.server-features {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.server-features li {
    padding: 6px 0;
    font-size: 0.95rem;
}

.server-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #f8fafc;
    margin-top: 15px;
    font-size: 0.9rem;
}

.status-indicator {
    color: #10b981;
    font-weight: 600;
}

.server-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 15px;
}

.server-features-section {
    padding: 60px 0;
    background: #f8fafc;
}

/* ===== EXPANSION SECTION ===== */

.expansion-section {
    padding: 60px 0;
}

.expansion-box {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.expansion-box h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.upcoming-locations {
    margin-top: 30px;
}

.upcoming-locations h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.locations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.location-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

/* ===== ABOUT / MISSION SECTION ===== */

.about-content {
    padding: 60px 0;
}

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

.about-intro h2 {
    color: #1e3a8a;
    margin-bottom: 25px;
    font-size: 2rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.mission-section {
    padding: 60px 0;
    background: #f8fafc;
}

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

.mission-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.mission-card p {
    color: #64748b;
    line-height: 1.7;
}

/* ===== PRIVACY GRID ===== */

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

.privacy-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.privacy-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.privacy-card h3 {
    color: #1e3a8a;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.privacy-card p {
    color: #64748b;
    line-height: 1.7;
}

/* ===== TESTIMONIAL STARS / AUTHOR ===== */

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #1e3a8a;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h2 {
    color: #1e3a8a;
    margin-bottom: 20px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.method-icon {
    font-size: 2rem;
    min-width: 50px;
}

.method-info h3 {
    color: #1e3a8a;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.method-info p {
    color: #64748b;
    margin-bottom: 5px;
}

.response-time {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
}

.business-hours {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.business-hours h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

/* ===== CONTACT FORM ===== */

.contact-form-container h2 {
    color: #1e3a8a;
    margin-bottom: 25px;
}

.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e3a8a;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 0.85rem;
}

/* ===== SIGNUP SECTION ===== */

.signup-section {
    padding: 40px 0 60px;
    background: #f8fafc;
    min-height: calc(100vh - 80px);
}

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

.signup-header {
    text-align: center;
    margin-bottom: 40px;
}

.signup-header h1 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.signup-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

/* Plan Summary */

.plan-summary h2 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.selected-plan-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.selected-plan-card h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.plan-price .period {
    font-size: 1.2rem;
    color: #64748b;
}

.billing-detail {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    border-top: 2px solid #f8fafc;
    border-bottom: 2px solid #f8fafc;
}

.plan-features li {
    padding: 8px 0;
    color: #64748b;
}

.change-plan {
    display: inline-block;
    margin-top: 15px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.change-plan:hover {
    text-decoration: underline;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-badge {
    padding: 12px;
    background: #ecfdf5;
    border-radius: 8px;
    color: #059669;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

/* Signup Form */

.signup-form-container h2 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.signup-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: #ffffff;
    padding: 0 15px;
    position: relative;
    color: #64748b;
}

.btn-google {
    width: 100%;
    background: #ffffff;
    color: #333333;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    background: #f8fafc;
}

.google-icon {
    font-weight: 700;
    color: #4285f4;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: auto;
    cursor: pointer;
}

.btn-block {
    width: 100%;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

.security-badges {
    margin-top: 30px;
    text-align: center;
}

.security-badges p {
    color: #64748b;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods span {
    font-size: 0.9rem;
    color: #64748b;
}

/* ===== FOOTER MINIMAL ===== */

.footer-minimal {
    background: transparent;
    padding: 30px 0;
}

.footer-minimal .footer-bottom {
    text-align: center;
}

/* ===== UTILITY CLASSES ===== */

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-center p {
    margin-bottom: 20px;
    color: #64748b;
}

.savings-badge {
    display: inline-block;
    background: #10b981;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== COUNTDOWN SECTION ===== */

.countdown-section {
    padding: 60px 0;
    background: #0f172a;
    color: #ffffff;
    text-align: center;
}

.countdown-section .section-title,
.countdown-section .section-subtitle {
    color: #ffffff;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* .countdown-timer {
    display: flex;
    justify-content: flex-start;
    gap: 1.6rem;
    margin-top: 2rem;
    flex-wrap: wrap;
} */

.countdown-item {
    background: rgba(15, 23, 42, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    /* font-size: 4rem; */
    font-weight: 700;
}

.countdown-item small {
    font-size: 0.8rem;
    opacity: 0.8;
}


/* ===== VIDEO SECTION ===== */

.video-section {
    padding: 80px 0;
    background: #f8fafc;
    /* same as other light sections */
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Make video responsive and centered */
.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
}


/* ===== RESPONSIVE UPDATES ===== */

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

    .contact-grid,
    .signup-content {
        grid-template-columns: 1fr;
    }

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

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

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

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
}