/* HAREProtocol Website Styles Brand Colors: - Primary Blue: #003399 - Gold: #FFD700 - Light Blue: #E8F0F8
*/ /* ==================== CSS RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0;
} :root { --blue: #003399; --gold: #FFD700; --light-blue: #E8F0F8; --white: #FFFFFF; --dark: #1a1a2e; --gray-100: #f8f9fa; --gray-200: #e9ecef; --gray-300: #dee2e6; --gray-600: #6c757d; --gray-800: #343a40; --font-sans: 'Söhne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; --font-mono: 'IBM Plex Mono', 'SF Mono', Consolas, monospace; --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05); --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05); --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); --transition: 0.2s ease;
} html { font-size: 16px; scroll-behavior: smooth;
} body { font-family: var(--font-sans); line-height: 1.6; color: var(--dark); background: var(--white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
} /* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.25; color: var(--dark);
} h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; } p { margin-bottom: 1rem; color: var(--gray-800);
} a { color: var(--blue); text-decoration: none; transition: color var(--transition);
} a:hover { color: var(--gold);
} /* ==================== LAYOUT ==================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem;
} .section { padding: 5rem 0;
} .section--light { background: var(--light-blue);
} .section--dark { background: var(--dark); color: var(--white);
} .section--dark h2,
.section--dark h3,
.section--dark p { color: var(--white);
} /* ==================== HEADER & NAVIGATION ==================== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 1rem 0;
} .header__inner { display: flex; justify-content: space-between; align-items: center;
} .logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; color: var(--blue); text-decoration: none;
} .logo span { font-style: italic;
} .logo sup { font-size: 0.6em; vertical-align: super;
} .logo__icon { height: 90px; width: auto; display: block;
} .nav { display: flex; gap: 2rem; align-items: center;
} .nav__link { font-size: 0.9rem; font-weight: 500; color: var(--gray-800); text-decoration: none; padding: 0.5rem 0; position: relative; transition: color var(--transition);
} .nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition);
} .nav__link:hover,
.nav__link--active { color: var(--blue);
} .nav__link:hover::after,
.nav__link--active::after { width: 100%;
} .nav__cta { background: var(--blue); color: var(--white) !important; padding: 0.6rem 1.2rem; border-radius: 4px; font-weight: 500;
} .nav__cta:hover { background: #002277;
} .nav__cta::after { display: none;
} .nav__link--learn:hover { color: var(--gold); border-bottom: 2px solid var(--gold);
} .nav__link--learn.nav__link--active { border-bottom: 2px solid var(--gold);
}

/* Dropdown Navigation */
.nav__dropdown {
    position: relative;
}
.nav__link--dropdown::after {
    content: ' ▾';
    font-size: 0.7em;
}
.nav__dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1001;
    border: 1px solid var(--gray-200);
}
.nav__dropdown:hover .nav__dropdown-content {
    display: block;
}
.nav__dropdown-content a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--gray-800);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.nav__dropdown-content a:hover,
.nav__dropdown-content a.active {
    background: var(--light-blue);
    color: var(--blue);
}
@media (max-width: 900px) {
    .nav__dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background: transparent;
    }
    .nav__dropdown:hover .nav__dropdown-content {
        display: block;
    }
} /* Mobile Navigation */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
} .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: var(--transition);
} @media (max-width: 900px) { .nav-toggle { display: block; z-index: 1001; } .nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); flex-direction: column; padding: 5rem 2rem 2rem; gap: 1.5rem; box-shadow: var(--shadow-lg); transition: right 0.3s ease; } .nav--open { right: 0; } .nav__link { font-size: 1.1rem; }
} /* ==================== HERO SECTION ==================== */
.hero { padding-top: 8rem; padding-bottom: 5rem; background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%); min-height: 70vh; display: flex; align-items: center;
} .hero__content { max-width: 800px;
} .hero__tagline { font-size: 0.875rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
} .hero__title { font-size: 3rem; font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; color: var(--dark);
} .hero__title--highlight { color: var(--blue);
} .hero__subtitle { font-size: 1.25rem; color: var(--gray-600); margin-bottom: 2rem; max-width: 600px;
} /* ==================== BUTTONS ==================== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; font-size: 1rem; font-weight: 600; border-radius: 4px; border: none; cursor: pointer; text-decoration: none; transition: all var(--transition);
} .btn--primary { background: var(--blue); color: var(--white);
} .btn--primary:hover { background: #002277; color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md);
} .btn--secondary { background: transparent; color: var(--blue); border: 2px solid var(--blue);
} .btn--secondary:hover { background: var(--blue); color: var(--white);
} .btn--gold { background: var(--gold); color: var(--dark);
} .btn--gold:hover { background: #e6c200; transform: translateY(-1px); box-shadow: var(--shadow-md);
} .btn-group { display: flex; gap: 1rem; flex-wrap: wrap;
} /* ==================== FEATURE CARDS ==================== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem;
} .feature-card { background: var(--white); padding: 2rem; border-radius: 8px; border: 1px solid var(--gray-200); transition: all var(--transition);
} .feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold);
} .feature-card__icon { width: 48px; height: 48px; background: var(--light-blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--blue); font-size: 1.5rem;
} .feature-card__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--dark);
} .feature-card__text { color: var(--gray-600); line-height: 1.6;
} /* ==================== PROOF POINTS ==================== */
.proof-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem;
} .proof-point { text-align: center; padding: 1.5rem;
} .proof-point__icon { width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem;
} .proof-point__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--dark);
} .proof-point__text { font-size: 0.875rem; color: var(--gray-600);
} /* ==================== SECTION HEADERS ==================== */
.section-header { max-width: 700px; margin-bottom: 3rem;
} .section-header--center { text-align: center; margin-left: auto; margin-right: auto;
} .section-header__tag { font-size: 0.8rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem;
} .section-header__title { margin-bottom: 1rem;
} .section-header__text { font-size: 1.125rem; color: var(--gray-600);
} /* ==================== GAP SECTION ==================== */
.gap-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem;
} @media (max-width: 768px) { .gap-comparison { grid-template-columns: 1fr; }
} .gap-box { padding: 2rem; border-radius: 8px;
} .gap-box--problem { background: var(--gray-100); border-left: 4px solid var(--gray-600);
} .gap-box--solution { background: var(--light-blue); border-left: 4px solid var(--blue);
} .gap-box__title { font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
} .gap-box__list { list-style: none;
} .gap-box__list li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--gray-800);
} .gap-box__list li::before { content: '×'; position: absolute; left: 0; color: var(--gray-600); font-weight: bold;
} .gap-box--solution .gap-box__list li::before { content: '✓'; color: var(--blue);
} /* ==================== VERTICALS ==================== */
.verticals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem;
} @media (max-width: 900px) { .verticals { grid-template-columns: 1fr; }
} .vertical-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-200); transition: all var(--transition);
} .vertical-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px);
} .vertical-card__header { padding: 1.5rem; background: var(--blue); color: var(--white);
} .vertical-card__name { font-size: 1.25rem; font-weight: 700;
} .vertical-card__industry { font-size: 0.875rem; opacity: 0.9;
} .vertical-card__body { padding: 1.5rem;
} .vertical-card__feature { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--gray-200);
} .vertical-card__feature:last-child { border-bottom: none;
} .vertical-card__check { color: var(--blue); font-weight: bold;
}

