/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
    --primary-color: #D4145A;
    --primary-dark: #8B0F3E;
    --secondary-color: #2B5A4E;
    --accent-gold: #D4AF37;
    --light-bg: #FFF5F0;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-name strong {
    font-size: 18px;
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(212, 20, 90, 0.05) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 20, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

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

.hero h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.tagline {
    font-size: 24px;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 600;
}

.description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 20, 90, 0.3);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: 80px 20px;
    background: var(--white);
}

.how-it-works h2,
.why-us h2,
.plans h2,
.contact-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.step {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(43, 90, 78, 0.05) 100%);
}

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

.comparison-card {
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.comparison-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
}

.comparison-card.traditional h3 {
    color: #D32F2F;
    border-bottom-color: #D32F2F;
}

.comparison-card.hostwell h3 {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
}

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

/* ============================================
   PLANS SECTION
   ============================================ */

.plans {
    padding: 80px 20px;
    background: var(--white);
}

.plans-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 50px;
}

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

.plan-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.plan-card.starter {
    border-top: 4px solid #E91E63;
}

.plan-card.connect {
    border-top: 4px solid var(--secondary-color);
}

.plan-card.plus {
    border-top: 4px solid #2196F3;
}

.plan-card.prime {
    border-top: 4px solid var(--accent-gold);
}

.plan-card.popular {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

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

.plan-header h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.plan-header .duration {
    font-size: 14px;
    color: var(--text-light);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 20px;
}

.plan-price .currency {
    font-size: 18px;
    color: var(--primary-color);
}

.plan-price .amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price .period {
    font-size: 14px;
    color: var(--text-light);
}

.plan-total {
    background: rgba(212, 20, 90, 0.1);
    padding: 10px;
    border-radius: 5px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
}

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

.plan-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.plan-button:hover {
    box-shadow: 0 6px 15px rgba(212, 20, 90, 0.3);
    transform: translateY(-2px);
}

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

.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(212, 20, 90, 0.05) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detail-item .icon {
    font-size: 24px;
    min-width: 40px;
}

.detail-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 20, 90, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 500;
    font-size: 13px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 20, 90, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

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

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 20px 20px;
}

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .tagline {
        font-size: 18px;
    }

    .how-it-works h2,
    .why-us h2,
    .plans h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .steps,
    .comparison {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .plan-card.popular {
        transform: scale(1);
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .tagline {
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
    }

    .how-it-works,
    .why-us,
    .plans,
    .contact-section {
        padding: 50px 20px;
    }

    .plan-price .amount {
        font-size: 24px;
    }

    .submit-button {
        font-size: 14px;
    }
}
