/*
Theme Name: Astra Child
Template: astra
Version: 5.9.0
Description: R2 Trading AI Design System
*/

/* Google Fonts loaded via functions.php wp_enqueue_style for performance */

/* ── Design Tokens ── */
:root {
    /* Brand Colors */
    --r2-primary: #157a7a;
    --r2-primary-dark: #116262;
    --r2-accent: #23cba7;
    --r2-accent-light: #e6f7f4;
    --r2-accent-surface: #f0fdfa;

    /* Neutral Colors */
    --r2-text: #1e293b;
    --r2-text-secondary: #64748b;
    --r2-text-muted: #94a3b8;
    --r2-border: #e2e8f0;
    --r2-border-light: #f1f5f9;
    --r2-bg: #fdfdfd;
    --r2-white: #ffffff;
    --r2-error: #ef4444;
    --r2-error-bg: #fef2f2;

    /* Glass Effect */
    --r2-glass-bg: rgba(255, 255, 255, 0.7);
    --r2-glass-border: rgba(255, 255, 255, 0.8);
    --r2-glass-blur: 24px;

    /* Shadows */
    --r2-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --r2-shadow-md: 0 20px 50px rgba(0, 0, 0, 0.04);
    --r2-shadow-lg: 0 40px 80px rgba(0, 0, 0, 0.05);
    --r2-shadow-hover: 0 50px 100px rgba(21, 122, 122, 0.1);

    /* Border Radius */
    --r2-radius-sm: 12px;
    --r2-radius-md: 24px;
    --r2-radius-lg: 40px;
    --r2-radius-pill: 100px;

    /* Typography */
    --r2-font-display: 'Outfit', sans-serif;
    --r2-font-body: 'Inter', sans-serif;

    /* Transitions */
    --r2-transition: 0.3s ease;
    --r2-transition-slow: 0.5s ease;
}

/* ── Reset & Foundation ── */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
body { overflow-x: hidden; -webkit-text-size-adjust: 100%; }

/* ── Astra Overrides ── */
.ast-container, #content, .site-content { padding-top: 0 !important; margin-top: 0 !important; }
.entry-content { padding-top: 0 !important; margin-top: 0 !important; }
.entry-header, .page-title, .ast-archive-description { display: none !important; }

/* ════════════════════════════════════════════════════════════════
   COMPONENTS
   ════════════════════════════════════════════════════════════════ */

/* ── Section (Hero wrapper) ── */
.r2-section {
    position: relative;
    background: var(--r2-bg);
    min-height: 100vh;
    overflow: hidden;
    padding: 160px 5% 100px;
    margin-top: -200px;
}
.r2-section--short  { min-height: auto; padding-top: 160px; padding-bottom: 60px; }
.r2-section--center { display: flex; align-items: center; justify-content: center; padding: 100px 5%; }
.r2-section--flush  { padding-top: 0; margin-top: -80px; }

/* ── Background Blobs ── */
.r2-section::before,
.r2-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.r2-section::before {
    top: 10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(35, 203, 167, 0.12) 0%, transparent 70%);
    filter: blur(80px);
}
.r2-section::after {
    bottom: 5%; left: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(53, 114, 213, 0.08) 0%, transparent 70%);
    filter: blur(80px);
}

/* ── Container ── */
.r2-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.r2-container--narrow { max-width: 900px; }
.r2-container--wide   { max-width: 1300px; }

/* ── Glass Card ── */
.r2-glass-card {
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border: 1px solid var(--r2-glass-border);
    border-radius: var(--r2-radius-lg);
    padding: 60px;
    box-shadow: var(--r2-shadow-md);
    transition: var(--r2-transition-slow);
}
.r2-glass-card:hover {
    box-shadow: var(--r2-shadow-hover);
}
.r2-glass-card--interactive:hover {
    transform: translateY(-10px);
    box-shadow: var(--r2-shadow-hover);
}
.r2-glass-card--compact { padding: 20px; }
.r2-glass-card--article {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: var(--r2-shadow-lg);
}

