/* ===================================
   ONE DAY BRAKES - MAIN STYLESHEET
   Modern, mobile-first, conversion-focused
   =================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #1E40AF;      /* Professional blue */
    --primary-dark: #1E3A8A;
    --secondary: #DC2626;    /* Bold red (brakes) */
    --accent: #F59E0B;       /* Gold (premium) */
    --dark: #1F2937;
    --light: #F3F4F6;
    --white: #FFFFFF;
    
    /* Grays */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 48px 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-accent {
    background-color: var(--accent);
    color: var(--gray-900);
    border-color: var(--accent);
}

.btn-accent:hover {
    background-color: #D97706;
    border-color: #D97706;
    color: var(--gray-900);
}

.btn-light {
    background-color: var(--white);
    color: var(--gray-900);
    border-color: var(--gray-300);
}

.btn-light:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.nav-brand .logo {
    height: 120px;
    width: auto;
    margin-left: -20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s ease;
    font-size: 15px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-nav {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    font-size: 15px;
}

.btn-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 80px 0 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.trust-icon {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 48px 0 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

/* ===== VETERAN DISCOUNT BANNER ===== */
.discount-banner {
    background-color: var(--secondary);
    color: var(--white);
    padding: 16px 0;
    text-align: center;
}

.discount-banner p {
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%);
}

.service-card.membership-highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, #FFFFFF 0%, #FEF3C7 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--accent);
    color: var(--gray-900);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 24px;
}

.pricing {
    background-color: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.highlight {
    background-color: var(--primary);
    color: var(--white);
    margin: -8px -12px;
    padding: 16px 12px;
    border-radius: var(--radius-md);
    border: none;
}

.price-item.highlight .price-label,
.price-item.highlight .price {
    color: var(--white);
}

.price-label {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 15px;
}

.service-card .btn {
    width: 100%;
}

.pricing-disclaimer {
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px;
    background-color: var(--gray-50);
    border-radius: var(--radius-md);
}

.pricing-disclaimer p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit {
    text-align: center;
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.benefit h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit p {
    color: var(--gray-600);
}

/* ===== SERVICE AREA ===== */
.service-area {
    padding: var(--section-padding);
    background-color: var(--white);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.city {
    background-color: var(--gray-50);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.service-area-note {
    text-align: center;
    color: var(--gray-600);
}

/* ===== FLEET CTA ===== */
.fleet-cta {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 80px 0;
}

.fleet-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fleet-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.fleet-cta p {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.stars {
    font-size: 24px;
}

.rating-text {
    font-weight: 600;
    color: var(--gray-700);
}

.reviews-placeholder {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--gray-100);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--white);
    color: var(--gray-700);
    padding: 60px 0 32px;
    border-top: 2px solid var(--gray-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--gray-900);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
    color: var(--gray-700);
    font-size: 15px;
}

.footer-col a {
    color: var(--gray-700);
    font-size: 15px;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-contact {
    margin-top: 16px;
}

.footer-contact p {
    color: var(--gray-700);
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--gray-700);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 4px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero h1 {
    color: var(--white);
}

.about-hero .hero-subtitle {
    color: var(--gray-100);
}

.about-story {
    padding: var(--section-padding);
    background-color: var(--white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gray-200);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.about-why {
    padding: var(--section-padding);
    background-color: var(--white);
}

.why-different {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.different-item {
    background-color: var(--gray-50);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.different-item h4 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

/* ===== CAREERS PAGE STYLES ===== */
.careers-hero {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.careers-hero h1 {
    color: var(--white);
}

.careers-hero .hero-subtitle {
    color: var(--gray-100);
}

.careers-why {
    padding: var(--section-padding);
    background-color: var(--white);
}

.careers-positions {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.position-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.position-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.position-meta {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 24px;
}

.position-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.position-details h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.position-details ul {
    list-style: disc;
    padding-left: 20px;
}

.position-details li {
    margin-bottom: 8px;
    color: var(--gray-700);
}

.careers-apply {
    padding: var(--section-padding);
    background-color: var(--white);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
}

.contact-hero .hero-subtitle {
    color: var(--gray-100);
}

.contact-main {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-section h2 {
    margin-bottom: 12px;
}

.contact-form-section > p {
    margin-bottom: 32px;
    color: var(--gray-600);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.contact-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

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

.contact-note {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.service-area-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.service-area-list li {
    font-size: 14px;
    color: var(--gray-700);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .position-details {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .careers-hero,
    .contact-hero {
        padding: 60px 0 40px;
    }
}

/* ===== FORM STYLES ===== */
.contact-form,
.fleet-contact-form,
#careers-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-800);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all 0.2s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.form-disclaimer {
    text-align: center;
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 16px;
}

.benefit-card {
    background-color: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.position-note {
    background-color: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
    margin-bottom: 24px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer description paragraph (tagline under logo) */
.footer-col > p:first-of-type {
    color: var(--gray-800);
    font-weight: 600;
    font-size: 15px;
}

/* File upload field styling */
.form-group input[type="file"] {
    padding: 12px;
    border: 2px dashed var(--gray-300);
    background-color: var(--gray-50);
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary);
    background-color: var(--white);
}

.form-note {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 6px;
}

/* Ensure service cards align properly */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
    align-items: start;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card .btn {
    margin-top: auto;
}

.pricing {
    height: 90px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.pricing .price-item {
    width: 100%;
    height: 90px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.pricing .price-item.highlight {
    height: 90px;
}

.price-item {
    margin-bottom: 8px;
}

.additional-pricing {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-200);
}

.additional-pricing .price-item {
    background-color: var(--gray-50);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.additional-pricing .price-label {
    font-size: 14px;
    color: var(--gray-700);
}

.additional-pricing .price {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
}

/* Force service descriptions to same height for alignment */
.service-description {
    min-height: 72px;
    display: flex;
    align-items: center;
}

/* Force 4 steps across on How It Works page */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Force 4 steps across on How It Works page - The Process section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
