/* ===== CSS Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Color Palette */
    --vibrant-red: #E94057;
    --soft-coral: #F9848A;
    --warm-peach: #FCA580;
    --blush-pink: #FDAFBC;
    --white: #FFFFFF;

    /* Secondary (Accent) Palette */
    --crimson: #DA254C;
    --pale-rose: #FFDADB;
    --shadow-rose: #C3274B;
    --light-blush: #FFE3EA;

    /* Neutral Tones */
    --cool-grey: #F7F7F7;
    --modern-charcoal: #22222A;

    /* Alias Variables for Backward Compatibility */
    --coral-primary: var(--vibrant-red);
    --deep-red: var(--crimson);
    --deep-purple: var(--modern-charcoal);
    --charcoal: var(--modern-charcoal);

    /* Fonts */
    --font-inter: 'Inter', sans-serif;
    --font-space-grotesk: 'Space Grotesk', sans-serif;
    --font-jua: 'Jua', sans-serif;
}

body {
    font-family: var(--font-inter);
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ===== Header Banner ===== */
.header-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-jua);
    font-size: 1.5rem;
    color: var(--deep-red);
    font-weight: 600;
}

@media (min-width: 768px) {
    .logo-icon {
        width: 48px;
        height: 48px;
    }

    .logo-text {
        font-size: 1.75rem;
    }
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.icon {
    width: 20px;
    height: 20px;
}

.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

/* Header removed - no padding needed */

/* ===== Language Switcher ===== */
.language-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    display: none; /* TODO: Remove this line to re-enable language switcher */
}

.switch-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 75px;
}

.switch-button .switch-outer {
    height: 100%;
    background: var(--charcoal);
    width: 165px;
    border-radius: 165px;
    box-shadow: inset 0px 7.5px 15px 0px rgba(0, 0, 0, 0.3), 0px 4.5px 9px -3px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--coral-primary);
    padding: 7.5px;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.switch-button .switch-outer input[type="checkbox"] {
    opacity: 0;
    appearance: none;
    position: absolute;
}

.switch-button .switch-outer .button-toggle {
    height: 57px;
    width: 57px;
    background: linear-gradient(to bottom, var(--coral-primary), var(--deep-red));
    border-radius: 100%;
    box-shadow: inset 0px 4.5px 6px 0px rgba(255, 255, 255, 0.2), 0px 6px 22.5px 0px rgba(0, 0, 0, 0.4);
    position: absolute;
    z-index: 2;
    transition: left 0.3s ease-in-out;
    left: 7.5px;
    top: 50%;
    transform: translateY(-50%);
}

.switch-button .switch-outer input[type="checkbox"]:checked + .button .button-toggle {
    left: calc(100% - 64.5px);
}

.switch-button .switch-outer .button {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
}

.switch-button .switch-outer .lang-label-left,
.switch-button .switch-outer .lang-label-right {
    font-size: 2.25rem;
    z-index: 1;
    transition: all 0.3s;
    filter: brightness(1.2) contrast(1.1);
}

.switch-button .switch-outer input[type="checkbox"]:not(:checked) + .button .lang-label-right {
    opacity: 0.9;
    filter: brightness(0.8) contrast(0.9);
}

.switch-button .switch-outer input[type="checkbox"]:checked + .button .lang-label-left {
    opacity: 30;
    filter: brightness(1.0) contrast(0.9);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-purple);
    overflow: hidden;
}

.blur-circle {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: var(--coral-primary);
    filter: blur(80px);
    opacity: 0.1;
}

.blur-circle-1 {
    top: 5rem;
    left: 2.5rem;
}

.blur-circle-2 {
    bottom: 5rem;
    right: 2.5rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    padding: 6rem 1rem;
    text-align: center;
}

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

.hero-title .highlight {
    color: var(--coral-primary);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle-1 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle-1 {
        font-size: 1.5rem;
    }
}

.hero-subtitle-2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .hero-subtitle-2 {
        font-size: 1.875rem;
    }
}

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

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--coral-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--deep-red);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== Who We Are Section ===== */
.who-we-are-section {
    background: white;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 3rem;
    }
}