/* ── Typography ── */
.r2-heading {
    font-family: var(--r2-font-display);
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.r2-heading--xl  { font-size: 3.8rem; letter-spacing: -0.03em; }
.r2-heading--lg  { font-size: 3.5rem; }
.r2-heading--md  { font-size: 2.2rem; font-weight: 700; }
.r2-heading--sm  { font-size: 1.8rem; }
.r2-heading--xs  { font-size: 1.6rem; font-weight: 700; }

.r2-text {
    font-family: var(--r2-font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--r2-text-secondary);
}
.r2-text--sm { font-size: 1rem; }
.r2-text--center { text-align: center; }

.r2-highlight {
    font-weight: 700;
    background: linear-gradient(135deg, var(--r2-primary), var(--r2-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ── */
.r2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--r2-primary);
    color: var(--r2-white);
    border: none;
    padding: 18px 45px;
    border-radius: var(--r2-radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--r2-font-body);
    cursor: pointer;
    text-decoration: none;
    transition: var(--r2-transition);
    box-shadow: 0 4px 15px rgba(21, 122, 122, 0.15);
}
.r2-btn:hover {
    background: var(--r2-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 122, 122, 0.25);
    color: var(--r2-white);
}
.r2-btn:focus-visible {
    outline: 3px solid var(--r2-accent);
    outline-offset: 3px;
}
.r2-btn--outline {
    background: transparent;
    border: 2px solid var(--r2-primary);
    color: var(--r2-primary);
    box-shadow: none;
}
.r2-btn--outline:hover {
    background: var(--r2-primary);
    color: var(--r2-white);
}
.r2-btn--secondary {
    background: var(--r2-text-secondary);
}
.r2-btn--secondary:hover {
    background: #475569;
}
.r2-btn--dark {
    background: var(--r2-text);
}
.r2-btn--dark:hover {
    background: #334155;
}
.r2-btn--block {
    width: 100%;
    text-align: center;
}
.r2-btn--sm {
    padding: 12px 30px;
    font-size: 0.95rem;
}

/* ── Form Inputs ── */
.r2-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--r2-border);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: var(--r2-font-body);
    color: var(--r2-text);
    transition: var(--r2-transition);
    outline: none;
}
.r2-input:focus {
    border-color: var(--r2-accent);
    box-shadow: 0 0 0 3px rgba(35, 203, 167, 0.15);
}
.r2-input--error {
    border-color: var(--r2-error) !important;
    background: var(--r2-error-bg) !important;
}
.r2-label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* ── Badge ── */
.r2-badge {
    background: var(--r2-accent-light);
    color: var(--r2-primary);
    padding: 8px 16px;
    border-radius: var(--r2-radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ── Pulse Dot ── */
.r2-pulse {
    width: 10px; height: 10px;
    background: var(--r2-accent);
    border-radius: 50%;
    animation: r2-pulse 2s infinite;
}
@keyframes r2-pulse {
    0%  { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(35, 203, 167, 0.7); }
    70% { transform: scale(1);    box-shadow: 0 0 0 10px rgba(35, 203, 167, 0); }
    100%{ transform: scale(0.95); box-shadow: 0 0 0 0 rgba(35, 203, 167, 0); }
}

/* ── Fade In Animation ── */
@keyframes r2-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Smooth Scroll ── */
html { scroll-behavior: smooth; }

/* ── Scroll Reveal ── */
.r2-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.r2-reveal.r2-visible {
    opacity: 1;
    transform: translateY(0);
}
.r2-reveal--delay-1 { transition-delay: 0.1s; }
.r2-reveal--delay-2 { transition-delay: 0.2s; }
.r2-reveal--delay-3 { transition-delay: 0.3s; }

/* Disable reveal delays on mobile for snappier feel */
@media (max-width: 768px) {
    .r2-reveal--delay-1,
    .r2-reveal--delay-2,
    .r2-reveal--delay-3 { transition-delay: 0s; }
}

/* ── Image Shimmer Placeholder ── */
img[loading="lazy"] {
    background: linear-gradient(90deg, var(--r2-border-light) 25%, var(--r2-border) 50%, var(--r2-border-light) 75%);
    background-size: 200% 100%;
    animation: r2Shimmer 1.5s infinite;
}
img[loading="lazy"][src] {
    animation: none;
    background: none;
}
@keyframes r2Shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Insight Card Hover Gradient Border ── */
.r2-insight-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent 60%, var(--r2-accent) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.r2-insight-card:hover::before { opacity: 1; }

/* ── Focus States (global) ── */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--r2-accent);
    outline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════════
   PAGE: CONTACT
   ════════════════════════════════════════════════════════════════ */
.r2-contact-hero-light {
    position: relative;
    background: var(--r2-bg);
    padding: 160px 5% 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    margin-top: -200px;
}
.r2-contact-hero-light::before {
    content: "";
    position: absolute;
    top: 10%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(35, 203, 167, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}
.r2-contact-hero-light::after {
    content: "";
    position: absolute;
    bottom: 10%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(53, 114, 213, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}
.r2-contact-container {
    width: 100%;
    max-width: 900px;
    position: relative;
    z-index: 10;
}
.r2-page-title-top {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    align-self: flex-start;
    padding-left: 5%;
    font-family: var(--r2-font-display);
}
.r2-glass-card-light {
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border: 1px solid var(--r2-glass-border);
    border-radius: var(--r2-radius-lg);
    padding: 60px;
    box-shadow: var(--r2-shadow-md);
    margin-bottom: 30px;
}
.r2-glass-card-light h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    font-family: var(--r2-font-display);
}
.r2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.r2-input-light-group label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}
.r2-input-light {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--r2-border);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--r2-transition);
    outline: none;
}
.r2-input-light:focus {
    border-color: var(--r2-accent);
    box-shadow: 0 0 0 3px rgba(35, 203, 167, 0.15);
}
.r2-textarea--noresize { resize: none; }
.r2-btn-send {
    width: 100%;
    background: var(--r2-primary);
    color: var(--r2-white);
    border: none;
    padding: 18px;
    border-radius: var(--r2-radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--r2-transition);
    box-shadow: 0 4px 15px rgba(21, 122, 122, 0.15);
}
.r2-btn-send:hover {
    background: var(--r2-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 122, 122, 0.25);
}

/* Email Bottom Card */
.r2-email-footer-card {
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border: 1px solid var(--r2-glass-border);
    border-radius: 30px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--r2-shadow-sm);
}
.r2-footer-icon {
    width: 70px; height: 70px;
    background: var(--r2-accent);
    border-radius: 15px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 2rem; color: var(--r2-white);
    flex-shrink: 0;
}
.r2-email-info h3 { font-size: 1.5rem; color: #000; margin-bottom: 5px; font-family: var(--r2-font-display); }
.r2-email-info h3 span { color: var(--r2-primary); }
.r2-email-info h3 a { color: var(--r2-primary); text-decoration: none; }
.r2-email-info h3 a:hover { color: var(--r2-accent); }
.r2-email-info p { color: var(--r2-text-secondary); margin: 0; }

/* ════════════════════════════════════════════════════════════════
   PAGE: ABOUT
   ════════════════════════════════════════════════════════════════ */
.r2-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.r2-about-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    font-family: var(--r2-font-display);
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.r2-about-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--r2-text-secondary);
    margin-bottom: 18px;
    font-family: var(--r2-font-body);
}
.r2-about-media-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.r2-promo-card {
    position: relative;
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border-radius: var(--r2-radius-lg);
    border: 1px solid var(--r2-glass-border);
    padding: 20px;
    box-shadow: var(--r2-shadow-lg);
    transition: var(--r2-transition-slow);
    overflow: hidden;
}
.r2-promo-card:hover { transform: translateY(-10px); box-shadow: var(--r2-shadow-hover); }
.r2-promo-card img { width: 100%; border-radius: 30px; display: block; filter: brightness(0.95); transition: var(--r2-transition-slow); }
.r2-promo-card:hover img { filter: brightness(1.05); }

.r2-cta-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 25px;
    border-radius: var(--r2-radius-md);
    text-align: center;
    border: 1px solid rgba(35, 203, 167, 0.3);
}
.r2-cta-overlay h4 {
    margin: 0 0 15px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    font-family: var(--r2-font-display);
}

/* ── Partners Section ── */
.r2-partners {
    max-width: 1200px;
    margin: 50px auto 0;
    text-align: center;
    position: relative;
    z-index: 10;
    padding-top: 40px;
    border-top: 1px solid var(--r2-border);
}
.r2-partners-title {
    font-family: var(--r2-font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}
.r2-partners-subtitle {
    font-family: var(--r2-font-body);
    font-size: 0.95rem;
    color: var(--r2-text-secondary);
    max-width: 580px;
    margin: 0 auto 35px;
    line-height: 1.7;
}
.r2-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
a.r2-partner-card {
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border: 1px solid var(--r2-glass-border);
    border-radius: var(--r2-radius-md);
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--r2-transition);
    box-shadow: var(--r2-shadow-sm);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.r2-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--r2-shadow-hover);
    border-color: rgba(35, 203, 167, 0.3);
}
.r2-partner-card img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: var(--r2-transition);
}
.r2-partner-card:hover img {
    filter: grayscale(0%) opacity(1);
}
.r2-partner-card span {
    font-family: var(--r2-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--r2-text-muted);
    transition: var(--r2-transition);
}
.r2-partner-card:hover span {
    color: var(--r2-primary);
}

/* ════════════════════════════════════════════════════════════════
   PAGE: TECHNOLOGY
   ════════════════════════════════════════════════════════════════ */