/* Clickable Vertical Cards */
.vertical-card--link {
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}
.vertical-card--link:hover {
    color: inherit;
}
.vertical-card--link:hover .vertical-card__header {
    background: #002277;
}

/* Verticals 4-column on homepage */
@media (min-width: 901px) {
    .verticals {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Workflow Steps */
.workflow-steps {
    max-width: 700px;
    margin: 3rem auto;
}
.workflow-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}
.workflow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -2rem;
    width: 2px;
    background: var(--gray-300);
}
.workflow-step__number {
    width: 50px;
    height: 50px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    z-index: 1;
}
.workflow-step__content {
    flex-grow: 1;
    padding-top: 0.5rem;
}
.workflow-step__content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.workflow-step__content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}
.workflow-step__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--light-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Workflow Steps on Dark Background */
.section--dark .workflow-step:not(:last-child)::after {
    background: rgba(255,255,255,0.3);
}
.section--dark .workflow-step__number {
    background: var(--gold);
    color: var(--dark);
}
.section--dark .workflow-step__content h4 {
    color: var(--white);
}
.section--dark .workflow-step__content p {
    color: rgba(255,255,255,0.85);
}
.section--dark .workflow-step__tag {
    background: rgba(255,255,255,0.15);
    color: var(--gold);
}

/* Alert Feature Cards (for hard fences) */
.feature-card--alert {
    border: 2px solid #dc3545;
    background: #fff5f5;
}
.feature-card--alert .feature-card__icon {
    background: #dc3545;
    color: var(--white);
}

