:root {
    --bg-color: #F9FAFB;
    --text-dark: #111827;
    --text-light: #6B7280;
    --primary-blue: #EB4B71;
    --primary-purple: #EB4B71;
    --border-color: #E5E7EB;
    --white-color: #ffffff;
    --green-color: #10B981;
    --reseller-gold: #B8860B;
    --reseller-gold-light: #DAA520;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 100px 0; overflow: hidden; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; text-align: center; margin-bottom: 60px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
p { color: var(--text-light); margin-bottom: 1rem; }
.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: -40px auto 50px auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-blue);
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 7px 20px rgba(0,0,0,0.15); }

/* Scroll Animation */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Header */
.header {
    background-color: var(--bg-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    background-color: rgba(249, 250, 251, 0.8);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { text-decoration: none; color: var(--text-dark); }
.logo img { height: 40px; width: auto; }
.nav-menu ul { list-style: none; display: flex; gap: 50px; }
.nav-menu a { text-decoration: none; color: var(--text-light); font-weight: 600; transition: color 0.3s; position: relative; }
.nav-menu a:hover { color: var(--primary-blue); }
.nav-menu .sale-tag {
    position: absolute;
    top: -8px;
    right: -35px;
    background: #1d4ed8;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}

.nav-menu .hot-tag {
    position: absolute;
    top: -8px;
    right: -35px;
    background: #dc2626;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}

.nav-menu .new-tag {
    position: absolute;
    top: -8px;
    right: -35px;
    background: #10b981;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}
.header .btn { padding: 10px 24px; }
.hamburger { display: none; cursor: pointer; }
.hamburger div { 
    width: 25px; 
    height: 3px; 
    background-color: var(--text-dark); 
    margin: 5px 0; 
    transition: 0.4s; 
}

.hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero { text-align: center; padding: 120px 0 80px 0; position: relative; overflow: hidden; }
.hero .aurora {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1), transparent 60%);
    z-index: -1;
}
.hero h1 { color: var(--primary-blue); }
.hero .subtitle { font-size: 1.25rem; max-width: 700px; margin: 15px auto 30px; }

/* Floating Bubbles Animation */
.floating-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
    will-change: transform;
    transform: translateZ(0);
}

.bubble:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 15px;
    height: 15px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.bubble:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.bubble:nth-child(4) {
    width: 18px;
    height: 18px;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.bubble:nth-child(5) {
    width: 22px;
    height: 22px;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.bubble:nth-child(6) {
    width: 16px;
    height: 16px;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.bubble:nth-child(7) {
    width: 24px;
    height: 24px;
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 13s;
}

.bubble:nth-child(8) {
    width: 19px;
    height: 19px;
    left: 80%;
    animation-delay: 1.5s;
    animation-duration: 8.5s;
}

.bubble:nth-child(9) {
    width: 21px;
    height: 21px;
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 10.5s;
}

.bubble:nth-child(10) {
    width: 17px;
    height: 17px;
    left: 15%;
    animation-delay: 6s;
    animation-duration: 9.5s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero content positioning */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Pricing Section */
.pricing { background-color: var(--white-color); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.pricing-card {
    background-color: var(--white-color); border: 1px solid var(--border-color);
    border-radius: 20px; padding: 30px; display: flex; flex-direction: column;
    transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.pricing-card.highlight { border-color: var(--primary-blue); position: relative; transform: scale(1.05); }
.pricing-card.highlight .badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background-color: var(--primary-blue);
    color: var(--white-color); padding: 5px 15px; border-radius: 20px;
    font-size: 0.9rem; font-weight: 600;
}
.pricing-card .plan-name { font-weight: 600; }
.pricing-card .plan-description { color: var(--text-light); font-size: 0.9rem; margin-bottom: 10px; }
.pricing-card .price { font-size: 3rem; font-weight: 800; margin: 10px 0; }
.pricing-card .price-note { color: var(--text-light); font-size: 0.9rem; margin-top: -10px; }
.pricing-card .specs { list-style: none; margin: 30px 0; flex-grow: 1; }
.pricing-card .specs li { border-top: 1px solid var(--border-color); padding: 12px 0; display: flex; align-items: center; gap: 10px; }
.pricing-card .specs svg { width: 20px; height: 20px; stroke: var(--green-color); }
.pricing-card .btn { width: 100%; text-align: center; }

/* Features Section */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature-item { padding: 20px; }
.feature-item svg { width: 32px; height: 32px; stroke: var(--primary-blue); margin-bottom: 15px; }

/* Testimonials Section */
.testimonials { background-color: var(--white-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }

/* Web Hosting Overview Section */
.hosting-overview { background-color: var(--bg-color); }
.hosting-types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 50px; }
.hosting-type-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.hosting-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.hosting-type-card.highlight {
    border-color: var(--primary-blue);
    transform: scale(1.02);
}
.hosting-type-card.highlight .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.hosting-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
}
.hosting-type-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}
.hosting-type-card p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.6;
}
.hosting-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}
.hosting-features li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}
.hosting-features li::before {
    content: '�?;
    position: absolute;
    left: 0;
    color: var(--green-color);
    font-weight: bold;
}
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Shared & Reseller Hosting Sections */
.shared-hosting, .reseller-hosting {
    background-color: var(--white-color);
}
.shared-hosting {
    margin-top: 50px;
}

/* Reseller Hosting Special Styling */
.reseller-hosting .pricing-card {
    border-color: var(--reseller-gold);
    background-color: #fff;
}
.reseller-hosting .pricing-card:hover {
    border-color: var(--reseller-gold-light);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.15);
}
.reseller-hosting .pricing-card.highlight {
    border-color: var(--reseller-gold-light);
    background-color: #fff;
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.2);
}
.reseller-hosting .pricing-card.highlight .badge {
    background-color: var(--reseller-gold) !important;
    color: var(--white-color) !important;
    background-image: none !important;
}
.reseller-hosting .pricing-card .btn {
    background-color: var(--reseller-gold) !important;
    color: var(--white-color) !important;
    background-image: none !important;
}
.reseller-hosting .pricing-card .btn:hover {
    background-color: var(--reseller-gold-light) !important;
    color: var(--white-color) !important;
    background-image: none !important;
}
.reseller-hosting .pricing-card .specs svg {
    stroke: var(--reseller-gold);
}
.reseller-hosting h2 {
    color: var(--reseller-gold);
}
.reseller-hosting .section-subtitle {
    color: var(--reseller-gold-light);
}