.r2-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
    gap: 40px;
    text-align: center;
}
.r2-tech-card {
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border: 1px solid var(--r2-glass-border);
    border-radius: var(--r2-radius-lg);
    padding: 60px;
    box-shadow: var(--r2-shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--r2-transition);
}
.r2-tech-card:hover { transform: translateY(-8px); box-shadow: var(--r2-shadow-hover); }
.r2-tech-card img { width: 100%; max-width: 320px; margin-bottom: 40px; }
.r2-tech-card h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    font-family: var(--r2-font-display);
}
.r2-tech-card p {
    color: var(--r2-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.15rem;
    max-width: 420px;
}
.r2-tech-card .r2-btn { margin-top: auto; }

/* Stats Row */
.r2-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}
.r2-stat-item {
    text-align: center;
    padding: 30px 16px;
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    border: 1px solid var(--r2-glass-border);
    border-radius: var(--r2-radius-sm);
    transition: var(--r2-transition);
}
.r2-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--r2-shadow-md);
}
.r2-stat-number {
    display: block;
    font-family: var(--r2-font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--r2-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.r2-stat-label {
    font-family: var(--r2-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--r2-text-secondary);
}

/* Tech CTA */
.r2-tech-cta {
    margin-top: 60px;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--r2-accent-surface) 0%, var(--r2-accent-light) 100%);
    border-radius: var(--r2-radius-md);
    border: 1px solid rgba(35, 203, 167, 0.2);
    position: relative;
    z-index: 10;
}
.r2-tech-cta h2 {
    font-family: var(--r2-font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
}
.r2-tech-cta p {
    font-family: var(--r2-font-body);
    font-size: 1.1rem;
    color: var(--r2-text-secondary);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .r2-stats-row { grid-template-columns: 1fr 1fr; gap: 16px; }
    .r2-stat-number { font-size: 1.8rem; }
    .r2-tech-cta h2 { font-size: 1.5rem; }
    .r2-tech-cta p { font-size: 1rem; }
}

/* ════════════════════════════════════════════════════════════════
   PAGE: SOLUTIONS (Wizard)
   ════════════════════════════════════════════════════════════════ */
.r2-wizard-card {
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border-radius: var(--r2-radius-lg);
    border: 1px solid var(--r2-glass-border);
    width: 100%;
    max-width: 1100px;
    padding: 50px;
    position: relative;
    z-index: 10;
    box-shadow: var(--r2-shadow-md);
}
.r2-wizard-header { display: flex; justify-content: flex-end; align-items: center; margin-bottom: 30px; }

.r2-progress-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.r2-step-info {
    padding-bottom: 12px;
    border-bottom: 4px solid var(--r2-border);
    color: var(--r2-text-muted);
    font-weight: 600;
    font-family: var(--r2-font-display);
    transition: var(--r2-transition);
    font-size: 0.95rem;
}
.r2-step-info.active { border-bottom-color: var(--r2-accent); color: #000; }

.r2-wizard-step { display: none; }
.r2-wizard-step.active { display: block; animation: r2-fadeIn 0.4s ease; }
.r2-wizard-step h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: var(--r2-font-display);
    color: #000;
}
.r2-wizard-step > p {
    color: var(--r2-text-secondary);
    font-size: 1rem;
    margin-bottom: 25px;
}

/* Step 1: Input Grid */
.r2-input-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 20px; }
.r2-input-box {
    background: var(--r2-white);
    border: 1px solid var(--r2-border);
    border-radius: 15px;
    padding: 15px;
    transition: var(--r2-transition);
    position: relative;
}
.r2-input-box.r2-input-error { border-color: var(--r2-error); background: var(--r2-error-bg); }

.r2-label-wrapper { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; position: relative; }
.r2-label-wrapper label { color: var(--r2-text-secondary); font-size: 0.75rem; font-weight: 700; white-space: nowrap; }

.r2-tooltip-icon {
    width: 14px; height: 14px;
    background: var(--r2-accent-light);
    color: var(--r2-primary);
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 10px;
    cursor: help;
    font-weight: 800;
    transition: 0.2s;
}
.r2-tooltip-icon:hover { background: var(--r2-primary); color: var(--r2-white); }
.r2-tooltip-content {
    position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%);
    width: 180px;
    background: var(--r2-white);
    border: 1px solid var(--r2-accent);
    border-radius: 10px;
    padding: 10px;
    font-size: 0.75rem;
    color: var(--r2-text);
    box-shadow: var(--r2-shadow-sm);
    opacity: 0; visibility: hidden;
    transition: var(--r2-transition);
    z-index: 100;
    font-weight: 400;
    text-align: left;
    pointer-events: none;
}
.r2-label-wrapper:hover .r2-tooltip-content { opacity: 1; visibility: visible; bottom: 150%; }
.r2-tooltip-content::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--r2-accent); }

.r2-input-box select {
    border: none; width: 100%; font-size: 1rem; font-weight: 700;
    outline: none; background: transparent; cursor: pointer; color: var(--r2-text);
}

/* Step 2: Comfort Grid */
.r2-comfort-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 20px; }
.r2-comfort-card {
    background: var(--r2-white);
    border: 2px solid transparent;
    border-radius: var(--r2-radius-md);
    padding: 30px 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--r2-transition);
}
.r2-comfort-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.r2-comfort-card.selected { border-color: var(--r2-accent); background: var(--r2-accent-surface); }
.r2-comfort-card img { height: 70px; margin-bottom: 15px; }
.r2-comfort-card h4 { font-size: 1.1rem; font-weight: 600; margin: 0; color: #000; font-family: var(--r2-font-display); }

/* Step 3: Result Card */
.r2-step3-card {
    background: var(--r2-accent-surface);
    padding: 40px;
    border-radius: 35px;
    border: 1px solid var(--r2-accent);
    text-align: center;
}
.r2-step3-card h4 {
    color: var(--r2-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--r2-font-display);
}
.r2-step3-card input[type="email"] {
    width: 100%; max-width: 400px;
    padding: 18px 25px; border-radius: 15px;
    border: 1px solid var(--r2-border);
    margin-bottom: 25px; font-size: 1.1rem;
    outline: none; background: var(--r2-white);
    box-sizing: border-box;
}
.r2-step3-card input[type="email"]:focus {
    border-color: var(--r2-accent);
    box-shadow: 0 0 0 3px rgba(35, 203, 167, 0.15);
}

/* Wizard Footer */
.r2-wizard-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 40px; }
.r2-back-btn {
    background: var(--r2-text-secondary);
    color: var(--r2-white);
    border: none;
    padding: 18px 45px;
    border-radius: var(--r2-radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--r2-transition);
    visibility: hidden;
    font-size: 1rem;
}
.r2-back-btn:hover { background: #475569; transform: translateY(-2px); }
.r2-next-btn {
    background: var(--r2-primary);
    color: var(--r2-white);
    border: none;
    padding: 18px 45px;
    border-radius: var(--r2-radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--r2-transition);
    box-shadow: 0 4px 15px rgba(21, 122, 122, 0.15);
}
.r2-next-btn:hover {
    background: var(--r2-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 122, 122, 0.25);
}
.r2-next-btn--wide { margin: 0; padding: 20px 70px; }

/* ════════════════════════════════════════════════════════════════
   PAGE: INSIGHTS
   ════════════════════════════════════════════════════════════════ */
.r2-insights-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; }
.r2-insights-header { text-align: center; margin-bottom: 80px; }
.r2-insights-header h1 { font-size: 3.5rem; font-weight: 800; color: #000; font-family: var(--r2-font-display); margin-bottom: 20px; }
.r2-insights-header p { font-size: 1.2rem; color: var(--r2-text-secondary); max-width: 700px; margin: 0 auto; font-family: var(--r2-font-body); }

.r2-insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.r2-insight-card {
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border-radius: var(--r2-radius-lg);
    border: 1px solid var(--r2-glass-border);
    overflow: hidden;
    box-shadow: var(--r2-shadow-md);
    transition: var(--r2-transition-slow);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.r2-insight-card:hover { transform: translateY(-12px); box-shadow: var(--r2-shadow-hover); border-color: rgba(35, 203, 167, 0.4); }

.r2-card-image { position: relative; width: 100%; height: 260px; overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.03); }
.r2-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--r2-transition-slow); }
.r2-insight-card:hover .r2-card-image img { transform: scale(1.05); }

