/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 55vh;
    background: linear-gradient(135deg, #1a4d5e 0%, #0f2938 100%);
    background-image: 
        linear-gradient(rgba(26, 77, 94, 0.75), rgba(15, 41, 56, 0.75)),
        url('images/pc-computer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0) 0px,
            rgba(0, 0, 0, 0) 98px,
            rgba(255, 255, 255, 0.03) 100px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Hero Text */
.hero-text {
    color: #ffffff;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 8px;
}

/* CTA Buttons */
.cta-container {
    margin-top: 32px;
}

.primary-cta {
    background-color: #00ff88;
    color: #0f2938;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.4);
}

.secondary-cta {
    display: block;
    margin-top: 12px;
    color: #ffffff;
    opacity: 0.85;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

.secondary-cta:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Value Proposition Section */
.value-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.value-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1a4d5e;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
}

.value-description {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background-color: #f5f5f5;
    padding: 60px 20px 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    color: #00ff88;
    margin-bottom: 24px;
}

.service-icon svg,
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a4d5e;
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #555;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #00ff88;
    flex-shrink: 0;
}

/* Good Fit Section */
.good-fit-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.good-fit-main-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a4d5e;
    text-align: center;
    margin-bottom: 16px;
}

.good-fit-sub-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a4d5e;
    text-align: center;
    margin-bottom: 48px;
}

.good-fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.good-fit-column {
    background: #ffffff;
    padding: 40px 36px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.good-fit-column:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.good-fit-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a4d5e;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.good-fit-list {
    list-style: none;
}

.good-fit-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

.good-fit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 14px;
    color: #00ff88;
    font-weight: 700;
    font-size: 16px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: rgba(0, 255, 136, 0.12);
    border-radius: 50%;
}

.good-fit-list.not-good li:before {
    content: "✗";
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.12);
    font-size: 14px;
}

.good-fit-link-wrapper {
    text-align: center;
    margin-top: 48px;
}

.good-fit-link {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #1a4d5e;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #1a4d5e;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.good-fit-link:hover {
    background-color: #1a4d5e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 94, 0.2);
}

/* How It Works Section */
.how-it-works-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.how-it-works-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a4d5e;
    text-align: center;
    margin-bottom: 48px;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.how-it-works-step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: #00ff88;
    color: #0f2938;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a4d5e;
    margin-bottom: 8px;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Mid-page CTA */
.mid-page-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
}

/* Cross-link Section */
.cross-link-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.cross-link {
    color: #1a4d5e;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #00ff88;
    transition: color 0.2s ease;
}

.cross-link:hover {
    color: #00ff88;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1a4d5e 0%, #0f2938 100%);
    padding: 60px 20px;
    color: #ffffff;
}

.footer-cta {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #00ff88;
    flex-shrink: 0;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #00ff88;
}

.contact-link[href^="tel:"] {
    font-weight: 700;
    font-size: 20px;
    color: #00ff88;
}

.contact-text {
    font-size: 18px;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .value-headline {
        font-size: 36px;
    }

    .value-description {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .good-fit-main-heading {
        font-size: 32px;
    }

    .good-fit-sub-heading,
    .how-it-works-heading {
        font-size: 28px;
    }

    .good-fit-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .primary-cta {
        font-size: 16px;
        padding: 12px 24px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 45vh;
        padding: 30px 20px;
    }

    .logo {
        margin-bottom: 40px;
    }

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

    .hero-tagline {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .value-section {
        padding: 60px 20px;
    }

    .value-headline {
        font-size: 28px;
    }

    .services-section {
        padding: 40px 20px 60px;
    }

    .good-fit-section,
    .how-it-works-section {
        padding: 60px 20px;
    }

    .good-fit-main-heading {
        font-size: 28px;
    }

    .good-fit-sub-heading,
    .how-it-works-heading {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .good-fit-column {
        padding: 24px;
    }

    .primary-cta {
        font-size: 16px;
        padding: 12px 20px;
    }
}

