:root {
    --primary: #ff7d00;
    --primary-dark: #e67200;
    --primary-light: #ff9933;
    --primary-lighter: #fff0e6;
    --success: #00cc00;
    --success-dark: #009900;
    --success-light: #e6ffe6;
    --background: #ffffff;
    --background-alt: #fff8f3;
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --text-light: #666666;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--background) 0%, var(--primary-lighter) 100%);
}

.card {
    background: var(--background);
    border: 1px solid rgba(255, 125, 0, 0.1);
    box-shadow: 0 4px 6px rgba(255, 125, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

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

.brand-orange {
    color: var(--primary);
}

.brand-button {
    background: var(--primary);
    color: var(--background);
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.brand-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 125, 0, 0.2);
}

/* Input styles */
input[type="text"], input[type="tel"] {
    background-color: var(--background);
    color: var(--text-primary);
    font-size: 0.875rem;
}

input[type="text"]::placeholder, input[type="tel"]::placeholder {
    color: var(--text-light);
}

input[type="text"]:focus, input[type="tel"]:focus {
    box-shadow: 0 0 0 2px rgba(255, 125, 0, 0.1);
}

.brand-outline-button {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .brand-outline-button {
        width: auto;
    }
}

.brand-outline-button:hover {
    background: var(--primary-lighter);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 125, 0, 0.1);
}

.winning-text {
    color: var(--success);
}

.winning-bg {
    background-color: var(--success);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: rotate(10deg) scale(1.1);
}

/* Statistics specific styles */
.stat-gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card-glow {
    box-shadow: 0 0 20px rgba(255, 125, 0, 0.1);
}

.stat-card-glow:hover {
    box-shadow: 0 0 30px rgba(255, 125, 0, 0.2);
}

/* Partnership logos styles */
.partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