.r2-card-meta {
    position: absolute; top: 20px; left: 20px;
    background: rgba(255, 255, 255, 0.96);
    padding: 8px 18px;
    border-radius: var(--r2-radius-pill);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--r2-primary);
    box-shadow: var(--r2-shadow-sm);
}
.r2-card-body { padding: 35px; flex-grow: 1; display: flex; flex-direction: column; }
.r2-card-body h2 { font-size: 1.6rem; font-weight: 800; color: #000; margin-bottom: 15px; font-family: var(--r2-font-display); line-height: 1.3; }
.r2-card-body p { font-size: 0.95rem; color: var(--r2-text-secondary); line-height: 1.7; margin-bottom: 25px; flex-grow: 1; }

.r2-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--r2-border-light); }
.r2-read-more { font-weight: 700; color: var(--r2-primary); display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.r2-author-info { font-size: 0.85rem; color: var(--r2-text-muted); font-weight: 600; }

/* Newsletter CTA */
.r2-newsletter-cta {
    margin-top: 80px;
    position: relative;
    z-index: 10;
}
.r2-newsletter-inner {
    background: linear-gradient(135deg, var(--r2-primary) 0%, var(--r2-primary-dark) 100%);
    border-radius: var(--r2-radius-md);
    padding: 50px 40px;
    text-align: center;
    color: var(--r2-white);
}
.r2-newsletter-inner h3 {
    font-family: var(--r2-font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--r2-white);
}
.r2-newsletter-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}
.r2-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}
.r2-newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--r2-radius-sm);
    background: rgba(255, 255, 255, 0.15);
    color: var(--r2-white);
    font-family: var(--r2-font-body);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--r2-transition);
}
.r2-newsletter-input::placeholder { color: rgba(255, 255, 255, 0.6); }
.r2-newsletter-input:focus {
    outline: none;
    border-color: var(--r2-accent);
    background: rgba(255, 255, 255, 0.25);
}
.r2-newsletter-cta .r2-btn {
    background: var(--r2-white);
    color: var(--r2-primary);
    flex-shrink: 0;
}
.r2-newsletter-cta .r2-btn:hover {
    background: var(--r2-accent-light);
    color: var(--r2-primary-dark);
}
@media (max-width: 768px) {
    .r2-newsletter-inner { padding: 36px 24px; }
    .r2-newsletter-inner h3 { font-size: 1.4rem; }
    .r2-newsletter-form { flex-direction: column; }
}

/* ════════════════════════════════════════════════════════════════
   PAGE: INSIGHT ARTICLE
   ════════════════════════════════════════════════════════════════ */
.r2-article-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 60px;
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border-radius: 50px;
    border: 1px solid var(--r2-glass-border);
    box-shadow: var(--r2-shadow-lg);
}
.r2-article-meta { color: var(--r2-primary); font-weight: 800; font-size: 0.95rem; display: block; margin-bottom: 8px; }
.r2-reading-time {
    display: inline-block;
    font-family: var(--r2-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--r2-text-secondary);
    background: var(--r2-accent-light);
    padding: 4px 14px;
    border-radius: var(--r2-radius-pill);
    margin-bottom: 20px;
}
.r2-article-container h1 { font-size: 3.5rem; font-weight: 800; color: #000; font-family: var(--r2-font-display); margin-bottom: 40px; line-height: 1.1; }
.r2-article-hero-img { width: 100%; border-radius: 30px; box-shadow: var(--r2-shadow-md); margin-bottom: 50px; }
.r2-article-content { font-size: 1.15rem; line-height: 1.9; color: #334155; font-family: var(--r2-font-body); }
.r2-article-content h2 { font-size: 2rem; font-weight: 800; color: #000; margin: 50px 0 25px; font-family: var(--r2-font-display); }
.r2-article-content p { margin-bottom: 30px; }
.r2-article-content strong { color: var(--r2-primary); font-weight: 700; }
.r2-article-footer { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--r2-border); display: flex; justify-content: center; }
.r2-return-btn {
    background: var(--r2-primary);
    color: var(--r2-white);
    text-decoration: none;
    padding: 18px 45px;
    border-radius: var(--r2-radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--r2-transition);
    box-shadow: 0 4px 15px rgba(21, 122, 122, 0.15);
}
.r2-return-btn:hover {
    background: var(--r2-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 122, 122, 0.25);
    color: var(--r2-white);
}

/* Share Bar */
.r2-share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--r2-border);
}
.r2-share-label {
    font-family: var(--r2-font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--r2-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.r2-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: var(--r2-transition);
    border: 1px solid var(--r2-border);
    color: var(--r2-text-secondary);
    background: var(--r2-white);
}
.r2-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--r2-shadow-sm);
}
.r2-share-x:hover { background: #000; color: #fff; border-color: #000; }
.r2-share-li:hover { background: #0077b5; color: #fff; border-color: #0077b5; }
.r2-share-email:hover { background: var(--r2-primary); color: #fff; border-color: var(--r2-primary); }

/* Related Articles */
.r2-related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--r2-border);
}
.r2-related-articles h3 {
    font-family: var(--r2-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
}
.r2-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.r2-related-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: var(--r2-border-light);
    border-radius: var(--r2-radius-sm);
    text-decoration: none;
    transition: var(--r2-transition);
    border: 1px solid transparent;
}
.r2-related-card:hover {
    border-color: var(--r2-accent);
    background: var(--r2-accent-surface);
    transform: translateY(-3px);
    box-shadow: var(--r2-shadow-sm);
}
.r2-related-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.r2-related-info { min-width: 0; }
.r2-related-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--r2-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.r2-related-info h4 {
    font-family: var(--r2-font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--r2-text);
    margin: 4px 0 0;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .r2-related-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   PAGE: LANDING (Home Hero)
   ════════════════════════════════════════════════════════════════ */
.r2-hero-section {
    position: relative;
    background: var(--r2-bg);
    min-height: 100vh;
    overflow: hidden;
    padding: 160px 5% 100px;
    margin-top: -200px;
    display: flex;
    align-items: center;
}
.r2-hero-section::before {
    content: "";
    position: absolute;
    top: 10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(35, 203, 167, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}
.r2-hero-section::after {
    content: "";
    position: absolute;
    bottom: 5%; left: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(53, 114, 213, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}
.r2-hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.r2-hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 10;
}
.r2-hero-text {
    flex: 1.1;
}
.r2-title-main {
    font-family: var(--r2-font-display);
    font-size: 3.8rem;
    font-weight: 800;
    color: #000;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.r2-subtitle {
    font-family: var(--r2-font-body);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--r2-text-secondary);
    margin-bottom: 35px;
    max-width: 540px;
}
.r2-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Hero Trust Line */
.r2-hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}
.r2-trust-avatars {
    display: flex;
}
.r2-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--r2-accent-light);
    border: 2px solid var(--r2-white);
    font-size: 1rem;
    margin-right: -10px;
}
.r2-avatar:last-child { margin-right: 0; }
.r2-trust-text {
    font-family: var(--r2-font-body);
    font-size: 0.9rem;
    color: var(--r2-text-secondary);
    margin-left: 8px;
}
.r2-trust-text strong { color: var(--r2-text); }
@media (max-width: 768px) {
    .r2-hero-trust { justify-content: center; margin-top: 20px; }
    .r2-trust-text { font-size: 0.82rem; }
}