/* Article Cards for EU AI Act */
.article-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.article-card {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition);
}
.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.article-card__header {
    background: var(--blue);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.article-card__number {
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}
.article-card__title {
    font-weight: 600;
}
.article-card__requirement {
    padding: 1.25rem 1.5rem;
    background: var(--gray-100);
    font-size: 0.9rem;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-200);
}
.article-card__solution {
    padding: 1.25rem 1.5rem;
}
.article-card__solution ul {
    list-style: none;
    margin-top: 0.75rem;
}
.article-card__solution li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-800);
}
.article-card__solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
}

/* Horizontal Timeline */
.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin: 3rem 0;
    padding: 2rem 0;
    position: relative;
    overflow-x: auto;
}
.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gray-300);
}
.timeline-event {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    padding-top: 2rem;
}
.timeline-event::before {
    content: '';
    position: absolute;
    top: 1.35rem;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 4px solid var(--blue);
    border-radius: 50%;
    z-index: 1;
}
.timeline-event--highlight::before {
    background: var(--gold);
    border-color: var(--gold);
    width: 20px;
    height: 20px;
}
.timeline-event__date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.timeline-event--highlight .timeline-event__date {
    color: var(--gold);
}
.timeline-event__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.timeline-event__desc {
    font-size: 0.8rem;
    color: var(--gray-600);
}
@media (max-width: 768px) {
    .timeline-horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    .timeline-horizontal::before {
        top: 0;
        bottom: 0;
        left: 1rem;
        width: 4px;
        height: auto;
    }
    .timeline-event {
        text-align: left;
        padding-left: 3rem;
        padding-top: 0;
        margin-bottom: 1.5rem;
    }
    .timeline-event::before {
        top: 0.25rem;
        left: 1rem;
        transform: translateX(-50%);
    }
}