.who-we-are-section .section-heading {
    margin-bottom: 1.5rem;
}

.who-we-are-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.brand-name {
    font-size: 5.1rem;
    color: var(--deep-red);
    font-family: var(--font-jua);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.who-we-are-content .description {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .who-we-are-content .description {
        font-size: 1.25rem;
    }
}

.brand-name-inline {
    font-weight: 700;
    color: var(--deep-red);
}

.tagline {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--coral-primary);
    margin-top: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .tagline {
        font-size: 1.5rem;
    }
}

/* ===== Why Choose Us Section ===== */
.why-choose-us-section {
    background: var(--deep-purple);
}

.why-choose-us-section .section-heading {
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--coral-primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Secret Weapon Section ===== */
.secret-weapon-section {
    background: var(--charcoal);
}

.secret-icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.secret-icon-link {
    display: inline-block;
    text-decoration: none;
}

.secret-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.gumloop-logo {
    width: 200px;
    height: auto;
    max-width: 100%;
    transition: transform 0.2s, opacity 0.2s;
}

.secret-icon-link:hover .gumloop-logo {
    transform: scale(1.05);
    opacity: 0.8;
}

.secret-weapon-section .section-heading {
    color: white;
}

.secret-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .secret-description {
        font-size: 1.5rem;
    }
}

.gumloop-link {
    color: var(--coral-primary);
    font-weight: 700;
    text-decoration: none;
}

.gumloop-link:hover {
    text-decoration: underline;
}

.secret-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

@media (min-width: 768px) {
    .secret-subtitle {
        font-size: 1.25rem;
    }
}

/* ===== Pricing Section ===== */
.pricing-section {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border: 2px solid var(--coral-primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background: var(--coral-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

/* Colored tier names - vibrant red for emphasis */
.tier-name.colored-tier {
    color: var(--vibrant-red);
    font-size: 1.75rem;
}

.tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--font-space-grotesk);
    color: var(--coral-primary);
}

.period {
    font-size: 1.125rem;
    color: var(--charcoal);
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--coral-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    background: var(--charcoal);
    color: white;
}

.btn-pricing.featured {
    background: var(--coral-primary);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* ===== How It Works Section ===== */
.how-it-works-section {
    background: var(--deep-purple);
}

.how-it-works-section .section-heading {
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--coral-primary);
}

.step-week {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--coral-primary);
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== What You Get Section ===== */
.what-you-get-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F5F5F5;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

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

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--coral-primary);
}

.benefit-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
}

/* ===== Who This Is For Section ===== */
.who-this-is-for-section {
    background: var(--charcoal);
}

.who-this-is-for-section .section-heading {
    color: white;
}

.criteria-list {
    max-width: 56rem;
    margin: 0 auto;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.check-circle-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--coral-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.criteria-text {
    font-size: 1.25rem;
    color: white;
}

/* ===== Results Section ===== */
.results-section {
    background: var(--deep-purple);
}

.results-section .section-heading {
    color: white;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.result-card {
    text-align: center;
}

.result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.result-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--coral-primary);
}

.result-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--font-space-grotesk);
    color: var(--coral-primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .result-value {
        font-size: 2.5rem;
    }
}

.result-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== CTA Section ===== */
.cta-section {
    background: white;
}

.cta-divider {
    width: 8rem;
    height: 0.25rem;
    background: var(--coral-primary);
    border-radius: 9999px;
    margin: 0 auto 3rem;
}

.cta-subtitle-1 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-subtitle-1 {
        font-size: 1.5rem;
    }
}

.cta-subtitle-2 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--coral-primary);
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-subtitle-2 {
        font-size: 1.25rem;
    }
}

.cta-button-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.btn-cta {
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
    background: var(--coral-primary);
    color: white;
    display: inline-flex;
}

.btn-cta:hover {
    background: var(--deep-red);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.cta-footer {
    font-size: 1.125rem;
    color: var(--charcoal);
    text-align: center;
}

.email-link {
    color: var(--coral-primary);
    font-weight: 700;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .brand-name {
        font-size: 3rem;
    }
}