/* Hub Form Card */
.r2-hub-glass-card {
    flex: 0.9;
    background: var(--r2-glass-bg);
    backdrop-filter: blur(var(--r2-glass-blur));
    -webkit-backdrop-filter: blur(var(--r2-glass-blur));
    border: 1px solid var(--r2-glass-border);
    border-radius: var(--r2-radius-lg);
    padding: 40px;
    box-shadow: var(--r2-shadow-lg);
}
.r2-hub-header {
    margin-bottom: 28px;
}
.r2-hub-title {
    font-family: var(--r2-font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}
.r2-hub-toggle {
    display: flex;
    gap: 8px;
}
.hub-toggle-btn {
    padding: 12px 24px;
    border-radius: var(--r2-radius-pill);
    border: 1px solid var(--r2-border);
    background: var(--r2-white);
    font-family: var(--r2-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--r2-text-secondary);
    cursor: pointer;
    transition: var(--r2-transition);
}
.hub-toggle-btn:hover {
    border-color: var(--r2-accent);
    color: var(--r2-primary);
}
.hub-toggle-btn.active {
    background: var(--r2-primary);
    border-color: var(--r2-primary);
    color: var(--r2-white);
}

.r2-hub-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.r2-field-group label {
    display: block;
    font-family: var(--r2-font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 8px;
}
.r2-input-wrapper {
    position: relative;
}
.r2-input-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--r2-border);
    border-radius: 15px;
    padding: 15px 45px 15px 20px;
    font-size: 1rem;
    font-family: var(--r2-font-body);
    color: var(--r2-text);
    transition: var(--r2-transition);
    outline: none;
}
.r2-input-wrapper input:focus {
    border-color: var(--r2-accent);
    box-shadow: 0 0 0 3px rgba(35, 203, 167, 0.15);
}
.r2-input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
}
.r2-btn-submit {
    background: var(--r2-primary);
    color: var(--r2-white);
    border: none;
    padding: 18px;
    border-radius: var(--r2-radius-sm);
    font-family: var(--r2-font-body);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--r2-transition);
    box-shadow: 0 4px 15px rgba(21, 122, 122, 0.15);
    margin-top: 6px;
}
.r2-btn-submit:hover {
    background: var(--r2-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 122, 122, 0.25);
}

/* Section Header (reusable) */
.r2-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.r2-section-header h2 {
    font-family: var(--r2-font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 14px;
}
.r2-section-header p {
    font-family: var(--r2-font-body);
    font-size: 1.15rem;
    color: var(--r2-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Strip */
.r2-features-strip {
    background: var(--r2-white);
    padding: 80px 5%;
    border-top: 1px solid var(--r2-border-light);
}
.r2-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.r2-feature-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--r2-radius-md);
    transition: var(--r2-transition);
}
.r2-feature-item:hover {
    background: var(--r2-accent-surface);
    transform: translateY(-4px);
}
.r2-feature-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
    display: block;
}
.r2-feature-item h3 {
    font-family: var(--r2-font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}
.r2-feature-item p {
    font-family: var(--r2-font-body);
    font-size: 0.95rem;
    color: var(--r2-text-secondary);
    line-height: 1.7;
}

/* How It Works */
.r2-how-it-works {
    background: var(--r2-border-light);
    padding: 100px 5%;
}
.r2-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.r2-step-card {
    background: var(--r2-white);
    border: 1px solid var(--r2-border);
    border-radius: var(--r2-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--r2-transition);
    position: relative;
}
.r2-step-card:hover {
    border-color: var(--r2-accent);
    transform: translateY(-6px);
    box-shadow: var(--r2-shadow-md);
}
.r2-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--r2-primary), var(--r2-accent));
    color: var(--r2-white);
    font-family: var(--r2-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.r2-step-card h3 {
    font-family: var(--r2-font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
}
.r2-step-card p {
    font-family: var(--r2-font-body);
    font-size: 0.95rem;
    color: var(--r2-text-secondary);
    line-height: 1.7;
}

/* Home Insights Preview */
.r2-home-insights {
    background: var(--r2-white);
    padding: 100px 5%;
}
.r2-home-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.r2-home-insight-card {
    text-decoration: none;
    border-radius: var(--r2-radius-md);
    overflow: hidden;
    border: 1px solid var(--r2-border);
    background: var(--r2-white);
    transition: var(--r2-transition);
}
.r2-home-insight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--r2-shadow-hover);
    border-color: rgba(35, 203, 167, 0.4);
}
.r2-home-insight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--r2-transition-slow);
}
.r2-home-insight-card:hover img { transform: scale(1.05); }
.r2-home-insight-body {
    padding: 24px;
}
.r2-home-insight-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--r2-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.r2-home-insight-body h3 {
    font-family: var(--r2-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--r2-text);
    margin-top: 8px;
    line-height: 1.3;
}
.r2-home-insights-more {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .r2-features-grid { grid-template-columns: 1fr; gap: 24px; }
    .r2-features-strip { padding: 60px 5%; }
    .r2-how-it-works { padding: 60px 5%; }
    .r2-steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .r2-section-header h2 { font-size: 2rem; }
    .r2-home-insights { padding: 60px 5%; }
    .r2-home-insights-grid { grid-template-columns: 1fr; gap: 20px; }
    .r2-home-insight-card img { height: 160px; }
}

