:root {
    --navy: #1a2c4e;
    --sky-blue: #4a90e2;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
}

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

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

/* Header */
header {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sky-blue);
}

.header-cta {
    background: var(--sky-blue);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a7c 100%);
    color: var(--white);
    padding: 120px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s backwards;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--sky-blue);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s backwards;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
    background: #3a7bc8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

/* Common Section Styles */
section {
    padding: 80px 2rem;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--sky-blue);
    margin: 1rem auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Why You Need Section */
.why-need {
    background: var(--white);
}

.why-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem auto;
    border-left: 5px solid var(--sky-blue);
    max-width: 900px;
}

.highlight-box h3 {
    color: var(--navy);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}

.highlight-box p {
    text-align: left;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Email Benefits Section */
.email-benefits {
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a7c 100%);
    color: var(--white);
}

.email-benefits .section-title {
    color: var(--white);
}

.email-benefits .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.email-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.email-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.email-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--sky-blue);
}

.email-card p {
    line-height: 1.7;
    opacity: 0.9;
}

.email-example {
    background: rgba(74, 144, 226, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    background: var(--white);
}

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

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.3);
    border-color: var(--sky-blue);
}

.pricing-card.featured {
    border: 3px solid var(--sky-blue);
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.pricing-card h3 {
    color: var(--navy);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.8rem;
    color: var(--sky-blue);
    font-weight: 700;
    margin: 1rem 0;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
}

.features li {
    padding: 0.6rem 0;
    color: #555;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.domain-info {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.domain-info h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.domain-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.domain-link {
    display: inline-block;
    background: var(--sky-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.domain-link:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

/* Limitations Section */
.limitations {
    background: var(--light-gray);
}

.what-included, .what-not-included {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.what-included h3 {
    color: #27ae60;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.what-not-included h3 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.limitations ul {
    list-style: none;
    padding: 0;
}

.limitations ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

.what-included ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.what-not-included ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.3rem;
}

.perfect-for {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 5px solid var(--sky-blue);
}

.perfect-for h4 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.perfect-for p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Portfolio Section */
.portfolio {
    background: var(--light-gray);
}

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

.portfolio-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.portfolio-card.coming-soon {
    opacity: 0.7;
}

.portfolio-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.portfolio-card h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.portfolio-type {
    color: var(--sky-blue);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.portfolio-link {
    display: inline-block;
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: #3a7bc8;
    transform: translateX(5px);
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--sky-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--navy);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--sky-blue);
    color: var(--white);
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 1.05rem;
}

.contact-info a {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
}

footer p {
    opacity: 0.8;
    font-size: 1rem;
}

footer a {
    color: var(--sky-blue);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid, 
    .pricing-grid, 
    .testimonials-grid, 
    .email-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}
