html {
    scroll-behavior: smooth;
}

/* Generic content wrapper */
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

.content h1 {
   font-size: 36px;
   color: #073590;
   margin-bottom: 20px;
   transition: color 0.2s ease;
}

.content p {
   font-size: 20px;
   color: #333;
}

/* HERO SECTION */
.home-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 160px;
    padding-bottom: 100px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
}

/* ✅ THIS IS THE IMPORTANT PART */
/* Change H1 color when Get Started button is hovered */
.hero-right:has(.get-started-btn:hover) h1 {
    color: #01b871;
}

.hero-quote {
    margin-top: 10px;
    margin-bottom: 8px;
}

.hero-quote-author {
    display: block;
    margin-top: 4px;
    font-style: normal;
    font-weight: 700;
}

.hero-subtitle {
    margin-top: 0;
    margin-bottom: 16px;
    color: #0A2540;
}

/* Picture boxes */
.image-box {
    padding-bottom: 80px;
    width: 400px;
    height: 400px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services */
#services-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0A2540;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.service-item h3 {
    margin-top: 12px;
    margin-bottom: 8px;
    color: #0A2540;
}

.service-item p {
    margin: 0;
    color: #0A2540;
}

.service-item .image-box {
    max-width: none;
    height: 480px;
}

/* About + Contact layout */
.about-contact {
    display: flex;
    gap: 80px;
    margin-top: 24px;
    margin-bottom: 80px;
}

.mission,
.contact-panel {
    flex: 1;
}

.mission p {
    color: #374151;
    line-height: 1.6;
}

/* Contact form styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.contact-form input,
.contact-form textarea {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font: inherit;
    background-color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #073590;
    box-shadow: 0 0 0 1px #2563eb22;
}

/* Buttons */
.get-started-btn,
.submit-btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 12px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: #073590;
    color: #ffffff;
    transition: background-color 0.15s ease, transform 0.1s ease;
    text-decoration: none;
}

.get-started-btn:hover,
.submit-btn:hover {
    background-color: #01b871;
    transform: translateY(-1px);
}

.get-started-btn:active,
.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.site-footer {
    background: #f8f9fa;
    padding: 30px 20px;
    text-align: center;
    color: #666;
    border-top: 1px solid #e5e7eb;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive layout */
@media (max-width: 900px) {
    .home-hero {
        flex-direction: column;
        padding-top: 100px;
    }

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

    .about-contact {
        flex-direction: column;
    }

    .image-box {
        max-width: 100%;
    }

    /* Responsive features grid */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Responsive stats */
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* ========== HERO EYEBROW ========== */
.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #01b871;
    margin-bottom: 14px;
}

/* ========== HERO BADGES ========== */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 24px;
}

.badge {
    display: inline-block;
    padding: 7px 14px;
    background: #e8f5e9;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0A2540;
}

/* ========== SOCIAL PROOF BANNER ========== */
.proof-banner {
    background: #0A2540;
    padding: 28px 20px;
}

.proof-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #01b871;
}

.proof-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ========== PAIN POINTS ========== */
.pain-section {
    background: #fff;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pain-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px 22px;
    border-top: 4px solid #e5e7eb;
    transition: border-color 0.2s ease;
}

.pain-card:hover {
    border-top-color: #073590;
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.pain-card h3 {
    font-size: 1.05rem;
    color: #0A2540;
    margin: 0 0 10px;
}

.pain-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px;
}

.pain-solution {
    font-size: 0.85rem;
    font-weight: 600;
    color: #01b871;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

/* ========== SERVICES CARDS ========== */
.services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1060px;
    margin: 0 auto;
}

.service-card {
    border-radius: 14px;
    padding: 36px 32px;
}

.service-card--blue {
    background: linear-gradient(135deg, #073590, #0A2540);
    color: white;
}

.service-card--green {
    background: linear-gradient(135deg, #01b871, #00a165);
    color: white;
}

.service-card--outline {
    background: white;
    border: 2px solid #e5e7eb;
    color: #0A2540;
}

.service-card--dark {
    background: #0A2540;
    color: white;
}

.sc-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.sc-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.95);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.service-card--outline .sc-tag {
    background: #e8f5e9;
    color: #01b871;
}

.service-card h3 {
    font-size: 1.2rem;
    margin: 0 0 12px;
    color: inherit;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 18px;
    opacity: 0.88;
}

.service-card--outline p {
    opacity: 1;
    color: #555;
}

.service-card--blue p,
.service-card--dark p {
    opacity: 1;
    color: white;
    font-weight: 600;
}

.sc-list {
    margin: 0;
    padding-left: 18px;
    font-size: 0.88rem;
    line-height: 2;
    opacity: 0.9;
}

.service-card--outline .sc-list {
    opacity: 1;
    color: #374151;
}

.service-card--blue .sc-list,
.service-card--dark .sc-list {
    opacity: 1;
    color: white;
    font-weight: 600;
}

/* ========== HOW IT WORKS STEPS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 28px 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    text-align: center;
}

.step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #073590;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step-num--green {
    background: #01b871;
}

.step-card h3 {
    font-size: 1rem;
    color: #0A2540;
    margin: 0 0 10px;
}

.step-card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ========== WHO IT'S FOR ========== */
.business-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.biz-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.biz-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.biz-emoji {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.biz-card h3 {
    font-size: 1rem;
    color: #0A2540;
    margin: 0 0 10px;
}

.biz-card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ========== VALUE BANNER ========== */
.value-banner {
    background: linear-gradient(135deg, #073590 0%, #0A2540 100%);
}

.value-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    max-width: 860px;
    margin: 0 auto;
    align-items: center;
}

.vs-item {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 28px 24px;
}

.vs-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}

.vs-label--green {
    color: #01b871;
}

.vs-list {
    margin: 0;
    padding-left: 18px;
    font-size: 0.88rem;
    line-height: 2;
}

.vs-list--bad {
    color: rgba(255,255,255,0.65);
}

.vs-list--good {
    color: rgba(255,255,255,0.9);
}

.vs-divider {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* ========== OUTLINE BUTTON ========== */
.outline-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 9999px;
    border: 2px solid #073590;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    color: #073590;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.outline-btn:hover {
    background: #073590;
    color: white;
    transform: translateY(-1px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .pain-grid,
    .business-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .services-cards {
        grid-template-columns: 1fr;
    }

    .pain-grid,
    .business-types,
    .steps-grid,
    .value-stats {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        display: none;
    }

    .proof-divider {
        display: none;
    }

    .proof-inner {
        gap: 28px;
    }
}

/* #2ECC71 */
/* 01b871