/* Global Reset & Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --go-blue: #233472;
    --go-orange: #f7941d;
    --go-light: #fff8ee;
    --go-dark: #222222;
    --text-primary: var(--go-dark);
    --text-secondary: #555555;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --gradient-hero: linear-gradient(135deg, var(--go-light), #ffffff);
    --gradient-cta: linear-gradient(135deg, var(--go-blue), #121633);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 4rem 0;
}

/* Header / Nav */
header {
    padding: 1rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 10;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--go-blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 60px 0 40px;
    min-height: auto;
    text-align: center;
}

.hero::before,
.hero::after {
    display: none;
    /* Remove dark mode blobs */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(247, 148, 29, 0.12);
    color: var(--go-blue);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--go-blue);
}

.hero h1 span {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--go-orange);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: var(--go-orange);
    color: white;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    filter: brightness(1.05);
}

.btn-outline {
    background: #ffffff;
    border: 1px solid rgba(35, 52, 114, 0.2);
    color: var(--go-blue);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: var(--go-blue);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
    backdrop-filter: none;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: rgba(247, 148, 29, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--go-orange);
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--go-blue);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Comparison / Steps Section */
.steps {
    background: #fff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--go-blue);
}

.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.step-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--go-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
}

.step-image {
    flex: 1;
    background: var(--go-light);
    height: 250px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: var(--gradient-cta);
    padding: 5rem 0;
    color: white;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
}

.cta-box::before {
    display: none;
}

.cta-box h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    border-top: 1px solid #eee;
    padding: 2rem 0;
    color: #777;
    text-align: center;
    font-size: 0.875rem;
    background: #fff;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal h3 {
    color: var(--go-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.modal-col h4 {

    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .step-image {
        width: 100%;
        height: 200px;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }
}
/* Pricing and Features Modal Styles - Append to styles.css */

.modal-col h4 {
    color: var(--go-orange);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.modal-col ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-col li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.modal-col li::before {
    content: '•';
    color: var(--go-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.link-learn-more {
    color: var(--go-blue);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Pricing Section */
.pricing-section {
    background: var(--go-light);
    text-align: center;
    padding: 5rem 0;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid var(--go-orange);
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card h2 {
    color: var(--go-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--go-orange);
    margin: 1.5rem 0;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-details {
    background: rgba(247, 148, 29, 0.06);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.pricing-details h4 {
    color: var(--go-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.pricing-details li {
    color: var(--text-secondary);
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.pricing-details li::before {
    content: '✓';
    color: var(--go-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.all-features-link {
    color: var(--go-blue);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
    transition: color 0.2s ease;
}

.all-features-link:hover {
    color: var(--go-orange);
}

.pricing-disclaimer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 1.6;
}

.pricing-disclaimer strong {
    color: var(--go-blue);
}

/* Features Modal */
.features-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.features-modal {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 900px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.features-modal-overlay.active .features-modal {
    transform: translateY(0);
}

.features-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.features-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--go-blue);
}

.features-modal h2 {
    color: var(--go-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.features-modal-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.features-category {
    margin-bottom: 2.5rem;
}

.features-category h3 {
    color: var(--go-blue);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-icon {
    font-size: 1.2rem;
}

.features-category p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.feature-item {
    background: rgba(247, 148, 29, 0.04);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border-left: 3px solid var(--go-orange);
}

.feature-item strong {
    color: var(--go-blue);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Responsive Additions for New Styles */
@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }
}
