/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1628;
    --navy-light: #132039;
    --blue: #1a5cff;
    --blue-light: #4d82ff;
    --blue-subtle: #e8efff;
    --teal: #0ea5a0;
    --teal-light: #14d4cd;
    --white: #ffffff;
    --gray-50: #f8f9fc;
    --gray-100: #f0f2f7;
    --gray-200: #e2e5ed;
    --gray-400: #9aa3b4;
    --gray-600: #5a6478;
    --gray-800: #2d3444;
    --text: #1a1f2e;
    --text-light: #5a6478;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(10, 22, 40, 0.06), 0 4px 12px rgba(10, 22, 40, 0.04);
    --shadow-lg: 0 4px 12px rgba(10, 22, 40, 0.08), 0 16px 40px rgba(10, 22, 40, 0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Accessibility ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 24px;
    background: var(--blue);
    color: var(--white);
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

.btn-primary:hover:not(:disabled) {
    background: var(--blue-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 92, 255, 0.3);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--blue);
    color: var(--white);
    border-radius: 8px;
}

.btn-nav:hover {
    background: var(--blue-light);
}

.btn-full {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 12px rgba(10, 22, 40, 0.06);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo images */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo .logo-black {
    display: none;
}

.navbar.scrolled .logo .logo-white {
    display: none;
}

.navbar.scrolled .logo .logo-black {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--text);
}

.nav-links .btn-nav,
.navbar.scrolled .nav-links .btn-nav {
    color: var(--white);
}

.nav-links .btn-nav:hover,
.navbar.scrolled .nav-links .btn-nav:hover {
    color: var(--white);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.navbar.scrolled .nav-toggle span {
    background: var(--navy);
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.6) 50%, rgba(10, 22, 40, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-tag {
    display: inline-block;
    color: var(--teal-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--teal-light);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 640px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Section Shared ===== */
.section-tag {
    display: inline-block;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-tag-light {
    color: var(--teal-light);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 560px;
    margin-bottom: 48px;
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    background: var(--white);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--blue-subtle);
    color: var(--blue);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== Pryvera Product Section ===== */
.pryvera {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: var(--white);
}

.pryvera-bg {
    position: absolute;
    inset: 0;
    background: var(--navy);
    z-index: 0;
}

.pryvera-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.pryvera-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.8) 50%, rgba(10, 22, 40, 0.92) 100%);
    z-index: 1;
}

.pryvera .container {
    position: relative;
    z-index: 2;
}

.pryvera-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.pryvera-logo-wrap {
    margin-bottom: 24px;
}

.pryvera-brand-logo {
    max-width: 320px;
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 32px;
    border-radius: 16px;
}

.pryvera-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--teal-light);
    margin-bottom: 16px;
    font-weight: 600;
}

.pryvera-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* Pryvera Stats */
.pryvera-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.pryvera-stat {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.pryvera-stat:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.pryvera-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-light);
    margin-bottom: 4px;
}

.pryvera-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* Pryvera Modules */
.pryvera-section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.module-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.module-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(14, 165, 160, 0.15);
    color: var(--teal-light);
    margin-bottom: 16px;
}

.module-icon svg {
    width: 20px;
    height: 20px;
}

.module-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.module-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Pryvera Security */
.pryvera-security {
    margin-bottom: 48px;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: var(--transition);
}

.security-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 165, 160, 0.3);
}

.security-badge svg {
    width: 16px;
    height: 16px;
    color: var(--teal-light);
    flex-shrink: 0;
}

.security-note {
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pryvera CTA */
.pryvera-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.about-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.about-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.about-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    transform: translateY(-50%);
}

.about-card ul li:last-child {
    border-bottom: none;
}

/* ===== Leadership ===== */
.leadership {
    padding: 100px 0;
    background: var(--white);
}

.leader-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-top: 40px;
}

.leader-photo {
    flex-shrink: 0;
}

.leader-photo-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 48% 15%;
    border: 3px solid var(--gray-200);
}

.leader-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.leader-title {
    color: var(--blue);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 2px;
}

.leader-credentials {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.leader-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.leader-affiliations {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.affiliation {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--gray-600);
    font-weight: 500;
    border: 1px solid var(--gray-200);
}

/* ===== Case Studies ===== */
.case-studies {
    padding: 100px 0;
    background: var(--gray-50);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.case-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.case-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--blue-subtle);
    color: var(--blue);
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.case-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-deliverables li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.case-deliverables li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--blue);
}

.contact-pryvera-note {
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--teal);
}

.contact-pryvera-note p {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-pryvera-note a {
    font-size: 0.92rem;
    color: var(--blue);
    font-weight: 500;
    transition: var(--transition);
}

.contact-pryvera-note a:hover {
    color: var(--blue-light);
}

.contact-form-wrap {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 92, 255, 0.1);
}

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

/* Form status messages */
.form-status {
    margin-top: 12px;
    font-size: 0.88rem;
    min-height: 1.4em;
}

.form-status-error {
    color: #dc3545;
}

.form-status-info {
    color: var(--text-light);
}

.form-status-success {
    color: #198754;
}

.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 12px;
    max-width: 400px;
}

.footer-columns {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

/* ===== Fade-in animations (CSS only, triggered by JS) ===== */
/* JS adds .js-loaded to <html> on load -- without it, cards stay fully visible */
.js-loaded .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-loaded .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ===== Print ===== */
@media print {
    .navbar,
    .nav-overlay,
    .hero-bg,
    .pryvera-bg,
    .contact-form-wrap,
    .skip-link {
        display: none;
    }

    .hero {
        min-height: auto;
        background: none;
    }

    .hero-content {
        color: #000;
        padding: 20px 0;
    }

    .hero h1,
    .hero h1 .highlight,
    .hero-tag,
    .hero-sub {
        color: #000;
    }

    .pryvera {
        background: #f5f5f5;
        color: #000;
    }

    .pryvera-tagline,
    .pryvera-desc,
    .pryvera-section-heading,
    .module-card h4,
    .module-card p,
    .pryvera-stat-number,
    .pryvera-stat-label,
    .security-badge,
    .security-note {
        color: #333;
    }

    .footer {
        background: #f5f5f5;
    }

    .footer-brand p,
    .footer-col h4,
    .footer-col a,
    .footer-bottom p {
        color: #333;
    }

    body {
        font-size: 12pt;
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pryvera-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: var(--transition);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1rem;
    }

    .hero-content {
        padding: 140px 24px 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .pryvera-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pryvera-brand-logo {
        max-width: 240px;
    }

    .security-badges {
        gap: 10px;
    }

    .security-badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .leader-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
    }

    .leader-affiliations {
        justify-content: center;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .pryvera-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        text-align: center;
    }
}