/* Reseller Hosting Secondary Button Styling */
.reseller-hosting .btn-secondary {
    border-color: var(--reseller-gold);
    color: var(--reseller-gold);
}
.reseller-hosting .btn-secondary:hover {
    background-color: var(--reseller-gold);
    color: var(--white-color);
}

/* Reseller Hosting Overview Card Styling */
.hosting-type-card.highlight .hosting-icon {
    color: var(--reseller-gold) !important;
}
.hosting-type-card.highlight .badge {
    background-color: var(--reseller-gold) !important;
    color: var(--white-color) !important;
    background-image: none !important;
}
.hosting-type-card.highlight {
    border-color: var(--reseller-gold) !important;
}
.hosting-type-card.highlight .btn-secondary {
    border-color: var(--reseller-gold) !important;
    color: var(--reseller-gold) !important;
}
.hosting-type-card.highlight .btn-secondary:hover {
    background-color: var(--reseller-gold) !important;
    color: var(--white-color) !important;
}
.testimonial-card {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.testimonial-card .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.testimonial-card .user-info {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.user-avatar svg {
    width: 24px;
    height: 24px;
}

.user-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-details {
    flex: 1;
}
.testimonial-card .user-info strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}
.testimonial-card .user-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}



/* Expert Section Styles */
.expert {
    background-color: var(--white-color);
}
.expert-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}
.expert-image {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}
.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}
/* Desktop shows large image, mobile hidden */
.expert-image .desktop-img {
    display: block;
}
.expert-image .mobile-img {
    display: none;
}
.expert-content h2 {
    text-align: left;
    margin-bottom: 20px;
}
.expert-content blockquote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
}