/* EU AI Act Homepage Highlights */
.eu-act-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.eu-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
}
.eu-highlight__article {
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}
.eu-highlight__text {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .eu-act-highlights {
        margin-top: 2rem;
    }
} /* ==================== PAGE ==================== */
.timeline { max-width: 700px; margin: 3rem auto; position: relative;
} .timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: var(--gray-300);
} .timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; position: relative;
} .timeline-item__marker { width: 50px; height: 50px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; z-index: 1;
} .timeline-item__content { background: var(--white); padding: 1.5rem; border-radius: 8px; border: 1px solid var(--gray-200); flex-grow: 1;
} .timeline-item__title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem;
} /* ==================== PARTNER CARDS ==================== */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem;
} .partner-card { background: var(--white); padding: 1.5rem; border-radius: 8px; border: 1px solid var(--gray-200);
} .partner-card__type { font-size: 0.75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
} .partner-card__title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem;
} .partner-card__budget { font-size: 1.5rem; font-weight: 700; color: var(--blue); margin-bottom: 0.75rem;
} .partner-card__text { font-size: 0.9rem; color: var(--gray-600);
} /* ==================== PAGE ==================== */
.course-structure { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem;
} @media (max-width: 768px) { .course-structure { grid-template-columns: 1fr; }
} .course-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-200);
} .course-card__header { padding: 1.5rem; background: var(--dark); color: var(--white);
} .course-card__number { font-size: 0.75rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
} .course-card__title { font-size: 1.25rem; font-weight: 600; margin-top: 0.25rem;
} .course-card__duration { font-size: 0.875rem; opacity: 0.8; margin-top: 0.5rem;
} .course-card__body { padding: 1.5rem;
} .course-card__topics { list-style: none;
} .course-card__topics li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; border-bottom: 1px solid var(--gray-100);
} .course-card__topics li::before { content: '→'; position: absolute; left: 0; color: var(--blue);
} .course-card__topics li:last-child { border-bottom: none;
} /* ==================== BENEFITS GRID ==================== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem;
} .benefit-item { display: flex; gap: 1rem; align-items: flex-start;
} .benefit-item__icon { width: 40px; height: 40px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
} .benefit-item__title { font-weight: 600; margin-bottom: 0.25rem;
} .benefit-item__text { font-size: 0.9rem; color: var(--gray-600);
} /* ==================== INVESTORS PAGE ==================== */
.market-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin: 3rem 0;
} @media (max-width: 900px) { .market-stats { grid-template-columns: repeat(2, 1fr); }
} .stat-card { text-align: center; padding: 1.5rem; background: var(--white); border-radius: 8px; border: 1px solid var(--gray-200);
} .stat-card__number { font-size: 2.5rem; font-weight: 700; color: var(--blue); line-height: 1;
} .stat-card__label { font-size: 0.875rem; color: var(--gray-600); margin-top: 0.5rem;
} /* Team Section */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem;
} .team-card { background: var(--white); padding: 2rem; border-radius: 8px; border: 1px solid var(--gray-200); text-align: center;
} .team-card__avatar { width: 80px; height: 80px; background: var(--light-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2rem; color: var(--blue);
} .team-card__name { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem;
} .team-card__role { font-size: 0.875rem; color: var(--gold); font-weight: 600; margin-bottom: 1rem;
} .team-card__bio { font-size: 0.9rem; color: var(--gray-600);
} /* Traction List */
.traction-list { list-style: none; max-width: 600px;
} .traction-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-200);
} .traction-list li:last-child { border-bottom: none;
} .traction-list__icon { width: 32px; height: 32px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
} .traction-list__text { font-size: 1rem;
} .traction-list__text strong { color: var(--dark);
} /* ==================== PORTAL PAGE ==================== */
.portal-gate { max-width: 400px; margin: 0 auto; padding: 3rem; background: var(--white); border-radius: 8px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-md);
} .portal-gate__title { text-align: center; margin-bottom: 1.5rem;
} .portal-gate__field { margin-bottom: 1rem;
} .portal-gate__label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--gray-800);
} .portal-gate__input { width: 100%; padding: 0.75rem 1rem; font-size: 1rem; border: 1px solid var(--gray-300); border-radius: 4px; transition: border-color var(--transition);
} .portal-gate__input:focus { outline: none; border-color: var(--blue);
} .portal-gate__error { color: #dc3545; font-size: 0.875rem; margin-top: 0.5rem; display: none;
} .portal-gate__btn { width: 100%; margin-top: 1rem;
} /* Portal Content */
.portal-content { display: none;
} .portal-content--visible { display: block;
} .resource-list { list-style: none; max-width: 600px; margin: 3rem auto;
} .resource-item { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; background: var(--white); border-radius: 8px; border: 1px solid var(--gray-200); margin-bottom: 1rem; transition: all var(--transition);
} .resource-item:hover { box-shadow: var(--shadow-md); border-color: var(--gold);
} .resource-item__info { display: flex; align-items: center; gap: 1rem;
} .resource-item__icon { width: 48px; height: 48px; background: var(--light-blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.25rem;
} .resource-item__name { font-weight: 600; margin-bottom: 0.25rem;
} .resource-item__desc { font-size: 0.875rem; color: var(--gray-600);
} .resource-item__download { padding: 0.5rem 1rem; font-size: 0.875rem;
} /* ==================== CALL TO ACTION ==================== */
.cta-section { background: var(--blue); padding: 4rem 0; text-align: center;
} .cta-section h2 { color: var(--white); margin-bottom: 1rem;
} .cta-section p { color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto 2rem;
} /* ==================== FOOTER ==================== */
.footer { background: var(--blue); color: var(--white); padding: 1.5rem 0 1rem;
} .footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
} .footer__logo { font-size: 1.25rem; font-weight: 700; color: var(--white);
} .footer__logo span { font-style: italic;
} .footer__links { display: flex; gap: 2rem;
} .footer__link { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; text-decoration: none; transition: color var(--transition);
} .footer__link:hover { color: var(--white);
} .footer__bottom { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: #FFFFFF;
} .footer__bottom p, .footer__bottom a { color: #FFFFFF;
} /* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; } /* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) { h1 { font-size: 2rem; } h2 { font-size: 1.5rem; } .hero__title { font-size: 2rem; } .section { padding: 3rem 0; } .container { padding: 0 1.25rem; } .market-stats { grid-template-columns: 1fr 1fr; } .footer__inner { flex-direction: column; text-align: center; } .footer__links { flex-wrap: wrap; justify-content: center; } .footer__bottom { flex-direction: column; text-align: center; }
} /* Highlight Box */
.highlight-box { background: var(--gold); color: var(--dark); padding: 2rem; border-radius: 8px; margin: 2rem 0;
} .highlight-box h3 { margin-bottom: 1rem;
} .highlight-box p { color: var(--dark); margin-bottom: 0;
} /* Quote */
.quote { font-size: 1.5rem; font-style: italic; color: var(--dark); border-left: 4px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0;
} /* Table */
.table-wrapper { overflow-x: auto; margin: 2rem 0;
} table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden;
} th, td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--gray-200);
} th { background: var(--dark); color: var(--white); font-weight: 600;
} tr:hover { background: var(--light-blue);
}
