

:root {
    --primary-color: #0A192F;
    --secondary-color: #172A45;
    --accent-red: #D32F2F;
    --accent-yellow: #FFC107;
    --text-light: #6C757D;
    --text-dark: #212529;
    --bg-light: #FFFFFF;
    --bg-offwhite: #F8F9FA;
    --border-soft: #E9EEF5;
    --shadow-soft: 0 18px 45px rgba(10, 25, 47, 0.09);
    --shadow-card: 0 10px 30px rgba(10, 25, 47, 0.08);
}

body {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
button,
input,
textarea,
select,
.btn,
.form-control,
.nav-link {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
}

img {
    max-width: 100%;
}

/* Typography utilities */
.text-primary-brand { color: var(--primary-color) !important; }
.text-accent-red { color: var(--accent-red) !important; }
.text-accent-yellow { color: var(--accent-yellow) !important; }

/* Background utilities */
.bg-primary-brand { background-color: var(--primary-color) !important; color: white !important; }
.bg-accent-red { background-color: var(--accent-red) !important; color: white !important; }
.bg-accent-yellow { background-color: var(--accent-yellow) !important; color: var(--primary-color) !important; }

/* Custom Buttons */
.btn-brand-red {
    background-color: var(--accent-red);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-brand-red:hover {
    background-color: #b71c1c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(211, 47, 47, 0.24);
}

.btn-brand-yellow {
    background-color: var(--accent-yellow);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-brand-yellow:hover {
    background-color: #ffca28;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 193, 7, 0.24);
}

.btn-brand-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 8px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-brand-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Navbar */
.navbar-brand-custom {
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.06);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(12px);
}

.brand-logo {
    height: 44px;
    margin-right: 10px;
}

.brand-name {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 800;
    white-space: nowrap;
}

.navbar-brand-custom .nav-link {
    color: var(--text-dark) !important;
    font-weight: 700;
    transition: color 0.3s;
    margin: 0 4px;
    padding: 8px 10px !important;
    border-radius: 8px;
}

.navbar-brand-custom .nav-link:hover,
.navbar-brand-custom .nav-link.active {
    color: var(--accent-red) !important;
    background: rgba(211, 47, 47, 0.07);
}

.nav-cta {
    white-space: nowrap;
}

/* Hero Section */
.hero-section {
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.16), transparent 30%),
        linear-gradient(135deg, #FFFFFF 0%, #F8FAFD 55%, #FFF7F7 100%);
    color: var(--text-dark);
    padding: 96px 0 72px;
    position: relative;
    overflow: hidden;
}

.hero-media {
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    max-height: 450px;
    object-fit: cover;
}

.hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: var(--shadow-card);
}

.page-hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #F7F9FC 100%);
    border-bottom: 1px solid var(--border-soft);
    padding: 72px 0;
}

.associate-page-hero {
    padding: 18px 0 16px !important;
}

.associate-page-hero .section-kicker {
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.associate-page-hero h1 {
    margin-bottom: 6px !important;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.associate-page-hero p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.45;
}

.associate-party-list {
    padding: 28px 0 48px;
}

.section-kicker {
    color: var(--accent-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 8px;
}

/* Cards */
.feature-card {
    background: white;
    border-radius: 8px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-soft);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.12);
    border-color: rgba(239, 68, 68, 0.2);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.icon-wrapper.red {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
}

.icon-wrapper.yellow {
    background-color: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

.icon-wrapper.blue {
    background-color: rgba(11, 21, 60, 0.1);
    color: var(--primary-color);
}

/* Timeline */
.timeline-step {
    position: relative;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-red);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: var(--accent-yellow);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #F8F9FA;
    color: var(--text-dark);
    padding: 36px 0 14px;
    border-top: 1px solid #eaeaea;
}

.footer h4, .footer h5 {
    color: var(--primary-color) !important;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--accent-red);
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #eaeaea;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.footer-logo {
    height: 42px;
    margin-bottom: 12px;
}

.footer .mb-4 {
    margin-bottom: 1rem !important;
}

.footer .mb-3 {
    margin-bottom: 0.65rem !important;
}

.footer .app-downloads {
    gap: 8px;
}

.footer .app-download-btn {
    min-height: 38px;
    min-width: 132px;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.footer hr {
    margin-top: 1.6rem !important;
    margin-bottom: 1rem !important;
}

.footer-social-icon:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
}

.surface-card {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.metric-card {
    border-right: 1px solid var(--border-soft);
}

.metric-card:last-child {
    border-right: 0;
}

.partner-logo-frame {
    height: 170px;
    background-color: #FCFCFD;
    border-bottom: 1px solid var(--border-soft);
}

.form-control {
    border-radius: 8px;
}

.form-control:focus {
    border-color: rgba(211, 47, 47, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.12);
}

/* Unified app download buttons */
.app-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.app-downloads .app-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    min-width: 160px;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.app-downloads .app-download-btn:hover {
    transform: translateY(-2px);
}

.app-downloads .app-android {
    background: var(--accent-red);
    border: 1px solid var(--accent-red);
    color: white !important;
}

.app-downloads .app-android:hover {
    background: #b71c1c;
    border-color: #b71c1c;
    box-shadow: 0 10px 24px rgba(211, 47, 47, 0.24);
}

.app-downloads .app-ios {
    background: #1f2530;
    border: 1px solid #1f2530;
    color: white !important;
}

.app-downloads .app-ios:hover {
    background: #10151d;
    border-color: #10151d;
    color: white !important;
}

.app-downloads .app-apk {
    background: white;
    border: 1px solid var(--border-soft);
    color: var(--primary-color) !important;
}

.app-downloads .app-apk:hover {
    border-color: var(--accent-red);
    color: var(--accent-red) !important;
    box-shadow: 0 10px 24px rgba(10, 25, 47, 0.08);
}

.btn-dark {
    background-color: #1f2530;
    color: white !important;
    border: none;
}

.btn-outline-secondary {
    border-color: rgba(0,0,0,0.08) !important;
}

@media (max-width: 991.98px) {
    .navbar-brand-custom .navbar-collapse {
        text-align: center;
        padding: 14px 0;
    }

    .navbar-brand-custom .navbar-nav {
        align-items: center;
    }

    .navbar-brand-custom .nav-link {
        display: inline-block;
        margin: 4px 0;
    }

    .nav-cta {
        margin-top: 12px;
        width: 100%;
    }

    .hero-section {
        padding: 72px 0 56px;
    }
}

@media (max-width: 767.98px) {
    .about-snippet-content {
        text-align: center;
    }

    .about-snippet-content .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer,
    .footer .text-md-start,
    .footer .text-md-end {
        text-align: center !important;
    }

    .footer .d-flex,
    .footer .app-downloads,
    .footer li {
        justify-content: center;
    }

    .footer li.d-flex {
        align-items: center !important;
    }

    .footer li i {
        margin-right: 8px !important;
    }

    .metric-card {
        border-right: 0;
        border-bottom: 1px solid var(--border-soft);
        padding-bottom: 18px;
    }

    .metric-card:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .brand-name {
        display: none;
    }

    .app-downloads {
        align-items: stretch;
        flex-direction: column;
    }

    .app-downloads .app-download-btn {
        width: 100%;
        justify-content: center;
    }
}