/* Comparison Section */
.comparison {
    background-color: var(--white-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    border: 1px solid var(--border-color);
    vertical-align: middle;
}

.comparison-table th {
    background-color: var(--bg-color);
    font-size: 1.1rem;
}

.provider-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.provider-header .provider-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    background-color: var(--bg-color);
}

.comparison-table .highlight-col {
    background-color: #ecfdf5; /* Light green background */
}

.comparison-table .icon-check {
    color: var(--green-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comparison-table .icon-cross {
    color: #71717a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comparison-table .icon-check svg,
.comparison-table .icon-cross svg {
    flex-shrink: 0;
}

.comparison-table strong {
    color: var(--text-dark);
}

/* FAQ Section */
.faq { background-color: var(--white-color); }

/* About Page Specific Styles */
.about-story {
    background-color: var(--white-color);
}
.about-story .expert-grid {
    align-items: flex-start;
}
.about-story .expert-content h2 {
    text-align: left;
    margin-bottom: 20px;
}
.about-story .expert-content blockquote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
}

/* Process Steps */
.process-step {
    background: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Hosting Categories Section */
.hosting-categories {
    background-color: var(--white-color);
}
.hosting-categories .pricing-card {
    text-align: center;
    padding: 25px;
}
.hosting-categories .pricing-card svg {
    margin-bottom: 15px;
}
.hosting-categories .pricing-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Contact Page Specific Styles */
.contact-info {
    background-color: var(--white-color);
}
.contact-info .pricing-card {
    text-align: center;
    padding: 50px 30px;
    max-width: 600px;
    margin: 0 auto;
}
.contact-info .pricing-card svg {
    margin-bottom: 30px;
}
.contact-info .pricing-card h2 {
    margin-bottom: 20px;
    text-align: center;
}
.contact-info .pricing-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}
.contact-info .email-box {
    background: var(--primary-blue);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}
.contact-info .email-box h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.contact-info .email-box a {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

/* Disclaimer Page Specific Styles */
.disclaimer-content {
    background-color: var(--white-color);
}
.disclaimer-content .pricing-card {
    padding: 40px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.disclaimer-content h2 {
    text-align: center;
    margin-bottom: 40px;
}
.disclaimer-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.disclaimer-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}
.disclaimer-content a {
    color: var(--primary-blue);
    text-decoration: none;
}
.disclaimer-content a:hover {
    text-decoration: underline;
}
.disclaimer-summary {
    background-color: var(--bg-color);
}

/* Privacy Policy Page Specific Styles */
.privacy-content {
    background-color: var(--white-color);
}
.privacy-content .pricing-card {
    padding: 40px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.privacy-content h2 {
    text-align: center;
    margin-bottom: 40px;
}
.privacy-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.privacy-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}
.privacy-content ul {
    margin-bottom: 15px;
}
.privacy-content li {
    margin-bottom: 5px;
    line-height: 1.6;
}
.privacy-content a {
    color: var(--primary-blue);
    text-decoration: none;
}
.privacy-content a:hover {
    text-decoration: underline;
}
.privacy-summary {
    background-color: var(--bg-color);
}

/* CTA Section */
.cta {
    background-color: var(--white-color);
    text-align: center;
    padding: 80px 0;
}

/* Footer */
.footer { background-color: var(--white-color); padding: 80px 0; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h3 { font-size: 1.1rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; color: var(--text-light); transition: color 0.3s; }
.footer-col a:hover { color: var(--primary-blue); }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--border-color); color: var(--text-light); font-size: 0.9rem; }

/* Mobile Styles */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .nav-menu, .header .btn { display: none; }
    .hamburger { display: block; }
    .logo img { height: 35px; }
    .nav-menu.active {
        display: flex; flex-direction: column; position: absolute;
        top: 73px; left: 0; width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px;
    }
    .nav-menu.active ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu.active li { 
        margin: 0;
        text-align: center;
    }
    .nav-menu.active a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }
    .nav-menu.active a:last-child {
        border-bottom: none;
    }
    .nav-menu.active a:hover {
        background-color: var(--bg-color);
        color: var(--primary-blue);
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* 移动端标签样式调�?*/
    .nav-menu.active .sale-tag,
    .nav-menu.active .hot-tag,
    .nav-menu.active .new-tag {
        position: static;
        display: inline-block;
        margin-left: 8px;
        font-size: 0.6rem;
        padding: 1px 4px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .logo img { height: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hosting-types-grid { grid-template-columns: 1fr; }
    .expert-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .expert-image {
        width: 200px;
        height: 200px;
        margin-bottom: 30px;
    }
    
    .expert-image .desktop-img {
        display: none;
    }
    .expert-image .mobile-img {
        display: block;
    }
    .expert-content h2 {
        text-align: center;
    }
    .about-story .expert-content h2 {
        text-align: center;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pricing-card.highlight {
        transform: scale(1);
    }
    
    /* Mobile bubble optimization */
    .bubble {
        animation-duration: 4s !important;
    }
    .bubble:nth-child(1) { animation-duration: 6s !important; }
    .bubble:nth-child(2) { animation-duration: 8s !important; }
    .bubble:nth-child(3) { animation-duration: 10s !important; }
    .bubble:nth-child(4) { animation-duration: 7s !important; }
    .bubble:nth-child(5) { animation-duration: 9s !important; }
    .bubble:nth-child(6) { animation-duration: 5s !important; }
    .bubble:nth-child(7) { animation-duration: 11s !important; }
    .bubble:nth-child(8) { animation-duration: 6.5s !important; }
    .bubble:nth-child(9) { animation-duration: 8.5s !important; }
    .bubble:nth-child(10) { animation-duration: 7.5s !important; }
    
    /* Mobile hero area adjustments */
    .hero {
        padding: 80px 0 60px 0;
    }
    
    .hero .subtitle {
        margin: 10px auto 20px;
    }
    
    /* 移动端标签样式调�?*/
    .nav-menu .sale-tag,
    .nav-menu .hot-tag,
    .nav-menu .new-tag {
        position: static;
        display: inline-block;
        margin-left: 8px;
        font-size: 0.6rem;
        padding: 1px 4px;
    }
}

/* 使用场景部分 */
.use-cases {
    background-color: var(--bg-color);
    padding: 100px 0;
}

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

.use-case-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.use-case-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.use-case-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.use-case-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.use-case-card li:before {
    content: "�?;
    position: absolute;
    left: 0;
    color: var(--green-color);
    font-weight: bold;
}

/* 迁移指南部分 */
.migration-guide {
    background-color: var(--white-color);
    padding: 100px 0;
}

.migration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.migration-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-blue);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.migration-step h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.migration-step p {
    color: var(--text-light);
}

.migration-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.migration-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.migration-feature svg {
    color: var(--green-color);
}

/* 响应式设�?*/
@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .migration-steps {
        grid-template-columns: 1fr;
    }
    
    .migration-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Cloudways页面样式 */
.hero-badge {
    margin-bottom: 20px;
}

.badge-text {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 痛点模块 */
.pain-points {
    background-color: var(--bg-color);
    padding: 100px 0;
}

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

.pain-point-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pain-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.pain-point-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pain-point-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Core advantages */
.core-advantages {
    background-color: var(--white-color);
    padding: 100px 0;
}

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

.benefit-card {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-features {
    list-style: none;
    padding: 0;
}

.benefit-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.benefit-features li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20,6 9,17 4,12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

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

.pricing-section {
    background-color: var(--bg-color);
    padding: 100px 0;
}

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

.highlighted-price {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: var(--white-color);
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.highlighted-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-blue);
}

.highlighted-price::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.price-badge {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-period {
    font-size: 1.3rem;
    font-weight: 600;
    color: #64748b;
}

.price-discount {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.discount-text {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.price-note {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.pricing-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

.pricing-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.highlight-item svg {
    color: var(--green-color);
}

.pricing-cta {
    margin-top: 40px;
}



@media (max-width: 768px) {

    
    .highlighted-price {
        padding: 30px 20px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .price-period {
        font-size: 1.1rem;
    }
    
    .discount-text {
        font-size: 0.8rem;
    }
    
    .price-note {
        font-size: 0.9rem;
    }
}

/* 最终CTA�?*/
.final-cta {
    background: var(--primary-blue);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta .btn {
    background: white;
    color: var(--primary-blue);
    font-weight: 700;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.final-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* 响应式设�?*/
@media (max-width: 768px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-highlights {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .comparison-table-wrapper {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
    
    .provider-header .provider-icon {
        width: 20px;
        height: 20px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .user-avatar svg {
        width: 20px;
        height: 20px;
    }
}

/* VPS Advisor CTA Styles */
.vps-advisor-cta {
    background-color: var(--white-color);
    padding: 80px 0;
}

.advisor-card {
    background: var(--primary-blue);
    border-radius: 24px;
    padding: 40px;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.advisor-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.advisor-content {
    position: relative;
    z-index: 2;
}

.advisor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.advisor-avatar {
    flex-shrink: 0;
}

.advisor-avatar .avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    object-fit: cover;
}

.advisor-info h3 {
    color: var(--white-color);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.advisor-subtitle {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1rem;
}

.advisor-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.advisor-feature svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255,255,255,0.8);
}

.advisor-card .btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white-color);
    backdrop-filter: blur(10px);
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.advisor-card .btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .advisor-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .advisor-features {
        justify-content: center;
        gap: 20px;
    }

    .advisor-feature {
        font-size: 0.85rem;
    }

    .advisor-card {
        padding: 30px 20px;
    }
}

/* 新首页模块样�?*/

/* Hero button area */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #d63384);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(235, 75, 113, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 75, 113, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    box-shadow: none;
}

.hero-buttons .btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

/* Why self-hosting module */
.why-self-hosting {
    background-color: var(--bg-color);
}

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

.benefit-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 对比表格模块 */
.comparison-section {
    background-color: var(--white-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--bg-color);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--bg-color);
}

.comparison-table .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    margin: 0;
}

/* 评测模块 */
.reviews-section {
    background-color: var(--bg-color);
}

.review-card {
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

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

.review-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.review-badge {
    background-color: var(--primary-blue);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.review-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-highlights {
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
}

.review-highlights h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.review-highlights p {
    color: var(--text-light);
    margin: 0;
}

/* Pros and Cons Section */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros, .cons {
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: 12px;
}

.pros h4, .cons h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pros ul, .cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pros li, .cons li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 1rem;
}

.pros li:last-child, .cons li:last-child {
    margin-bottom: 0;
}

.review-cta {
    margin-top: 30px;
}

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

/* FAQ模块 */
.faq-section {
    background-color: var(--white-color);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    padding: 25px 0;
    position: relative;
    color: var(--text-dark);
    margin: 0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: var(--primary-blue);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    padding-bottom: 25px;
}

.faq-answer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* 最终CTA模块 */
.final-cta {
    background-color: var(--primary-blue);
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: var(--white-color);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--white-color);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 250px;
}

.btn-primary {
    background-color: var(--white-color);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Button Badge */
.btn-badge {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Primary button badge (white background) */
.btn-primary .btn-badge {
    background-color: var(--primary-blue);
    color: var(--white-color);
    border: 1px solid var(--primary-blue);
}

/* Secondary button badge (transparent background) */
.btn-secondary .btn-badge {
    background-color: var(--primary-blue);
    color: var(--white-color);
    border: 1px solid var(--primary-blue);
}

/* 响应式设�?*/
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-header h3 {
        font-size: 1.5rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 280px;
    }
    
    .comparison-table-wrapper {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

/* Tutorial Page Styles */
.prerequisites {
    padding: 80px 0;
    background-color: var(--bg-color);
}

/* Hero Button */
.btn-hero {
    background-color: var(--primary-blue);
    color: var(--white-color);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #d63384;
    transform: translateY(-2px);
    color: var(--white-color);
}

/* Inverted Button */
.btn-inverted {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-inverted:hover {
    background-color: var(--primary-blue);
    color: var(--white-color);
    transform: translateY(-2px);
}

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

.prerequisite-card {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.prerequisite-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.prerequisite-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.prerequisite-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-highlight {
    margin: 25px 0;
}

.cta-highlight .btn {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 24px;
    white-space: normal;
    line-height: 1.4;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

/* Installation Guide */
.installation-guide {
    padding: 80px 0;
    background-color: var(--white-color);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-align: center;
}

.step-container {
    margin-top: 40px;
}

.step-card {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-blue);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Code Block Styles */
.code-block {
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.code-header {
    background-color: var(--border-color);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.copy-btn {
    background-color: var(--primary-blue);
    color: var(--white-color);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: #d63384;
    transform: translateY(-1px);
}

.code-block code {
    display: block;
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-color);
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    padding: 0;
}

.code-block pre code {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-color);
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.command-explanation {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin: 15px 0;
}

/* Screenshot Styles */
.screenshot-placeholder {
    margin: 30px 0;
}

.screenshot-frame {
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.screenshot-content {
    padding: 20px;
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.terminal-line {
    margin-bottom: 8px;
}

.browser-content {
    background-color: var(--white-color);
    color: var(--text-dark);
}

.browser-header {
    background-color: #f1f5f9;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.browser-buttons {
    display: flex;
    gap: 6px;
}

.browser-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-btn.red { background-color: #ff5f56; }
.browser-btn.yellow { background-color: #ffbd2e; }
.browser-btn.green { background-color: #27ca3f; }

.browser-url {
    flex: 1;
    background-color: var(--white-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

.browser-body {
    padding: 40px;
    text-align: center;
}

.n8n-welcome h2 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.n8n-welcome p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.setup-form {
    max-width: 300px;
    margin: 0 auto;
}

.setup-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
}

.setup-btn {
    background-color: var(--primary-blue);
    color: var(--white-color);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.screenshot-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

/* Access Link */
.access-link {
    text-align: center;
    margin: 30px 0;
}

.dashboard-link {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white-color);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dashboard-link:hover {
    background-color: #d63384;
    transform: translateY(-2px);
}

/* What's Next Section */
.whats-next {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.whats-next h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.whats-next > .container > p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.upsell-section {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 0 auto;
}

.upsell-section h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.upsell-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.upsell-cta {
    margin-top: 25px;
}

/* Success Color Variable */
:root {
    --success-color: #10b981;
}

/* Responsive Design for Tutorial */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .prerequisites-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-card {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .browser-body {
        padding: 20px;
    }
    
    .upsell-section {
        padding: 30px 20px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .section-intro {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Deals Page Styles */
.deals-board {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px 0;
}

.deals-board h1 {
    margin-top: 0;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.deals-board .section-subtitle {
    margin-bottom: 70px;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.deal-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.deal-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    margin-right: 15px;
}

.deal-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.deal-title h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    width: 100%;
}

.verified-badge {
    background: linear-gradient(135deg, var(--green-color), #059669);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.expiry-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 8px;
}

.deal-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.deal-expiry {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Deal Code Styles */
.deal-code {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-value {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    text-align: center;
}

.deal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deal-buttons .btn {
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.deal-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    border: none;
}

.deal-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.deal-buttons .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.deal-buttons .btn-secondary:hover {
    background: var(--bg-color);
    color: var(--text-dark);
}

/* How to Use Promo Code Section */
.promo-guide {
    background: var(--bg-color);
    padding: 80px 0;
}

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

.promo-step {
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.promo-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.promo-step h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.promo-step p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.promo-tips {
    background: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.promo-tips h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.promo-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-tips li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.promo-tips li:before {
    content: "�?;
    position: absolute;
    left: 0;
    color: var(--green-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.promo-tips li:last-child {
    margin-bottom: 0;
}

/* Where to Find Promo Codes Section */
.find-promo-codes {
    background: var(--white-color);
    padding: 80px 0;
}

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

.source-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.source-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.source-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.source-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.source-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.source-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.source-card li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.source-card li:before {
    content: "�?;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.source-card li:last-child {
    margin-bottom: 0;
}

.promo-tips-note {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.promo-tips-note h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.promo-tips-note p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Quick Guide Section */
.quick-guide {
    background: var(--white-color);
    padding: 80px 0;
}

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

.guide-item {
    text-align: center;
    padding: 30px 20px;
}

.guide-icon {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.guide-item h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.guide-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Responsive for Deals Page */
@media (max-width: 768px) {
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .deal-card {
        padding: 25px;
    }
    
    .deal-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .promo-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promo-sources {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Quiz Section Styles */
#quiz-section { 
    padding-top: 120px; 
    padding-bottom: 100px;
}

.quiz-step { 
    margin-bottom: 60px; 
}

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

.option-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
}

.option-card .option-content {
    cursor: pointer !important;
}

.option-card * {
    cursor: pointer !important;
}

.option-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.08); 
}

.option-card input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.option-card .option-content {
    padding: 25px;
    border: 2px solid transparent;
    border-radius: 14px;
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: var(--primary-blue);
}

.option-card .option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.option-card .option-icon { 
    flex-shrink: 0;
}

.option-card .option-icon svg { 
    width: 24px; 
    height: 24px; 
    stroke: var(--primary-blue); 
}

.option-card .option-title { 
    font-weight: 700; 
    font-size: 1.1rem; 
    margin: 0;
    color: var(--text-dark); 
}

.option-card .option-desc { 
    color: var(--text-light); 
    font-size: 0.9rem; 
}

.quiz-submit { 
    text-align: center; 
    margin-top: 50px; 
}

.quiz-submit .btn {
    display: inline-block;
    padding: 14px 32px;
    background-image: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.quiz-submit .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

/* Results Section */
.results-section { 
    display: none; 
    padding-top: 120px; 
    padding-bottom: 100px;
}

.result-card {
    background-color: var(--white-color);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 40px;
    animation: fadeIn 0.8s ease-out;
    margin-bottom: 30px;
}

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

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

.result-header span {
    display: inline-block;
    padding: 5px 15px;
    background-image: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    color: var(--white-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.result-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    align-items: stretch; 
}

.recommendation {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
}

.recommendation.primary {
    border: 2px solid var(--primary-blue);
    background-color: var(--white-color);
}

.recommendation .rec-logo { 
    height: 36px; 
    width: auto; 
    margin-bottom: 20px; 
    object-fit: contain; 
    align-self: flex-start; 
}

.recommendation .rec-title { 
    font-size: 1.2rem; 
    margin-bottom: 10px; 
    color: var(--text-dark); 
}

.recommendation ul { 
    list-style-position: inside; 
    padding-left: 5px; 
    margin: 15px 0; 
    flex-grow: 1; 
    color: var(--text-light); 
}

.recommendation .btn { 
    width: 100%; 
    text-align: center; 
    margin-top: auto; 
}

.retest-button {
    display: inline-block;
    text-align: center;
    margin-top: 40px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}

.retest-button:hover { 
    background-color: var(--bg-color); 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .options-grid { 
        grid-template-columns: 1fr; 
    }
    
    .result-grid { 
        grid-template-columns: 1fr; 
    }
}

/* Additional styles for secure page */
.info-box {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.info-box h4 {
    color: #1e40af;
    margin-bottom: 10px;
}

.info-box ul {
    list-style: none;
    margin: 10px 0;
}

.info-box li {
    color: #1e40af;
    margin-bottom: 5px;
}

.warning {
    color: #dc2626 !important;
    font-weight: 600;
    margin-top: 10px;
}

.form-fields {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.field-group input,
.field-group select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.field-group input[readonly] {
    background: #f9fafb;
    color: #6b7280;
}

.field-group small {
    color: #6b7280;
    font-size: 0.9rem;
}

.field-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.field-group.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.ssl-options {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.ssl-option {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ssl-option.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.ssl-option label {
    font-weight: 600;
    color: var(--text-dark);
}

.ssl-option select {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.ssl-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.success-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.success-icon {
    flex-shrink: 0;
    color: #10b981;
}

.success-content h4 {
    color: #065f46;
    margin-bottom: 8px;
}

.success-content p {
    color: #047857;
    margin: 0;
}

/* Screenshot styles */
.screenshot-container {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
}

.screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}

.screenshot-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.screenshot-caption svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* Responsive screenshot */
@media (max-width: 768px) {
    .screenshot-container {
        margin: 20px 0;
    }
    
    .screenshot-caption {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Dropdown Menu Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 6px 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    margin: 0;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 8px;
}

.nav-menu .dropdown-menu a:hover {
    background: var(--bg-color);
    color: var(--primary-blue);
    transform: none;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .nav-menu.active .dropdown {
        position: static;
    }
    
    .nav-menu.active .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-color);
        margin: 0;
        border-radius: 8px;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        max-height: none;
        margin: 10px 0;
        padding: 10px;
    }
    
    .nav-menu.active .dropdown-menu a {
        padding: 8px 15px;
        font-size: 0.9rem;
        display: block;
        margin: 5px 0;
    }
    
    .nav-menu.active .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
}

/* Hostinger Advantage Section Styles */
.hostinger-advantage {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.hostinger-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.advantage-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(235, 75, 113, 0.1);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.advantage-card:hover .advantage-icon::before {
    transform: translateX(100%);
}

.advantage-icon svg {
    color: var(--white-color);
    width: 40px;
    height: 40px;
    z-index: 1;
    position: relative;
}

.advantage-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.advantage-card strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Mobile Responsive for Advantage Section */
@media (max-width: 768px) {
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .advantage-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .advantage-card h3 {
        font-size: 1.2rem;
    }
}

/* Final CTA */
.cta-section {
    background-color: var(--white-color);
    text-align: center;
    padding: 80px 0;
}

/* New homepage module styles */
.new-homepage {
}

/* Review module */
.review-module {
}

/* Final CTA module */
.final-cta-module {
}

/* What is n8n Section */
.what-is-n8n {
    background-color: var(--bg-color);
    padding: 100px 0;
}

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

.what-is-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-is-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.what-is-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.what-is-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.what-is-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Key Features Section */
.key-features {
    background-color: var(--white-color);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-color);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

/* How it Works Section */
.how-it-works {
    background-color: var(--bg-color);
    padding: 100px 0;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
    transform: translateY(-50%);
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Use Cases Section */
.use-cases {
    background-color: var(--white-color);
    padding: 100px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.use-case-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.use-case-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.use-case-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Responsive Styles for New Modules */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .feature-item p {
        max-width: 100%;
    }
    
    .feature-image {
        height: 180px;
    }
    
    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .use-case-card {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .how-it-works-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step:nth-child(2n)::after {
        display: none;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
