/* RiskVert — custom.css */
/* Accent: #7c3aed | Industry: AI-driven insurance underwriting risk assessment */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --accent: #7c3aed;
    --accent-dark: #5b21b6;
    --accent-light: #ede9fe;
    --bg: #0f0d1a;
    --surface: #16142a;
    --surface2: #1e1b36;
    --text: #e8eaf0;
    --text-muted: #94a3b8;
    --border: rgba(255,255,255,0.08);
    --radius: 12px;
    --gap: 28px;
    --nav-height: 72px;
    --bg-rgb: 15,13,26;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.9;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Override template sidebar wrapper */
#page-wraper {
    background: var(--bg) !important;
    width: 100% !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #e2e8f0;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 700;
}

h1 { font-size: 58px; line-height: 1.15; }
h2 { font-size: 40px; line-height: 1.2; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.4; }

p {
    color: #c8d6e5;
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: 0.2px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: none; }

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

img { max-width: 100%; height: auto; }

/* ============================================================
   NAVIGATION (horizontal top navbar)
   ============================================================ */
.rv-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 13, 26, 0.95);
    border-bottom: 1px solid var(--border);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rv-navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rv-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    height: 40px;
    width: auto;
    max-width: none !important;
}

.rv-nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.rv-nav-links li { display: inline-block; margin: 0; }

.rv-nav-links a {
    color: #c8d6e5;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.rv-nav-links a:hover,
.rv-nav-links a.active {
    color: #ffffff;
    background: rgba(124, 58, 237, 0.15);
}

.rv-nav-cta {
    background: var(--accent) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    transition: background 0.2s !important;
}

.rv-nav-cta:hover {
    background: var(--accent-dark) !important;
    color: #ffffff !important;
}

/* Hamburger (mobile) */
.rv-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.rv-hamburger span {
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    display: block;
    transition: all 0.3s;
}

/* R77: Nav cleanup */
.nav-item { margin-bottom: 0 !important; background-image: none !important; }
.btn-accent, .cta-primary, .cta-secondary { white-space: nowrap; }

/* ============================================================
   PAGE BODY OFFSET (for fixed navbar)
   ============================================================ */
.page-body {
    padding-top: var(--nav-height);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 640px;
    background: var(--bg);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* R79 */
.header-thumb { background: transparent !important; border: none !important; }

.hero-section h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-section h1 span {
    color: var(--accent);
}

.hero-section p.hero-sub {
    font-size: 20px;
    color: #c8d6e5;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 600px;
}

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

/* ============================================================
   BUTTONS — R75 & R-BTN
   ============================================================ */
.btn-accent {
    background: var(--accent);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--accent);
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* R-BTN: Outline button on DARK background sections */
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* R-BTN: Outline button on LIGHT background sections */
.section-light .btn-outline {
    color: #1e293b !important;
    border: 2px solid #1e293b !important;
    background: transparent !important;
}

.section-light .btn-outline:hover {
    background: rgba(0,0,0,0.05) !important;
    color: #1e293b !important;
}

/* R75: White bg CTA — dark text hardcoded */
.cta-secondary {
    background: #ffffff;
    color: #1e293b;
    border: 2px solid var(--accent);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.cta-secondary:hover {
    background: var(--accent-light);
    color: var(--accent-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.page-section {
    padding: 88px 0;
}

.section-dark {
    background: var(--surface);
    color: var(--text);
}

.section-alt {
    background: var(--surface2);
    color: var(--text);
}

.section-light {
    background: #f8f9fa;
    color: #1e293b;
}

.section-header {
    margin-bottom: 52px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.section-light .section-header h2 {
    color: #0f172a;
}

.section-header p {
    font-size: 18px;
    color: #8fabc4;
    max-width: 620px;
    margin: 0 auto;
}

.section-light .section-header p {
    color: #475569;
}

.accent-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* ============================================================
   FEATURE CARDS — R87
   ============================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.feature-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(124,58,237,0.15);
}

/* R87: uniform icon area */
.feature-card .feature-icon {
    display: block;
    height: 48px;
    margin-bottom: 16px;
}

.feature-card .feature-icon .fa {
    font-size: 32px;
    color: var(--accent);
}

/* R81 */
.feature-icon .fa, .card-icon .fa, .step-icon .fa { color: var(--accent) !important; }

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #e2e8f0;
    margin-bottom: 12px;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.75;
    color: #8fabc4;
    flex: 1;
}

/* ============================================================
   STEPS / HOW-IT-WORKS — R80
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 20px;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 17px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 10px;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.process-step p {
    font-size: 15px;
    color: #8fabc4;
    margin: 0;
}

/* ============================================================
   TEAM CARDS — R84, R86
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(124,58,237,0.12);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center; /* R86 */
    display: block;
}

.team-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 4px;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.team-card .role {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.team-card p {
    font-size: 15px;
    color: #8fabc4;
    line-height: 1.7;
    flex: 1;
}

/* ============================================================
   BLOG / ARTICLE LISTING — R78
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(124,58,237,0.12);
}

.blog-card-thumb {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body .post-category {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.blog-card-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
}

.blog-card-body h3 a {
    color: #e2e8f0;
    text-decoration: none;
}

.blog-card-body h3 a:hover {
    color: var(--accent);
}

.blog-card-body .post-meta {
    font-size: 13px;
    color: #8fabc4;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

/* R-IMG: Article image sizing */
.img-fluid,
.blog-hero-img,
.article-thumbnail img,
.article-thumbnail,
article img,
.post-content img,
.container-narrow img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 8px;
    margin: 24px 0;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--surface2) 0%, rgba(124,58,237,0.08) 100%);
    transform: translateY(-8px);
}

.pricing-card.featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(124,58,237,0.25);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

.pricing-card .plan-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.pricing-card .price {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-card .price span {
    font-size: 18px;
    font-weight: 400;
    color: #8fabc4;
}

.pricing-card .price-desc {
    font-size: 15px;
    color: #8fabc4;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-card ul.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
}

.pricing-card ul.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #c8d6e5;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-card ul.features-list li .fa {
    color: var(--accent);
    font-size: 14px;
    margin-top: 5px;
    flex-shrink: 0;
}

.pricing-card .btn-accent {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--surface2);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 15px;
    color: #8fabc4;
    margin: 0;
}

