/* ==================== GrowthMind Page Specific Styles ==================== */

/* Hero Section with Gradient */
.growthmind-hero {
    background: linear-gradient(135deg, #00a0a8 0%, #004a9f 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Star Pattern Background */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('impactPlus.svg');
    background-repeat: repeat;
    background-size: 150px;
    opacity: 0.06;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.hero-container-gm {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-gm {
    color: white;
}

.gm-badge {
    display: inline-block;
    background-color: white;
    color: var(--color-impact);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.gm-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.gm-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: white;
    opacity: 0.95;
}

/* Hero Mockup */
.hero-mockup {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mockup-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.mockup-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

/* What is GrowthMind Section */
.what-section {
    padding: 5rem 2rem;
    background-color: white;
    text-align: center;
}

.what-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-dark);
}

.brand-growth {
    color: var(--color-impact);
}

.brand-mind {
    color: var(--color-plus);
}

.what-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.what-subtext {
    font-size: 1rem;
    color: var(--color-gray);
    font-style: italic;
}

/* Stay Informed Section */
.stay-informed-section {
    padding: 5rem 2rem;
    background-color: #e8f4f5;
}

.stay-informed-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stay-informed-image {
    width: 100%;
}

.stay-informed-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: rgba(0, 160, 168, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 1.125rem;
    border: 2px dashed rgba(0, 160, 168, 0.3);
}

.stay-informed-content {
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stay-informed-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-impact);
    margin-bottom: 1rem;
}

.stay-informed-text {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.waitlist-input {
    padding: 0.875rem 1.25rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 0.938rem;
    font-family: var(--font-family);
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--color-impact);
}

.btn-notify {
    align-self: flex-start;
    background-color: var(--color-impact);
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 48px;
}

.btn-notify:hover {
    background-color: #003780;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Solutions Today Section */
.solutions-today-section {
    padding: 5rem 2rem;
    background-color: white;
    text-align: center;
}

.solutions-today-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-impact);
    margin-bottom: 1rem;
}

.solutions-today-subtitle {
    font-size: 1.125rem;
    color: var(--color-dark);
    margin-bottom: 4rem;
}

.solutions-today-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-today-card {
    background-color: transparent;
    border: none;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-today-card:hover {
    transform: translateY(-3px);
}

.solution-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f8f9;
    border-radius: 12px;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--color-plus);
}

.solution-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.title-growth {
    color: var(--color-impact);
}

.title-architect {
    color: var(--color-plus);
}

.title-advisory {
    color: var(--color-plus);
}

.title-academy {
    color: var(--color-plus);
}

.solution-card-desc {
    font-size: 0.938rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-impact);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.solution-card-link:hover {
    gap: 0.75rem;
}

.solution-card-link i {
    font-size: 0.65rem;
    background-color: var(--color-impact);
    color: white;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.solution-card-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container-gm {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-mockup {
        height: 300px;
    }

    .stay-informed-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solutions-today-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gm-hero-title {
        font-size: 2rem;
    }

    .what-title {
        font-size: 2rem;
    }

    .stay-informed-content {
        padding: 2rem;
    }

    .solutions-today-grid {
        gap: 2rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }
}

/* ==================== CTA Section ==================== */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e8f4f5 0%, #f0f8f9 100%);
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.cta-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-impact);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-cta-primary {
    background-color: var(--color-impact);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    min-height: 48px;
}

.btn-cta-primary:hover {
    background-color: #003780;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 74, 159, 0.3);
}

.btn-cta-secondary {
    background-color: var(--color-impact);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    min-height: 48px;
}

.btn-cta-secondary:hover {
    background-color: #003780;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 74, 159, 0.3);
}

.cta-note {
    font-size: 0.9375rem;
    color: var(--color-dark);
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
    }
}

/* 480px Breakpoint for Mobile */
@media (max-width: 480px) {
    /* Hero section */
    .growthmind-hero {
        padding: 3rem 1rem 2rem;
    }

    .gm-hero-title {
        font-size: 2rem;
    }

    .gm-hero-subtitle {
        font-size: 1rem;
    }

    /* Hero mockup */
    .hero-mockup {
        max-width: 100%;
        height: auto;
    }

    .hero-mockup-img {
        max-width: 100%;
        height: auto;
    }

    /* Solutions grid */
    .solutions-today-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Section padding */
    .stay-informed-section,
    .solutions-today-section {
        padding: 3rem 1rem;
    }

    /* Titles */
    .what-title,
    .solutions-today-title {
        font-size: 1.75rem;
    }

    .stay-informed-title {
        font-size: 1.75rem;
    }

    /* Buttons */
    .btn-notify {
        width: 100%;
        min-height: 48px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    /* Stay informed content */
    .stay-informed-content {
        padding: 2rem 1.5rem;
    }

    /* What section */
    .what-section {
        padding: 3rem 1rem;
    }

    /* CTA section */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }
}

/* 375px Breakpoint for Smaller Mobile */
@media (max-width: 375px) {
    .growthmind-hero {
        padding: 2.5rem 1rem;
    }

    .gm-hero-title {
        font-size: 1.75rem;
    }

    .what-title,
    .solutions-today-title {
        font-size: 1.5rem;
    }

    .stay-informed-title {
        font-size: 1.5rem;
    }

    .stay-informed-section,
    .solutions-today-section {
        padding: 2.5rem 1rem;
    }

    .what-section {
        padding: 2.5rem 1rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }
}