:root {
    --primary-navy: #1a365d;
    --primary-light: #2d4a6f;
    --accent-blue: #3182ce;
    --success-green: #28a745;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --clay-infield: #b76e2b;
    --outfield-green: #1c5d33;
    --baseball-red: #c41e3a;
    --baseball-white: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
}

.navbar {
    background: #ffffff;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-logo {
    height: 80px;
    width: auto;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.navbar-brand i {
    margin-right: 8px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    color: var(--dark-gray) !important;
}

.nav-link:hover {
    color: var(--primary-navy) !important;
}

.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light) 100%);
    color: white;
    padding: 180px 0 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
}

.hero-buttons .btn-primary {
    background: var(--success-green);
    border-color: var(--success-green);
}

.hero-buttons .btn-primary:hover {
    background: #218838;
    border-color: #218838;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.strike-zone-preview {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.zone-svg {
    width: 280px;
    height: 280px;
}

.zone-svg circle {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.baseball-hero {
    position: relative;
    overflow: hidden;
    background: #333;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.baseball-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffc107;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge i {
    margin-right: 8px;
}

.btn-baseball {
    background: linear-gradient(135deg, var(--baseball-red) 0%, #a01830 100%);
    border: none;
    color: white;
}

.btn-baseball:hover {
    background: linear-gradient(135deg, #a01830 0%, #801428 100%);
    color: white;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-features span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-features i {
    color: #28a745;
    margin-right: 6px;
}

.strike-zone-preview.baseball-card {
    background: rgba(26, 54, 93, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.zone-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.pitcher-name {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.count-display {
    background: var(--baseball-red);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
}

.strike-zone-preview.baseball-card .zone-svg {
    padding: 20px;
    display: block;
    margin: 0 auto;
}

.zone-legend {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.8rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.zone-legend i {
    font-size: 0.6rem;
    margin-right: 5px;
}

.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.baseball-card-style {
    position: relative;
    border-top: 4px solid var(--primary-navy);
}

.baseball-card-style.featured {
    border-top-color: var(--baseball-red);
    transform: scale(1.03);
}

.card-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--baseball-red);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.feature-stat {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.feature-stat .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.feature-stat .stat-desc {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scoreboard-style {
    background: #ffffff;
    color: #333333;
}

.scoreboard-header {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-navy);
}

.scoreboard-stat {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 25px 20px;
    border: 1px solid #e0e0e0;
}

.scoreboard-stat .stat-number {
    color: var(--primary-navy);
    font-family: 'Courier New', monospace;
}

.scoreboard-stat .stat-label {
    color: #666666;
}

.baseball-cta {
    background: linear-gradient(135deg, var(--outfield-green) 0%, #154726 100%);
}

.cta-icon {
    opacity: 0.8;
}

.page-header {
    background: #333;
    color: white;
}

.page-header-bg {
    position: relative;
    overflow: hidden;
}

.page-header-bg .container {
    position: relative;
    z-index: 2;
}

.page-header-old {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light) 100%);
    color: white;
    padding: 160px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.9;
}

.features {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--primary-navy);
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.stats-section {
    padding: 80px 0;
    background: white;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light) 100%);
    color: white;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-navy);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
}

.cta-section .btn-light:hover {
    background: var(--light-gray);
}

.about-content {
    padding: 80px 0;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-feature-box {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: var(--primary-navy);
}

.about-feature-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.about-feature-box p {
    color: #666;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-list li i {
    margin-top: 4px;
}

.demo-content {
    padding: 80px 0;
}

.demo-step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.demo-step h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.demo-step p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.demo-preview-box {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: var(--primary-navy);
}

.demo-preview-box i {
    margin-bottom: 20px;
    opacity: 0.7;
}

.demo-preview-box p {
    color: #666;
    margin: 0;
}

.mini-strike-zone {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.mini-strike-zone svg {
    width: 100%;
    height: 100%;
}

.pitch-types-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pitch-badge {
    background: var(--primary-navy);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.dashboard-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

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

.dash-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.dash-stat small {
    font-size: 0.85rem;
    color: #666;
}

.contact-content {
    padding: 80px 0;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-top: 5px;
}

.contact-method h5 {
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.contact-method p,
.contact-method ul {
    color: #555;
    margin: 0;
}

.contact-method ul {
    padding-left: 20px;
}

.contact-method li {
    margin-bottom: 5px;
}

.contact-form-wrapper {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-navy);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

.contact-form .btn-primary {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    padding: 14px 28px;
    border-radius: 8px;
}

.contact-form .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer .text-muted {
    color: #aaa !important;
}

.footer ul a {
    color: #ccc;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.2s;
}

.footer ul a:hover {
    color: white;
}

.footer hr {
    border-color: #555;
    margin: 30px 0 20px;
}

@media (max-width: 991px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .demo-step {
        padding-left: 0;
        padding-top: 80px;
    }
    
    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .demo-step h3,
    .demo-step p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .zone-svg {
        width: 200px;
        height: 200px;
    }
}

.trusted-by {
    background: white;
    padding: 60px 0;
    overflow: hidden;
}

.trusted-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.logo-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex: 0 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    opacity: 0.6;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.logo-item:hover .brand-logo {
    opacity: 1;
}

.brand-logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(30%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

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

.pricing-content {
    padding: 80px 0;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border-color: var(--primary-navy);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-navy);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.price .amount.custom {
    font-size: 2.5rem;
}

.price .period {
    font-size: 1rem;
    color: #666;
}

.price-desc {
    color: #666;
    margin-top: 10px;
    margin-bottom: 0;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #333;
}

.pricing-features li i {
    width: 20px;
    text-align: center;
}

.pricing-features li .fa-check {
    color: var(--success-green);
}

.pricing-features li .fa-times {
    color: #ccc;
}

.pricing-features li.disabled {
    color: #aaa;
}

.pricing-action .btn {
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
}

.pricing-action .btn-outline-primary {
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.pricing-action .btn-outline-primary:hover {
    background: var(--primary-navy);
    color: white;
}

.pricing-action .btn-primary {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
}

.pricing-action .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.pricing-faq {
    padding-top: 40px;
}

.pricing-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.faq-item {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h5 {
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .logo-item {
        padding: 0 30px;
    }
    
    .brand-logo {
        font-size: 1.4rem;
    }
}
