/* =====================================================================
   GETTY MILEPOST DEVELOPMENT - MAIN STYLESHEET
   Colors: Dark Blue #0A1F44, Gold #C7A359, Light Gray #F5F6F7
   ===================================================================== */

:root {
    --dark-blue: #0A1F44;
    --gold: #C7A359;
    --light-gray: #F5F6F7;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    padding-top: 70px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--dark-blue);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    font-weight: 700;
}

.navbar-brand img {
    opacity: 1 !important;
    transition: none !important;
}

.brand-text {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.brand-subtext {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9);
    margin: 0 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.dropdown-menu {
    background-color: var(--dark-blue);
    border: 1px solid var(--gold);
}

.dropdown-item {
    color: rgba(255,255,255,0.9);
}

.dropdown-item:hover {
    background-color: rgba(199, 163, 89, 0.2);
    color: var(--gold);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a3a6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100" stroke="rgba(199,163,89,0.1)" stroke-width="0.5"/><path d="M50 0L100 50L50 100" stroke="rgba(199,163,89,0.1)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: var(--dark-blue);
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a3a6e 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ===== SECTIONS ===== */
.section-light {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.section-dark {
    padding: 5rem 0;
    background-color: var(--dark-blue);
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle-light {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.gold-line {
    width: 80px;
    height: 4px;
    background-color: var(--gold);
    margin: 1rem auto;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.lead-text-light {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
}

/* ===== CARDS ===== */
.highlight-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== DATA CARDS ===== */
.data-card {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.data-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.data-list {
    list-style: none;
    padding-left: 0;
}

.data-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.data-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== FEATURE LISTS ===== */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list-light {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.feature-list-light li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
}

.feature-list-light li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== HIGHLIGHT BOXES ===== */
.highlight-box {
    background: rgba(199, 163, 89, 0.1);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box-light {
    background: rgba(199, 163, 89, 0.15);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    color: var(--white);
}

.highlight-title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

/* ===== PROCESS STEPS ===== */
.process-step {
    margin: 4rem 0;
}

.step-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

/* ===== IC CARDS ===== */
.ic-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(199, 163, 89, 0.3);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.ic-card-title {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ic-list {
    list-style: none;
    padding-left: 0;
}

.ic-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.ic-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== STRATEGY CARDS ===== */
.comparison-grid {
    margin-top: 3rem;
}

.strategy-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    border-top: 5px solid var(--gold);
}

.strategy-cluster {
    border-top-color: var(--dark-blue);
}

.strategy-frontier {
    border-top-color: var(--gold);
}

.strategy-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.strategy-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.strategy-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.strategy-list {
    list-style: none;
    padding-left: 0;
}

.strategy-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.strategy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

/* ===== USE CASE CARDS ===== */
.use-case-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.use-case-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.badge-cluster {
    background-color: var(--dark-blue);
    color: var(--white);
}

.badge-frontier {
    background-color: var(--gold);
    color: var(--dark-blue);
}

.use-case-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* ===== MILEPOST CONCLUSION ===== */
.milepost-conclusion {
    background: rgba(199, 163, 89, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.conclusion-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===== TABLES ===== */
.comparison-table {
    margin: 3rem 0;
}

.table-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: rgba(199, 163, 89, 0.3);
    color: var(--dark-blue);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table-dark thead th {
    background-color: rgba(199, 163, 89, 0.2);
    color: var(--gold);
}

.table tbody td {
    padding: 1.25rem;
    vertical-align: top;
    line-height: 1.7;
}

/* ===== SATURATION STEPS ===== */
.saturation-step {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* ===== RISK CARDS ===== */
.risk-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.risk-solution {
    border: 2px solid var(--gold);
}

.risk-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.risk-list {
    list-style: none;
    padding-left: 0;
}

.risk-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.risk-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== GETTY ALIGNMENT ===== */
.getty-priority-component {
    margin: 3rem 0;
}

.priority-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.priority-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.priority-badge {
    display: inline-block;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.advantage-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.priority-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.priority-desc, .advantage-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.priority-arrow {
    text-align: center;
    color: var(--gold);
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.advantage-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* ===== RISK REDUCTION ===== */
.risk-reduction-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.risk-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.risk-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.risk-solution-box {
    background: rgba(199, 163, 89, 0.1);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    border-radius: 8px;
}

.solution-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.solution-list {
    list-style: none;
    padding-left: 0;
}

.solution-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== DNA CARDS ===== */
.dna-card {
    background: rgba(199, 163, 89, 0.1);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 3rem;
}

.dna-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.dna-list {
    list-style: none;
    padding-left: 0;
}

.dna-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.dna-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.conclusion-highlight {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

/* ===== COMPARISON CARDS (Why Truck Stops) ===== */
.comparison-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.comparison-advantage {
    border: 3px solid var(--gold);
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding-left: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

/* ===== INSIGHT BOX ===== */
.insight-box {
    background: rgba(199, 163, 89, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
}

.insight-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.insight-list {
    list-style: none;
    padding-left: 0;
}

.insight-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== FUNDAMENTAL CARDS ===== */
.fundamental-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(199, 163, 89, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

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

.fundamental-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.fundamental-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.fundamental-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.fundamental-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== NNN COMPARISON ===== */
.nnn-comparison {
    margin-top: 2rem;
}

.nnn-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.nnn-match {
    border: 2px solid var(--gold);
}

.nnn-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.nnn-list {
    list-style: none;
    padding-left: 0;
}

.nnn-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255,255,255,0.95);
}

.nnn-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== INFO GAP GRID ===== */
.info-gap-grid {
    margin-top: 2rem;
}

.gap-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.gap-solution {
    border: 3px solid var(--gold);
}

.gap-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.gap-list {
    list-style: none;
    padding-left: 0;
}

.gap-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.gap-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== MISCONCEPTION CARDS ===== */
.misconception-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    height: 100%;
}

.misconception-header {
    background: rgba(199, 163, 89, 0.2);
    padding: 1.5rem;
}

.misconception-label {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.misconception-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
}

.misconception-body {
    padding: 1.5rem;
}

.rebuttal-label {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.misconception-body p:last-child {
    margin-bottom: 0;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
}

/* ===== CONCLUSION STATEMENT ===== */
.conclusion-statement {
    background: rgba(199, 163, 89, 0.15);
    border: 3px solid var(--gold);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 2rem;
}

.conclusion-large {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.conclusion-emphasis {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.conclusion-bullets {
    list-style: none;
    padding-left: 0;
}

.conclusion-bullets li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.conclusion-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.conclusion-final {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-top: 2rem;
    text-align: center;
}

/* ===== CONTACT ===== */
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
}

.contact-label {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-label {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(199, 163, 89, 0.25);
}

/* ===== PIPELINE CARDS ===== */
.pipeline-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(199, 163, 89, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

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

.pipeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.pipeline-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.pipeline-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.pipeline-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== NEXT STEPS TIMELINE ===== */
.next-steps-timeline {
    margin-top: 3rem;
}

.timeline-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.timeline-text {
    color: var(--text-light);
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a3a6e 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-blue);
    color: rgba(255,255,255,0.9);
    padding: 3rem 0 1.5rem;
}

.footer-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-divider {
    border-color: rgba(199, 163, 89, 0.3);
    margin: 2rem 0;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* ===== METHODOLOGY BOX ===== */
.methodology-box {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.methodology-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* ===== VISUALIZATION CAPTION ===== */
.visualization-caption {
    background: rgba(199, 163, 89, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
}

.visualization-caption p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 1rem;
}

.visualization-caption p:last-child {
    margin-bottom: 0;
}

/* ===== CONCLUSION BOX ===== */
.conclusion-box {
    background: rgba(199, 163, 89, 0.15);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 2.5rem;
}

.conclusion-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.conclusion-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.conclusion-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.conclusion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== INSIGHT CARDS ===== */
.insight-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.insight-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .section-title, .section-title-light {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 60px;
    }

    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .section-light, .section-dark {
        padding: 3rem 0;
    }

    .section-title, .section-title-light {
        font-size: 1.75rem;
    }

    .strategy-card {
        margin-bottom: 2rem;
    }
}
