:root {
    --navy: #1a2744;
    --navy-light: #1e3058;
    --navy-card: #243160;
    --orange: #f97316;
    --orange-dark: #ea6c0a;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --text-muted-custom: #94a3b8;
}

body {
    font-family: 'Lato', sans-serif;
    padding-top: 70px;
}

/* ─── NAV ─── */
.nav-custom {
    background-color: var(--navy);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.brand-max {
    color: var(--white);
    font-weight: 900;
    font-size: 1.4rem;
}

.brand-scheduler {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.4rem;
}

.nav-custom .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    margin: 0 4px;
    transition: color 0.2s;
}

.nav-custom .nav-link:hover {
    color: var(--orange) !important;
}

.btn-orange {
    background-color: var(--orange);
    color: white !important;
    border: none;
    border-radius: 25px;
    padding: 8px 24px;
    font-weight: 700;
    transition: background-color 0.2s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
}

.btn-orange:hover {
    background-color: var(--orange-dark);
    transform: translateY(-1px);
    color: white !important;
}

.btn-orange-lg {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: 30px;
}

.btn-outline-light-custom {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    border-radius: 25px;
    padding: 8px 24px;
    font-weight: 700;
    background: transparent;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light-custom:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
}

/* ─── HERO ─── */
.hero-section {
    background-color: var(--navy);
    color: white;
    padding: 100px 0 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--orange);
    margin-right: 8px;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
}

.text-orange {
    color: var(--orange);
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

.hero-checklist li {
    padding: 6px 0;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.hero-checklist li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 900;
    margin-right: 10px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-call {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.hero-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── STATS BAR ─── */
.stats-bar {
    background-color: var(--navy-card);
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 16px;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* ─── SECTIONS ─── */
.section-light {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.section-dark {
    background-color: var(--navy);
    padding: 80px 0;
    color: white;
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--navy);
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 48px;
    max-width: 640px;
}

.section-dark .section-subtitle {
    color: var(--text-muted-custom);
}

/* ─── FEATURE CARDS ─── */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(249, 115, 22, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: var(--orange);
    font-size: 1.5rem;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* ─── TESTIMONIALS ─── */
.testimonial-card {
    background-color: var(--navy-card);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.08);
}

.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.95rem;
}

.quote-icon {
    color: var(--orange);
    font-size: 2rem;
    margin-bottom: 16px;
    opacity: 0.7;
}

/* ─── PRICING ─── */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
    transition: transform 0.2s;
    text-align: center;
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
}

.price-period {
    color: #64748b;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 24px 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 900;
    margin-right: 10px;
}

/* ─── PAGE HERO ─── */
.page-hero {
    background-color: var(--navy);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* ─── CASE STUDY CARDS ─── */
.case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: transform 0.2s;
}

.case-card:hover {
    transform: translateY(-4px);
}

.case-card-header {
    background-color: var(--navy);
    color: white;
    padding: 24px;
}

.case-card-header h4 {
    color: white;
    margin: 0;
    font-weight: 700;
}

.case-card-header .industry-tag {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.case-card-body {
    padding: 24px;
    color: #475569;
    line-height: 1.7;
}

/* ─── VIDEO CARDS ─── */
.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: transform 0.2s;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-thumb {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-card) 100%);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb i {
    font-size: 3rem;
    color: var(--orange);
}

.video-card-body {
    padding: 20px;
}

.video-card-body h5 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.video-card-body p {
    color: #64748b;
    font-size: 0.9rem;
}

/* ─── CONTACT ─── */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    text-align: center;
    height: 100%;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(249,115,22,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.6rem;
    color: var(--orange);
}

.contact-card h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card p, .contact-card a {
    color: #64748b;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--orange);
}

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

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── INDUSTRY TAGS ─── */
.industry-pill {
    display: inline-block;
    background-color: rgba(249,115,22,0.1);
    color: var(--orange);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 4px;
}

/* ─── FOOTER ─── */
.footer-custom {
    background-color: #0f1a2e;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-custom h5 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-custom h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.footer-custom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-custom a:hover {
    color: var(--orange);
}

.footer-custom hr {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

/* ─── ABOUT PAGE ─── */
.timeline-item {
    border-left: 3px solid var(--orange);
    padding-left: 24px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--orange);
    border-radius: 50%;
    position: absolute;
    left: -8px;
    top: 4px;
}

.timeline-item h4 {
    color: var(--navy);
    font-weight: 700;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-card));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-avatar i {
    font-size: 2rem;
    color: var(--orange);
}

.team-card h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section { padding: 60px 0; min-height: auto; }
    .pricing-card.featured { transform: scale(1); }
    .section-title { font-size: 1.8rem; }
    .page-hero h1 { font-size: 2rem; }
    .cta-section h2 { font-size: 1.8rem; }
}
