/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --speed-gradient: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0f0f23;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-light: #e0e0e0;
    --text-bright: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 87, 108, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 242, 254, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}



header h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0.25rem;
    background: var(--speed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
main {
    padding: 4rem 0;
}

section {
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-bright);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-bright);
    font-weight: 600;
    position: relative;
    padding-left: 0;
}

h3::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--speed-gradient);
    border-radius: 2px;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-bright);
    font-weight: 600;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 1.5rem 0;
    position: relative;
}

.hero h2 {
    font-size: 3rem;
    background: var(--speed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2::after {
    display: none;
}

.intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Experience Section */
.experience ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 1rem;
}

.experience li {
    padding: 1.5rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.experience li:hover {
    transform: translateX(10px);
    border-color: rgba(79, 172, 254, 0.5);
    box-shadow: 0 8px 32px rgba(79, 172, 254, 0.2);
}

.experience li::before {
    content: "→";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: var(--speed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.experience li:hover::before {
    transform: translateY(-50%) translateX(5px);
}

/* Community Runs Section */
.community-runs {
    margin-bottom: 5rem;
}

.community-run-card {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.08) 0%, rgba(0, 242, 254, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.community-run-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.community-run-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 172, 254, 0.5);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.2);
}

.community-run-card>* {
    position: relative;
    z-index: 1;
}

.run-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.run-header h4 {
    margin: 0;
    font-size: 2rem;
    background: var(--speed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
    }
}

.run-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.run-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.run-detail-item svg {
    color: #4facfe;
    flex-shrink: 0;
}

.run-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--speed-gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(79, 172, 254, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Coaching Plans */
.plans {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Scrollbar styling */
.plans::-webkit-scrollbar {
    height: 8px;
}

.plans::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.plans::-webkit-scrollbar-thumb {
    background: rgba(79, 172, 254, 0.3);
    border-radius: 4px;
}

.plans::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 172, 254, 0.5);
}

.plan {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
    scroll-snap-align: start;
    height: fit-content;
    min-height: 900px;
}

.plan>h4 {
    margin-bottom: 0.5rem;
}

.plan>.tier-subtitle {
    margin-bottom: 1.5rem;
}

.plan>.features {
    flex-grow: 0;
    margin-bottom: auto;
}

.plan>.plan-pricing {
    margin-top: auto;
}

.plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.plan:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.plan:hover::before {
    opacity: 0.1;
}

/* Featured Plan */
.plan-featured {
    border-color: rgba(79, 172, 254, 0.4);
    transform: scale(1.05);
    transform-origin: top;
}

.plan-featured:hover {
    transform: translateY(-10px) scale(1.07);
}

/* Coming Soon Plan */
.plan-coming-soon {
    opacity: 0.85;
}

.plan-coming-soon:hover {
    opacity: 1;
}

/* Badges */
.featured-badge,
.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.35rem 0.75rem;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.coming-soon-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Tier Pricing */
.tier-pricing {
    margin-bottom: 1rem;
}

.tier-pricing:last-of-type {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-size: 2.5rem;
    background: var(--speed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin: 0.5rem 0 0.25rem;
    letter-spacing: -1px;
    display: inline-block;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.tier-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.price-coming-soon {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

/* Features List */
.features {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0.25rem;
    top: 0.75rem;
    color: #4facfe;
    font-weight: bold;
    font-size: 1.1rem;
}

.features li strong {
    color: var(--text-bright);
    display: block;
    margin-bottom: 0.5rem;
}

.plan p:last-child {
    color: var(--text-light);
    line-height: 1.7;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

/* Plan Pricing */
.plan-pricing {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.plan-pricing h5 {
    color: var(--text-bright);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    min-height: 48px;
}

.pricing-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateX(3px);
}

.pricing-option.highlight {
    background: rgba(79, 172, 254, 0.1);
    border-color: rgba(79, 172, 254, 0.25);
}

.pricing-option.highlight:hover {
    background: rgba(79, 172, 254, 0.15);
    border-color: rgba(79, 172, 254, 0.4);
}

.option-term {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.option-term .discount {
    font-size: 0.85rem;
    color: #4facfe;
    font-weight: 600;
    margin-left: 0.5rem;
    display: inline-block;
}

.option-price {
    color: var(--text-bright);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.pricing-option.highlight .option-price {
    background: var(--speed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
}

.pricing-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    margin: 1rem 0;
}

/* Discount Information */
.discount-info {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    text-align: center;
}

.discount-info h4 {
    margin-bottom: 0.5rem;
    color: var(--text-bright);
    font-size: 1.75rem;
}

.discount-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-table:hover {
    border-color: rgba(79, 172, 254, 0.3);
    transform: translateY(-3px);
}

.featured-table {
    border-color: rgba(79, 172, 254, 0.4);
    background: rgba(79, 172, 254, 0.05);
}

.pricing-table h5 {
    color: var(--text-bright);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.highlight {
    background: rgba(79, 172, 254, 0.05);
    margin: 0 -0.5rem;
    padding: 0.75rem 0.5rem;
    border-radius: 6px;
}

.pricing-row .term {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-row .save {
    font-size: 0.8rem;
    color: #4facfe;
    font-weight: 600;
}

.pricing-row .amount {
    color: var(--text-bright);
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-row.highlight .amount {
    background: var(--speed-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact>* {
    position: relative;
    z-index: 1;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-bright);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item strong {
    min-width: 100px;
    color: var(--text-bright);
    font-weight: 600;
}

.contact-item a {
    color: #4facfe;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--speed-gradient);
    transition: width 0.3s ease;
}

.contact-item a:hover {
    color: #00f2fe;
    transform: translateX(5px);
}

.contact-item a:hover::after {
    width: 100%;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

footer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Accordion Styles - visible on all devices */
.plan-accordion {
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

/* Desktop accordion styling */
@media (min-width: 769px) {
    .plans {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        overflow: visible;
    }

    .plan-accordion {
        flex-shrink: 0;
        min-width: 340px;
        max-width: 340px;
    }

    .plan-header {
        display: none;
    }

    .plan-content {
        max-height: none;
        overflow: visible;
    }

    .plan-content .plan {
        display: flex;
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem 1.75rem;
        border-radius: 16px;
        min-height: 900px;
    }

    /* Show tier headers on desktop with better visual separation */
    .plan-content .plan>h4 {
        display: block;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid rgba(255, 255, 255, 0.15);
        font-size: 1.6rem;
    }

    .plan-content .plan>.tier-subtitle {
        display: block;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Show badges on desktop plan cards */
    .plan-content .plan>.featured-badge,
    .plan-content .plan>.coming-soon-badge {
        display: block;
    }

    /* Adjust plan-pricing spacing for personalised tier */
    .plan-featured .plan-pricing {
        margin-top: 1.5rem;
    }
}

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

    h1 {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .intro {
        font-size: 1.1rem;
    }

    /* Vertical accordion layout for mobile */
    .plans {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        overflow-x: visible;
        padding-bottom: 0;
    }

    /* Hide desktop plan cards on mobile */
    .plans>.plan {
        display: none;
    }

    /* Show accordion on mobile */
    .plan-accordion {
        display: block;
        background: var(--card-bg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    /* Hide inner tier headers on mobile (they're in accordion header) */
    .plan-content .plan>h4,
    .plan-content .plan>.tier-subtitle {
        display: none;
    }

    /* Hide badges in plan content on mobile (they're in accordion header) */
    .plan-content .plan>.featured-badge,
    .plan-content .plan>.coming-soon-badge {
        display: none;
    }

    /* Accordion Header */
    .plan-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        cursor: pointer;
        user-select: none;
        transition: background 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .plan-header:hover {
        background: rgba(255, 255, 255, 0.03);
    }

    .plan-header:active {
        background: rgba(255, 255, 255, 0.05);
    }

    .plan-header-content {
        flex: 1;
        position: relative;
    }

    .plan-header-content h4 {
        margin: 0 0 0.25rem 0;
        font-size: 1.5rem;
        color: var(--primary-color);
    }

    .plan-header-content .tier-subtitle {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
    }

    /* Badges in header */
    .plan-header-content .featured-badge,
    .plan-header-content .coming-soon-badge {
        position: static;
        display: inline-block;
        margin-bottom: 0.5rem;
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }

    /* Accordion Icon */
    .accordion-icon {
        margin-left: 1rem;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }

    .accordion-icon svg {
        display: block;
        color: var(--primary-color);
    }

    .plan-header.active .accordion-icon {
        transform: rotate(180deg);
    }

    /* Collapsible Content */
    .plan-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 5;
    }

    .plan-content.active {
        max-height: 3000px;
        /* Large enough for all content */
    }

    /* Plan inside accordion */
    .plan-content .plan {
        display: block;
        background: transparent;
        border: none;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        min-width: auto;
        max-width: none;
        min-height: auto;
        backdrop-filter: none;
        border-radius: 0;
    }

    .plan-content .plan-featured,
    .plan-content .plan-coming-soon {
        background: transparent;
    }

    /* Features list mobile optimization */
    .features {
        margin-bottom: 1.5rem;
    }

    .features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 2rem;
    }

    .features li::before {
        font-size: 0.85rem;
        left: 0.25rem;
        top: 0.6rem;
    }

    /* Pricing section mobile optimization */
    .plan-pricing h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .pricing-options {
        gap: 0.7rem;
    }

    .pricing-option {
        padding: 0.75rem 0.9rem;
        min-height: 46px;
    }

    .option-term {
        font-size: 0.9rem;
    }

    .option-term .discount {
        font-size: 0.75rem;
        margin-left: 0.4rem;
    }

    .option-price {
        font-size: 1.15rem;
    }

    .pricing-option.highlight .option-price {
        font-size: 1.2rem;
    }

    .price {
        font-size: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .featured-badge,
    .coming-soon-badge {
        top: 15px;
        right: 15px;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .contact {
        padding: 2rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-item strong {
        min-width: auto;
    }

    /* Community Runs mobile optimization */
    .community-run-card {
        padding: 2rem 1.5rem;
    }

    .run-header h4 {
        font-size: 1.6rem;
    }

    .free-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .run-details {
        flex-direction: column;
        gap: 1rem;
    }

    .run-detail-item {
        font-size: 1rem;
    }

    .run-description {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .plan-header {
        padding: 1.25rem;
    }

    .plan-header-content h4 {
        font-size: 1.3rem;
    }

    .plan-header-content .tier-subtitle {
        font-size: 0.85rem;
    }


    .plan-content .plan {
        padding: 1.25rem 1.25rem 0.85rem 1.25rem;
    }

    .features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        padding-left: 2rem;
    }

    .pricing-option {
        padding: 0.7rem 0.8rem;
        min-height: 44px;
    }

    .option-term {
        font-size: 0.85rem;
    }

    .option-price {
        font-size: 1.1rem;
    }

    .pricing-option.highlight .option-price {
        font-size: 1.15rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(79, 172, 254, 0.3);
    color: var(--text-bright);
}