/* ════════════════════════════════════════════════════════════════
   PAGE: 404
   ════════════════════════════════════════════════════════════════ */
.r2-404-card {
    text-align: center;
    max-width: 540px;
    position: relative;
    z-index: 10;
}
.r2-404-code {
    font-family: var(--r2-font-display);
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--r2-primary), var(--r2-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.r2-404-card h1 {
    font-family: var(--r2-font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}
.r2-404-card p {
    font-family: var(--r2-font-body);
    font-size: 1.1rem;
    color: var(--r2-text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
}
.r2-404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .r2-404-code { font-size: 5rem; }
    .r2-404-card h1 { font-size: 1.6rem; }
    .r2-404-card p { font-size: 1rem; }
    .r2-404-actions { flex-direction: column; }
    .r2-404-actions .r2-btn { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   BREADCRUMBS
   ════════════════════════════════════════════════════════════════ */
.r2-breadcrumbs {
    background: var(--r2-border-light);
    border-bottom: 1px solid var(--r2-border);
    padding: 12px 5%;
    font-family: var(--r2-font-body);
    font-size: 0.85rem;
}
.r2-breadcrumbs-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.r2-breadcrumbs a {
    color: var(--r2-text-secondary);
    text-decoration: none;
    transition: var(--r2-transition);
}
.r2-breadcrumbs a:hover { color: var(--r2-primary); }
.r2-breadcrumbs span { color: var(--r2-text); }
.r2-breadcrumb-sep {
    color: var(--r2-text-muted);
    margin: 0 8px;
}

/* ════════════════════════════════════════════════════════════════
   READING PROGRESS BAR
   ════════════════════════════════════════════════════════════════ */
.r2-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--r2-primary), var(--r2-accent));
    z-index: 100001;
    transition: width 0.1s linear;
}

/* ════════════════════════════════════════════════════════════════
   PAGE LOADER BAR
   ════════════════════════════════════════════════════════════════ */
.r2-page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--r2-accent), var(--r2-primary));
    z-index: 99999;
    transition: none;
    pointer-events: none;
}
.r2-page-loader.r2-loading {
    width: 85%;
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.3, 1);
}

/* ════════════════════════════════════════════════════════════════
   DESKTOP HEADER
   ════════════════════════════════════════════════════════════════ */
.site-header {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-header.r2-header-scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06) !important;
    border-bottom-color: transparent !important;
}
.site-header .main-header-menu > li > a.menu-link {
    font-family: var(--r2-font-body) !important;
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    color: var(--r2-text) !important;
    letter-spacing: 0.01em;
    padding: 8px 18px !important;
    border-radius: var(--r2-radius-sm);
    transition: all 0.25s ease !important;
}
.site-header .main-header-menu > li > a.menu-link:hover {
    color: var(--r2-primary) !important;
    background: var(--r2-accent-surface) !important;
}
.site-header .main-header-menu > li.current-menu-item > a.menu-link {
    color: var(--r2-primary) !important;
    font-weight: 700 !important;
}

/* ── Scroll to Top ── */
#ast-scroll-top {
    background: var(--r2-primary) !important;
    color: var(--r2-white) !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    box-shadow: 0 4px 20px rgba(21, 122, 122, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}
#ast-scroll-top:hover {
    background: var(--r2-primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(21, 122, 122, 0.4) !important;
}

/* ── Desktop Language Dropdown ── */
.site-header .sub-menu {
    background: var(--r2-white) !important;
    border: 1px solid var(--r2-border) !important;
    border-radius: var(--r2-radius-sm) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    animation: r2-dropIn 0.2s ease !important;
}
@keyframes r2-dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.site-header .sub-menu li a {
    font-family: var(--r2-font-body) !important;
    font-size: 0.9rem !important;
    padding: 10px 18px !important;
    transition: background 0.2s ease !important;
}
.site-header .sub-menu li a:hover {
    background: var(--r2-accent-surface) !important;
}

