/* ==================== GET STARTED PAGE ==================== */

/* -- Page entrance fade-in -- */
.gs-page-enter {
    opacity: 0;
}

.gs-page-visible {
    opacity: 1;
    transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* -- Override navbar for this page -- */
.navbar-logo-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1A1C1A;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: color 200ms ease;
}

.navbar-logo-link:hover {
    color: #1A1C1A;
}

/* -- Main container -- */
.gs-main {
    min-height: 100vh;
    background: var(--bg-light);
}

/* -- Hero -- */
.gs-hero {
    padding: 140px 40px 60px;
    text-align: center;
    background: var(--bg-light);
}

.gs-hero-content {
    max-width: 620px;
    margin: 0 auto;
}

.gs-hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 52px);
    color: var(--text-on-green);
    line-height: 1.15;
    opacity: 0;
    animation: gsFadeInUp 800ms cubic-bezier(0.22, 1, 0.36, 1) 400ms forwards;
}

.gs-hero-subtext {
    font-size: 17px;
    color: var(--accent);
    max-width: 480px;
    margin: 20px auto 0;
    opacity: 0;
    animation: gsFadeInUp 800ms cubic-bezier(0.22, 1, 0.36, 1) 700ms forwards;
}

/* -- Form Section -- */
.gs-form-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.gs-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gs-form-group {
    opacity: 0;
    animation: gsFadeInUp 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.gs-form-group:nth-child(1) { animation-delay: 900ms; }
.gs-form-group:nth-child(2) { animation-delay: 1150ms; }
.gs-form-group:nth-child(3) { animation-delay: 1400ms; }
.gs-form-group:nth-child(4) { animation-delay: 1650ms; }
.gs-form-group:nth-child(5) { animation-delay: 1900ms; }

.gs-label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-on-green);
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.gs-optional {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: var(--accent);
}

/* -- Plan Cards -- */
.gs-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gs-plan-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid rgba(26, 28, 26, 0.08);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    cursor: none;
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.gs-plan-card:hover {
    border-color: rgba(151, 201, 60, 0.4);
    transform: translateY(-2px);
}

.gs-plan-card.selected {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(151, 201, 60, 0.15), 0 4px 20px rgba(151, 201, 60, 0.1);
    transform: translateY(-2px);
}

.gs-plan-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-on-green);
}

/* -- Inputs -- */
.gs-input {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-on-green);
    background: var(--white);
    border: 1.5px solid rgba(26, 28, 26, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    outline: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.gs-input::placeholder {
    color: rgba(69, 90, 100, 0.5);
}

.gs-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(151, 201, 60, 0.1);
}

.gs-input.gs-error-state {
    border-color: #E53935;
}

.gs-textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 200px;
    line-height: 1.6;
}

.gs-input-other {
    margin-top: 12px;
}

/* -- Industry Tags -- */
.gs-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gs-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-on-green);
    background: var(--white);
    border: 1.5px solid rgba(26, 28, 26, 0.1);
    border-radius: 999px;
    padding: 8px 18px;
    cursor: none;
    transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 150ms ease;
}

.gs-tag:hover {
    border-color: rgba(151, 201, 60, 0.4);
    transform: translateY(-1px);
}

.gs-tag.selected {
    background: var(--green);
    border-color: var(--green);
    color: var(--text-on-green);
}

/* -- Error Messages -- */
.gs-error {
    font-size: 13px;
    color: #E53935;
    margin-top: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms ease, max-height 200ms ease, margin-top 200ms ease;
}

.gs-error.visible {
    opacity: 1;
    max-height: 30px;
    margin-top: 8px;
}

/* -- CTA Area -- */
.gs-form-cta {
    text-align: center;
    padding-top: 12px;
    opacity: 0;
    animation: gsFadeInUp 800ms cubic-bezier(0.22, 1, 0.36, 1) 2150ms forwards;
}

.gs-submit-btn {
    font-family: 'DM Sans', sans-serif;
    animation: gsPulse 2.4s ease-in-out infinite;
    width: 100%;
    max-width: 380px;
}

.gs-cta-subtext {
    font-size: 13px;
    color: var(--accent);
    margin-top: 12px;
}

/* -- Success State -- */
.gs-success {
    display: none;
    text-align: center;
    padding: 60px 0;
}

.gs-success.visible {
    display: block;
    animation: gsFadeInUp 500ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.gs-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    color: var(--text-on-green);
    font-size: 28px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gs-success-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--text-on-green);
    line-height: 1.2;
    margin-bottom: 12px;
}

.gs-success-text {
    font-size: 16px;
    color: var(--accent);
    max-width: 420px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.gs-back-btn {
    display: inline-block;
}

/* -- Trust Strip -- */
.gs-trust {
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(26, 28, 26, 0.06);
}

.gs-trust-items {
    font-size: 14px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gs-trust-dot {
    color: var(--green);
    font-size: 18px;
    line-height: 1;
}

/* -- Footer overrides -- */
.gs-footer .footer-content {
    grid-template-columns: 1fr 1fr;
}

/* -- Animations -- */
@keyframes gsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gsPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(151, 201, 60, 0.45);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(151, 201, 60, 0);
    }
}

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

    .gs-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    body, a, button {
        cursor: auto;
    }

    #cursor {
        display: none;
    }

    .gs-hero {
        padding: 110px 20px 40px;
    }

    .gs-hero-title {
        font-size: 28px;
    }

    .gs-hero-subtext {
        font-size: 15px;
    }

    .gs-form-section {
        padding: 0 20px 60px;
    }

    .gs-form {
        gap: 32px;
    }

    .gs-plan-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gs-plan-card {
        padding: 14px 10px;
    }

    .gs-plan-name {
        font-size: 14px;
    }

    .gs-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .gs-tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    .gs-trust-items {
        font-size: 13px;
        gap: 8px;
    }

    .gs-footer {
        padding: 48px 20px 24px;
    }
}

@media (max-width: 420px) {
    .gs-plan-grid {
        grid-template-columns: 1fr;
    }
}