/* ============================================================
   TRUSTED / INTEGRATIONS
   ============================================================ */
.trust-section {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.trust-label {
    font-size: 13px;
    color: #8fabc4;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 28px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-logo-item {
    font-size: 14px;
    font-weight: 600;
    color: #8fabc4;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.trust-logo-item:hover { opacity: 1; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form .form-control {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 16px;
    padding: 14px 18px;
    width: 100%;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface2);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
    color: #e2e8f0;
}

.contact-form .form-control::placeholder {
    color: #8fabc4;
}

textarea.form-control { min-height: 140px; resize: vertical; }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .fa {
    color: var(--accent);
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 15px;
    color: #8fabc4;
    margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.rv-footer {
    background: #0a0812;
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    color: #c8d6e5;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
}

.footer-brand:hover { color: var(--accent); text-decoration: none; }

.rv-footer p {
    font-size: 15px;
    color: #8fabc4;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: block;
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 15px;
    color: #8fabc4;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 14px;
    color: #8fabc4;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal li { display: inline; }

.footer-legal a {
    font-size: 14px;
    color: #8fabc4;
    text-decoration: none;
}

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

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--surface);
    padding: 80px 0 64px;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 18px;
    color: #8fabc4;
    margin: 0;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #8fabc4;
    margin-bottom: 14px;
}

.breadcrumb-nav a { color: var(--accent); text-decoration: none; }
.breadcrumb-nav span { margin: 0 8px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(22, 20, 42, 0.97);
    border-top: 1px solid var(--border);
    padding: 18px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}

#cookie-banner p {
    font-size: 15px;
    color: #c8d6e5;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

#cookie-banner a { color: var(--accent); }

.cookie-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#cookie-accept {
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

#cookie-accept:hover { background: var(--accent-dark); }

#cookie-decline {
    background: transparent;
    color: #8fabc4;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

#cookie-decline:hover { color: #e2e8f0; }

/* ============================================================
   R77, R79, R89 OVERRIDES
   ============================================================ */
.header.active { background-color: rgba(var(--bg-rgb), 0.98) !important; }
.header.active .navbar-nav > li > a { color: #e2e8f0 !important; }
.tm-bg-overlay, [class*="overlay"] { pointer-events: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: translateY(0); }
}

@media (max-width: 767px) {
    .rv-nav-links { display: none; }
    .rv-hamburger { display: flex; }
    .rv-mobile-menu { display: flex; flex-direction: column; background: rgba(15,13,26,0.98); padding: 20px; }
    .rv-mobile-menu.hidden { display: none; }
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    .hero-section { min-height: 500px; padding: 60px 0; }
    .hero-section h1 { font-size: 36px; }
    .page-section { padding: 60px 0; }
    .feature-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-section h1 { font-size: 30px; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE NAV MENU
   ============================================================ */
.rv-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(15, 13, 26, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}

.rv-mobile-menu.open {
    display: flex;
}

.rv-mobile-menu a {
    color: #c8d6e5;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: block;
    transition: background 0.2s, color 0.2s;
}

.rv-mobile-menu a:hover, .rv-mobile-menu a.active {
    background: rgba(124,58,237,0.15);
    color: #ffffff;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
    margin-bottom: 40px;
}

.about-story p {
    font-size: 18px;
    color: #c8d6e5;
    line-height: 1.9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.value-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.value-card .fa {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 14px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.value-card p {
    font-size: 15px;
    color: #8fabc4;
    margin: 0;
}

/* ============================================================
   CULTURE / TEAM STATS (R84)
   ============================================================ */
.culture-section {
    background: var(--surface2);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
}

.culture-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
    margin-top: 32px;
}

.culture-stat h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.culture-stat p {
    font-size: 14px;
    color: #8fabc4;
    margin: 0;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.product-feature-row.reverse { direction: rtl; }
.product-feature-row.reverse > * { direction: ltr; }

.product-feature-text h3 {
    font-size: 26px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 16px;
    text-transform: none !important;
}

.product-feature-text p {
    font-size: 17px;
    color: #c8d6e5;
    line-height: 1.85;
}

.product-feature-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.product-feature-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #c8d6e5;
    padding: 8px 0;
}

.product-feature-text ul li .fa {
    color: var(--accent);
    font-size: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.text-accent { color: var(--accent) !important; }
.text-muted-rv { color: #8fabc4; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }

.cta-section {
    background: linear-gradient(135deg, var(--surface2) 0%, rgba(124,58,237,0.12) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.line-dec {
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* nav-cta alias */
.nav-cta { display:inline-block; padding:8px 20px; border-radius:6px; font-size:14px; font-weight:600; background:var(--accent); color:#fff !important; text-decoration:none; transition:background 0.2s; }
.nav-cta:hover { background:var(--accent-dark); color:#fff !important; }