/* ════════════════════════════════════════════════════════════════
   MOBILE HEADER
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 921px) {
    /* Ensure header + dropdown stay above page content */
    .site-header, #masthead { position: relative; z-index: 999 !important; }
    .ast-mobile-header-wrap { z-index: 999 !important; }
    .ast-mobile-header-content { z-index: 998 !important; }
    #ast-mobile-header .custom-logo { max-width: 160px !important; height: auto !important; }
    #ast-mobile-header .ast-builder-grid-row { max-width: 100% !important; }
    .ast-primary-header-bar, .site-primary-header-wrap { padding-left: 12px !important; padding-right: 12px !important; }
    /* ── Mobile Menu Styling ── */
    .ast-mobile-header-content {
        background: var(--r2-white) !important;
        border-top: 1px solid var(--r2-border) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
        padding: 12px 20px 20px !important;
    }
    .ast-mobile-header-content .main-header-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }
    .ast-mobile-header-content .main-header-menu li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .ast-mobile-header-content .main-header-menu li a.menu-link {
        display: block !important;
        padding: 14px 18px !important;
        font-family: var(--r2-font-display) !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: var(--r2-text) !important;
        text-decoration: none !important;
        border-radius: var(--r2-radius-sm) !important;
        transition: all 0.2s ease !important;
    }
    .ast-mobile-header-content .main-header-menu li a.menu-link:hover,
    .ast-mobile-header-content .main-header-menu li.current-menu-item a.menu-link {
        background: var(--r2-accent-surface) !important;
        color: var(--r2-primary) !important;
    }
    .ast-mobile-header-content .main-header-menu li.current-menu-item a.menu-link {
        border-left: 3px solid var(--r2-accent) !important;
    }
    /* Language dropdown inline */
    .ast-mobile-popup-content .pll-parent-menu-item > .sub-menu,
    .ast-mobile-popup-content #menu-item-33 > .sub-menu,
    .ast-mobile-header-content .pll-parent-menu-item > .sub-menu,
    .ast-mobile-header-content #menu-item-33 > .sub-menu {
        position: static !important; transform: none !important; width: 100% !important; box-shadow: none !important;
    }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (768px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Global touch targets */
    button, .r2-btn, .r2-btn--outline, a.r2-btn, input[type="submit"] { min-height: 44px; }
    select { min-height: 44px; font-size: 16px !important; }
    input[type="text"], input[type="email"], textarea { font-size: 16px !important; }

    /* Sections */
    .r2-section { padding: 100px 4% 60px; margin-top: -100px; }
    .r2-section--center { padding: 80px 4% 60px; }
    .r2-section--flush { padding-top: 20px; margin-top: -40px; }

    /* Glass Card */
    .r2-glass-card { padding: 28px 20px; border-radius: var(--r2-radius-md); }
    .r2-glass-card--article { padding: 22px 16px; border-radius: var(--r2-radius-md); }

    /* Typography */
    .r2-heading--xl { font-size: 2.2rem; }
    .r2-heading--lg { font-size: 2rem; }
    .r2-heading--md { font-size: 1.5rem; }
    .r2-heading--sm { font-size: 1.4rem; }
    .r2-text { font-size: 1rem; }

    /* Contact */
    .r2-contact-hero-light { padding: 100px 4% 60px; }
    .r2-page-title-top { font-size: 1.8rem; padding-left: 0; text-align: center; }
    .r2-glass-card-light { padding: 28px 20px; border-radius: var(--r2-radius-md); }
    .r2-glass-card-light h2 { font-size: 1.6rem; margin-bottom: 24px; }
    .r2-form-row { grid-template-columns: 1fr; }
    .r2-input-light { padding: 14px 16px; font-size: 0.95rem; border-radius: var(--r2-radius-sm); }
    .r2-btn-send { padding: 16px; font-size: 1rem; }
    .r2-email-footer-card { flex-direction: column; text-align: center; padding: 24px 20px; border-radius: 20px; }
    .r2-footer-icon { width: 56px; height: 56px; font-size: 1.5rem; }
    .r2-email-info h3 { font-size: 1.2rem; }

    /* About */
    .r2-about-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .r2-about-content h1 { font-size: 2.2rem; }
    .r2-about-content p { font-size: 1rem; }
    .r2-promo-card { border-radius: var(--r2-radius-md); padding: 12px; }
    .r2-promo-card img { border-radius: 18px; }
    .r2-cta-overlay { bottom: 24px; width: 90%; padding: 18px; border-radius: 18px; }
    .r2-cta-overlay h4 { font-size: 1.1rem; margin-bottom: 10px; }

    /* Partners */
    .r2-partners { margin-top: 40px; padding-top: 30px; }
    .r2-partners-title { font-size: 1.3rem; }
    .r2-partners-subtitle { font-size: 0.88rem; margin-bottom: 24px; }
    .r2-partners-grid { grid-template-columns: 1fr; gap: 10px; }
    a.r2-partner-card {
        flex-direction: row !important;
        padding: 16px 20px !important;
        border-radius: 16px !important;
        gap: 16px !important;
    }
    .r2-partner-card img {
        height: 28px !important;
        max-width: 120px !important;
        filter: grayscale(0%) opacity(0.75) !important;
        flex-shrink: 0;
    }
    .r2-partner-card span {
        font-size: 0.82rem !important;
        text-align: left;
        color: var(--r2-text-secondary) !important;
    }

    /* Technology */
    .r2-tech-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .r2-tech-card { padding: 30px 20px !important; border-radius: var(--r2-radius-md) !important; }
    .r2-tech-card h2 { font-size: 1.5rem !important; }
    .r2-tech-card p { font-size: 1rem !important; }
    .r2-tech-card .r2-btn { padding: 16px 35px !important; font-size: 1rem !important; width: 100%; }
    .r2-tech-card img { max-width: 240px !important; margin-bottom: 24px !important; }

    /* Solutions Wizard */
    .r2-wizard-card { padding: 24px 18px; border-radius: var(--r2-radius-md); }
    .r2-wizard-header { margin-bottom: 16px; }
    .r2-progress-steps { grid-template-columns: 1fr; gap: 8px; margin-bottom: 24px; }
    .r2-step-info { font-size: 0.82rem; padding-bottom: 8px; border-bottom-width: 3px; }
    .r2-input-grid-6 { grid-template-columns: 1fr 1fr; gap: 10px; }
    .r2-input-box { padding: 12px; border-radius: var(--r2-radius-sm); }
    .r2-input-box select { font-size: 0.9rem; }
    .r2-label-wrapper label { font-size: 0.7rem; }
    .r2-comfort-grid { grid-template-columns: 1fr; gap: 14px; }
    .r2-comfort-card { padding: 20px 12px; border-radius: 18px; }
    .r2-comfort-card img { height: 50px; }
    .r2-wizard-footer { flex-direction: column; gap: 12px; }
    .r2-back-btn, .r2-next-btn { width: 100%; padding: 16px; text-align: center; }
    .r2-step3-card { padding: 24px 16px; border-radius: var(--r2-radius-md); }
    .r2-step3-card h4 { font-size: 1.3rem; }
    .r2-badge { font-size: 0.8rem; padding: 6px 12px; }

    /* Insights */
    .r2-insights-header { margin-bottom: 40px; }
    .r2-insights-header h1 { font-size: 2.2rem; }
    .r2-insights-header p { font-size: 1rem; }
    .r2-insights-grid { gap: 24px; }
    .r2-insight-card { border-radius: var(--r2-radius-md); }
    .r2-card-image { height: 200px; }
    .r2-card-body { padding: 22px 18px; }
    .r2-card-body h2 { font-size: 1.3rem; margin-bottom: 10px; }
    .r2-card-body p { font-size: 0.9rem; margin-bottom: 16px; }

    /* Insight Articles */
    .r2-article-container { padding: 22px 16px; border-radius: var(--r2-radius-md); }
    .r2-article-container h1 { font-size: 1.8rem; margin-bottom: 24px; }
    .r2-article-hero-img { border-radius: 18px; margin-bottom: 30px; }
    .r2-article-content { font-size: 1rem; }
    .r2-article-content h2 { font-size: 1.4rem; margin: 30px 0 16px; }
    .r2-article-footer { margin-top: 36px; padding-top: 24px; }
    .r2-return-btn { padding: 14px 30px; font-size: 1rem; width: 100%; text-align: center; display: block; }

    /* Landing Hero */
    .r2-hero-section { padding: 80px 5% 60px !important; margin-top: 0 !important; }
    .r2-hero-flex { flex-direction: column !important; gap: 30px !important; }
    .r2-hero-text { text-align: center; }
    .r2-title-main { font-size: 2rem !important; line-height: 1.2 !important; }
    .r2-subtitle { font-size: 1rem !important; }
    .r2-hero-actions { justify-content: center !important; flex-wrap: wrap; gap: 12px !important; }
    .r2-hero-actions .r2-btn,
    .r2-hero-actions .r2-btn--outline { padding: 14px 28px !important; font-size: 0.95rem !important; width: 100%; text-align: center; }
    .r2-hub-glass-card { padding: 24px 18px !important; border-radius: var(--r2-radius-md) !important; width: 100% !important; max-width: 100% !important; }
    .r2-hub-title { font-size: 1.4rem !important; }
    .r2-hub-toggle { flex-wrap: wrap; }
    .hub-toggle-btn { font-size: 0.85rem !important; padding: 10px 16px !important; }
    .r2-field-group label { font-size: 0.85rem !important; }
    .r2-input-wrapper input { font-size: 0.95rem !important; padding: 12px 14px !important; }
    .r2-btn-submit { width: 100% !important; padding: 16px !important; font-size: 1rem !important; }
}

