* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pedal-green: #22c55e;
    --pedal-green-dark: #16a34a;
    --bronze: #cd7f32;
    --silver: #c0c0c0;
    --gold: #fbbf24;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-bottom: 70px; /* Add padding so content doesn't hide behind fixed footer */
}

/* Navigation */
nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 1px;
}

.logo .pedal {
    color: #333;
}

.logo .pro {
    color: var(--pedal-green);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pedal-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero .pedal-text {
    color: white;
}

.hero .pro-text {
    color: var(--pedal-green);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-button {
    display: inline-block;
    background: var(--pedal-green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--pedal-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--pedal-green);
    font-size: 1.5rem;
}

/* Services/Pricing Section */
.services {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.pricing-table {
    max-width: 1000px;
    margin: 3rem auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #333;
    color: white;
    font-weight: 600;
    text-align: center;
}

.pricing-header > div {
    padding: 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.pricing-header > div:last-child {
    border-right: none;
}

.tier-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 1.8rem;
    color: var(--pedal-green);
}

.bronze-header {
    background: linear-gradient(135deg, #cd7f32, #b8732e);
}

.silver-header {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.gold-header {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e5e5;
}

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

.pricing-row > div {
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e5e5;
}

.pricing-row > div:first-child {
    justify-content: flex-start;
    padding-left: 2rem;
    font-weight: 500;
}

.pricing-row > div:last-child {
    border-right: none;
}

.pricing-row:nth-child(even) {
    background: #fafafa;
}

.checkmark {
    color: var(--pedal-green);
    font-size: 1.5rem;
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
}

.contact-info h3 {
    color: var(--pedal-green);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

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

.contact-item-icon {
    font-size: 1.5rem;
    color: var(--pedal-green);
    margin-top: 0.2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pedal-green);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background: var(--pedal-green);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: var(--pedal-green-dark);
    transform: translateY(-2px);
}

/* Footer - Fixed Sliver */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: white;
    padding: 0.8rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: bold;
    font-style: italic;
}

.footer-logo .pedal {
    color: white;
}

.footer-logo .pro {
    color: var(--pedal-green);
}

.footer-content > p {
    display: none; /* Hide subtitle to save space */
}

.footer-content > p:last-child {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin: 0;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon.facebook {
    background-color: #1877f2;
    color: white;
}

.social-icon.facebook:hover {
    background-color: #145dbf;
    transform: translateY(-2px);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(225, 48, 108, 0.4);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--pedal-green);
}

/* Responsive */
@media (max-width: 768px) {
    /* Hamburger menu visible on mobile */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 72px);
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #e5e5e5;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .pricing-row > div:first-child {
        padding-left: 1rem;
    }

    .tier-name {
        font-size: 1rem;
    }

    .tier-price {
        font-size: 1.3rem;
    }

    /* Footer responsive */
    .footer-content {
        justify-content: center;
        text-align: center;
        font-size: 0.85rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-content > p:last-child {
        width: 100%;
        margin-top: 0.25rem;
        font-size: 0.7rem;
    }

    body {
        padding-bottom: 90px; /* More padding on mobile since footer wraps */
    }
}

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