/* ==================================================================================
    FIX: External CSS Imports via @import 
    ==================================================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');


/* --- Variable Definitions --- */
:root {
    --wave-primary: #004d99;      /* Darker Main Brand Blue */
    --wave-secondary: #008cba;    /* Teal/Cyan Accent */
    --wave-light-bg: #f5faff;     /* Very Light Blueish Background */
    --wave-text-dark: #1f2937;    /* Dark Headings */
    --wave-text-body: #4b5563;    /* Body Text */
    --wave-shadow-box: 0 4px 15px rgba(0, 0, 0, 0.08);
    --wave-shadow-hover: 0 8px 25px rgba(0, 119, 182, 0.2); 
    --wave-icon-color: var(--wave-primary); 
}

/* Base Styling for Page Consistency */
body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--wave-text-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

/* Content Wrapper for CMS environments */
div[itemprop="articleBody"] {
     margin: 0 auto;
}

/* General Section Wrapper */
.wave-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 25px;
}

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

.section-header h2 {
    font-size: 3em;
    color: var(--wave-text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2em;
    color: var(--wave-text-body);
    max-width: 800px;
    margin: 0 auto;
}

/* --- HERO SECTION --- */
.wave-hero {
    /* !!! IMPORTANT: REPLACE URL WITH YOUR IMAGE PATH !!! */
    background-image: 
        linear-gradient(rgba(0, 77, 153, 0.7), rgba(0, 77, 153, 0.8)), 
        url('path/to/your/shared-hosting-banner.jpg'); 
    background-color: var(--wave-primary);
    
    /* FIX: Changed from 'cover' to '100% auto' as requested */
    background-size: 100% auto;
    margin-top: -5.5vh; 
    z-index: 0;
    
    background-position: center center;
    background-repeat: no-repeat;
    
    color: white;
    padding: 150px 25px 120px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.hero-content h3 {
    font-size: 1.6em;
    margin-bottom: 40px;
    color: #b3e5fc; 
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Hero Features Box */
.hero-feature-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    color: white;
}

.hero-feature-item i {
    font-size: 1.5em;
    color: var(--wave-secondary);
    margin-right: 10px;
}


/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    margin: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.primary-cta {
    background-color: var(--wave-secondary);
    color: white;
    border: 2px solid var(--wave-secondary);
    box-shadow: 0 4px 10px rgba(0, 140, 186, 0.5); 
}

.primary-cta:hover {
    background-color: #007799; 
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 140, 186, 0.7);
}

.secondary-cta {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-cta:hover {
    background-color: white;
    color: var(--wave-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

.large-cta {
    font-size: 1.4em; 
    padding: 20px 50px;
}


/* --- PRICING GRID & CARDS --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 20px; 
    margin-bottom: 60px;
}

.pricing-card {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: var(--wave-shadow-box);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* Highlight the middle (ESSENTIAL) plan */
.pricing-card.highlight {
    border-top: 5px solid var(--wave-primary);
    box-shadow: 0 10px 25px rgba(0, 77, 153, 0.3); 
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wave-shadow-hover);
    border-color: var(--wave-secondary);
}

.pricing-card-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.pricing-card h3 {
    font-size: 2.2em;
    color: var(--wave-primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.pricing-card-description {
    color: var(--wave-text-body);
    font-style: italic;
    margin-bottom: 20px;
}

.shared-features-list {
    text-align: left; 
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
    font-size: 1em;
    flex-grow: 1; 
}

.shared-features-list li {
    padding: 8px 0;
    color: var(--wave-text-dark);
    font-weight: 500;
    line-height: 1.4;
    display: flex; 
    align-items: center;
}

.shared-features-list li i {
    color: var(--wave-secondary);
    font-size: 1.1em;
    width: 25px;
    text-align: center;
    margin-right: 8px; 
}

.shared-features-list .feature-note {
    font-size: 0.9em;
    font-weight: 400;
    color: var(--wave-text-body);
    display: block;
    margin-left: 33px; 
}

/* Separator for feature lists */
.separator {
    border: none; 
    border-top: 1px solid #f0f0f0; 
    margin: 10px 0;
}


/* --- FULL SPECIFICATION TABLE --- */
.full-spec-section {
    padding-top: 0; 
    background-color: var(--wave-light-bg);
}

.spec-table-container {
    width: 100%;
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 0;
    min-width: 800px;
    box-shadow: var(--wave-shadow-box);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.spec-table th, .spec-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.spec-table th {
    background-color: var(--wave-primary); 
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

/* Color coding table headers */
.spec-table thead th:nth-child(2) { background-color: var(--wave-secondary); } 
.spec-table thead th:nth-child(3) { background-color: #007799; } 
.spec-table thead th:nth-child(4) { background-color: #004588; } 

.spec-table tr:nth-child(odd) {
    background-color: #fcfcfc;
}

.spec-table tr:hover {
    background-color: var(--wave-light-bg);
}

.spec-table td {
    color: var(--wave-text-dark);
    font-weight: 500;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--wave-text-body);
    background-color: #fff;
}

.check-icon {
    color: var(--wave-secondary);
    font-weight: 900;
}

.spec-note {
    text-align: center; 
    font-size: 0.9em; 
    color: var(--wave-text-body); 
    margin-top: 20px;
}

/* --- ACCORDION FAQ STYLES --- */
.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--wave-light-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--wave-shadow-box);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 30px;
    cursor: pointer;
    background-color: #fff;
    color: var(--wave-text-dark);
    font-weight: 600;
    font-size: 1.15em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f2f2f2;
}

.accordion-header i {
    color: var(--wave-secondary);
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: var(--wave-primary);
}

.accordion-content {
    padding: 0 30px;
    color: var(--wave-text-body);
    background-color: var(--wave-light-bg);
    display: none; 
}

.accordion-content-inner {
    padding: 20px 0 30px 0;
}


/* --- CONTACT SECTION --- */
.migration-cta-section {
    background-color: var(--wave-light-bg);
    padding: 50px 25px;
    text-align: center;
    border-top: 3px solid var(--wave-primary);
}

.contact-box {
    max-width: 900px; 
    margin: 0 auto;
}

.migration-cta-section h2 {
    color: var(--wave-text-dark);
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.migration-cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}


/* Responsive Adjustments */
@media (max-width: 900px) {
    .hero-feature-grid {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .wave-hero { 
        padding: 100px 20px 60px 20px;
        /* Updated this line for smaller screens too, from 'cover' to '100% auto' */
        background-size: 100% auto;
    }
    .hero-content h1 { font-size: 3em; }
    .hero-content h3 { font-size: 1.3em; }
    .wave-section { padding: 60px 20px; }
    .section-header h2 { font-size: 2.5em; }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .spec-table {
        min-width: 700px;
    }
}