@media (max-width: 900px) {
    .r2-insights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .r2-about-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .r2-about-content h1 { font-size: 2.8rem; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (420px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
    .r2-title-main { font-size: 1.7rem !important; }
    .r2-hub-glass-card { padding: 18px 14px !important; }
    .r2-about-content h1 { font-size: 1.8rem; }
    .r2-cta-overlay { position: relative; bottom: auto; left: auto; transform: none; width: 100%; margin-top: -20px; border-radius: 0 0 18px 18px; }
    .r2-wizard-card { padding: 18px 14px; }
    .r2-input-grid-6 { grid-template-columns: 1fr; }
    .r2-comfort-card h4 { font-size: 0.95rem; }
    .r2-partner-card img { height: 24px !important; max-width: 100px !important; }
    .r2-partner-card span { font-size: 0.75rem !important; }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.r2-footer {
    background: var(--r2-text);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--r2-font-body);
    padding: 60px 5% 40px;
}
.r2-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.r2-footer-brand {
    text-align: center;
}
.r2-footer-logo {
    font-family: var(--r2-font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--r2-white);
    display: block;
    margin-bottom: 8px;
}
.r2-footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}
.r2-footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.r2-footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--r2-transition);
}
.r2-footer-nav a:hover {
    color: var(--r2-accent);
}
.r2-footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.r2-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--r2-transition);
}
.r2-social-icon:hover {
    background: var(--r2-accent);
    border-color: var(--r2-accent);
    color: var(--r2-white);
    transform: translateY(-3px);
}
.r2-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}
.r2-footer-bottom a {
    color: var(--r2-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--r2-transition);
}
.r2-footer-bottom a:hover {
    color: var(--r2-white);
}

@media (max-width: 768px) {
    .r2-footer { padding: 40px 5% 30px; }
    .r2-footer-nav { gap: 18px; }
    .r2-footer-nav a { font-size: 0.85rem; }
    .r2-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ════════════════════════════════════════════════════════════════ */
/* Skip-to-content link */
.r2-skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 100000;
    padding: 12px 24px;
    background: var(--r2-primary);
    color: var(--r2-white);
    font-family: var(--r2-font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--r2-radius);
    text-decoration: none;
    transition: top 0.2s ease;
}
.r2-skip-link:focus {
    top: 12px;
    outline: 3px solid var(--r2-accent);
    outline-offset: 2px;
}

/* Focus-visible outlines for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--r2-accent);
    outline-offset: 2px;
}
.r2-btn:focus-visible,
.r2-btn--outline:focus-visible,
.r2-next-btn:focus-visible,
.r2-back-btn:focus-visible,
.hub-toggle-btn:focus-visible {
    outline: 3px solid var(--r2-accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(0, 184, 212, 0.15);
}

/* Smooth scroll + sticky header offset */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .r2-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   FORM VALIDATION STATES
   ════════════════════════════════════════════════════════════════ */
.r2-input-light:focus,
.r2-input-light textarea:focus {
    border-color: var(--r2-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}
.r2-input-light:user-invalid {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
.r2-input-light:user-valid:not(:placeholder-shown) {
    border-color: #38a169;
}
.r2-btn-send {
    position: relative;
    overflow: hidden;
}
.r2-btn-send:active {
    transform: scale(0.97);
}

/* ════════════════════════════════════════════════════════════════
   CONTACT FORM FEEDBACK
   ════════════════════════════════════════════════════════════════ */
.r2-form-feedback {
    text-align: center;
    padding: 40px 24px;
}
.r2-feedback-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.r2-form-feedback--success .r2-feedback-icon {
    background: var(--r2-accent-light);
    color: var(--r2-primary);
}
.r2-form-feedback--error .r2-feedback-icon {
    background: var(--r2-error-bg);
    color: var(--r2-error);
}
.r2-form-feedback h3 {
    font-family: var(--r2-font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}
.r2-form-feedback p {
    font-family: var(--r2-font-body);
    font-size: 1rem;
    color: var(--r2-text-secondary);
}
.r2-form-feedback a { color: var(--r2-primary); }
.r2-btn-send:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════════════════════════ */
.r2-faq {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}
.r2-faq-title {
    font-family: var(--r2-font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 32px;
}
.r2-faq-item {
    border: 1px solid var(--r2-border);
    border-radius: var(--r2-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--r2-transition);
}
.r2-faq-item:hover { border-color: var(--r2-accent); }
.r2-faq-question {
    width: 100%;
    background: var(--r2-white);
    border: none;
    padding: 20px 24px;
    font-family: var(--r2-font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--r2-text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--r2-transition);
}
.r2-faq-question:hover { background: var(--r2-border-light); }
.r2-faq-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.r2-faq-item.active .r2-faq-arrow { transform: rotate(180deg); }
.r2-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.r2-faq-item.active .r2-faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}
.r2-faq-answer p {
    font-family: var(--r2-font-body);
    font-size: 0.95rem;
    color: var(--r2-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ════════════════════════════════════════════════════════════════ */
.r2-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background: var(--r2-text);
    color: rgba(255, 255, 255, 0.85);
    padding: 20px 5%;
    font-family: var(--r2-font-body);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: r2SlideUp 0.4s ease;
}
@keyframes r2SlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.r2-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.r2-cookie-inner p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}
.r2-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.r2-cookie-dismiss {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: var(--r2-radius-sm);
    font-family: var(--r2-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--r2-transition);
}
.r2-cookie-dismiss:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--r2-white);
}
@media (max-width: 768px) {
    .r2-cookie-inner { flex-direction: column; text-align: center; }
    .r2-cookie-actions { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════
   ABOUT PAGE STATS
   ════════════════════════════════════════════════════════════════ */
.r2-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 50px 0;
    position: relative;
    z-index: 10;
}
.r2-about-stat {
    text-align: center;
    padding: 28px 16px;
    background: var(--r2-accent-surface);
    border: 1px solid rgba(35, 203, 167, 0.15);
    border-radius: var(--r2-radius-sm);
    transition: var(--r2-transition);
}
.r2-about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--r2-shadow-md);
    border-color: var(--r2-accent);
}
.r2-about-stat .r2-stat-number {
    display: block;
    font-family: var(--r2-font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--r2-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.r2-about-stat .r2-stat-label {
    font-family: var(--r2-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--r2-text-secondary);
}
@media (max-width: 768px) {
    .r2-about-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
    .r2-about-stat .r2-stat-number { font-size: 1.8rem; }
}

/* ════════════════════════════════════════════════════════════════
   PRINT STYLES
   ════════════════════════════════════════════════════════════════ */
@media print {
    .site-header,
    .r2-footer,
    .r2-page-loader,
    .r2-skip-link,
    #ast-scroll-top,
    .r2-hero-bg-overlay,
    .r2-btn,
    .r2-btn--outline,
    .r2-wizard-footer,
    nav { display: none !important; }

    body, .content-area, .site-main, .r2-section {
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        color: #000 !important;
    }
    h1, h2, h3, h4 { color: #000 !important; page-break-after: avoid; }
    img { max-width: 100% !important; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
    .r2-highlight { color: #000 !important; -webkit-text-fill-color: #000 !important; }
}
