:root {
    /* Updated 2025 "Clean Tech" Palette */
    --bg-white: #FFFFFF;
    --bg-clinical-gray: #F5F7FA;
    --text-primary: #1D1D1F;
    --text-secondary: #6E6E73;
    --brand-blue: #007AFF;
    --brand-blue-glow: rgba(0, 122, 255, 0.15);
    --border-light: rgba(0, 0, 0, 0.08);
    --success-green: #28CD41;
    --error-red: #FF3B30;

    /* Modern Typography per PRD */
    --font-en: "Inter", -apple-system, system-ui, sans-serif;
    --font-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    --font-zh: "PingFang SC", "Microsoft YaHei", sans-serif;

    --container-max-width: 1200px;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-white);
    color: var(--text-primary);
    font-family: var(--font-en);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Language-specific font adjustments */
body[lang="ja"] {
    font-family: var(--font-jp);
    line-height: 1.7;
}

body[lang="zh"] {
    font-family: var(--font-zh);
    line-height: 1.7;
}

/* Clinical Light Mode Aesthetic */
.section {
    padding: 8rem 0;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
}

/* Nav Redesign */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    gap: 2rem;
    /* Increased for 64px logo */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-family: var(--font-en);
}

.brand-blue {
    color: var(--brand-blue);
}

.brand-dark {
    color: var(--text-primary);
}

.logo-icon-crop {
    width: 52px;
    height: 32px;
    /* Fixed window for the icon */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 120px;
    /* Scaled up to push text out of the 32px container */
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

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

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    padding-bottom: 0.5rem;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 200px;
    z-index: 1001;
    border-radius: 12px;
    overflow: hidden;
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
}

.dropdown-content a {
    color: var(--text-secondary);
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--bg-clinical-gray);
    color: var(--brand-blue);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-cta-container {
    min-width: 120px;
    display: flex;
    justify-content: flex-end;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 1.6rem;
    border-radius: 980px;
    /* Apple-style pill */
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--brand-blue);
    color: #FFFFFF !important;
    /* Pure white with high specificity */
    font-weight: 700;
    /* Bold for contrast */
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px var(--brand-blue-glow);
}

.btn-outline {
    border: 1.5px solid var(--brand-blue);
    color: var(--brand-blue);
}

/* Glass & Cards */
.clean-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.clean-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Volumetric Haze Background */
.hero-haze {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Regulatory Footer */
footer {
    padding: 6rem 0 3rem;
    background: var(--bg-clinical-gray);
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

footer a {
    color: #4a4a4f;
}

footer a:hover {
    color: var(--brand-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* i18n Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

/* Removed .flag-icon */

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-clinical-gray);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.lang-globe-icon {
    opacity: 0.8;
}

.lang-current-code {
    letter-spacing: 0.5px;
}

.lang-dropdown-btn:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.lang-dropdown-arrow {
    transition: transform 0.2s ease;
}

.lang-dropdown.active .lang-dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1002;
}

.lang-dropdown.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    position: relative;
}

.lang-option:hover {
    background: var(--bg-clinical-gray);
    color: var(--brand-blue);
}

.lang-option.active {
    color: var(--brand-blue);
    font-weight: 600;
    padding-left: 1.8rem;
    /* Make room for the dot */
}

/* Beautiful active dot indicator */
.lang-option.active::before {
    content: '';
    position: absolute;
    left: 0.8rem;
    width: 6px;
    height: 6px;
    background-color: var(--brand-blue);
    border-radius: 50%;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablet and below (< 1024px) */
@media (max-width: 1023px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -50vw;
        /* Hidden right 50% */
        width: 50vw;
        /* Half-width exactly 50% */
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 0 2rem;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
    }

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

    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links .btn {
        margin: 1.5rem 2rem;
        width: calc(100% - 4rem);
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: block;
        flex-shrink: 0;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        padding: 1rem 2rem;
        width: 100%;
        display: block;
        border-bottom: 1px solid var(--border-light);
    }

    .dropdown-content {
        position: static;
        display: none;
        background: var(--bg-clinical-gray);
        width: 100%;
        padding: 0;
        margin-top: 0;
        border-radius: 0;
    }

    .dropdown-content a {
        padding-left: 3rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown.active .dropdown-content {
        display: block;
    }



    .nav-cta-container {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}


/* Responsive Grid for Science Page */
.responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.responsive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}


/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    pointer-events: auto;
}

/* Mobile (< 768px) */
@media (max-width: 767px) {

    /* Hero centering on mobile */
    .hero {
        text-align: center;
    }

    .hero .container>div {
        margin: 0 auto;
    }

    .hero h1,
    .hero p {
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        /* Center the actions container */
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Stack header for Insights on mobile */
    .responsive-header {
        flex-direction: column;
        align-items: center !important;
        /* Force center alignment */
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .nav-content {
        height: 72px;
    }

    .logo-icon-crop {
        width: 42px;
        height: 26px;
    }

    .logo img {
        width: 100px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Fixed Header Alignment (Strict) */
    .nav-actions {
        gap: 0.5rem;
        flex-wrap: nowrap;
        white-space: nowrap;
        height: 100%;
        display: flex;
        align-items: center;
    }

    /* Language dropdown mobile styles */
    .lang-dropdown,
    .mobile-menu-toggle {
        height: 32px;
        /* Explicit matching height */
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .lang-dropdown-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .mobile-menu-toggle {
        width: 32px;
        /* Square target matching height */
        padding: 4px;
        /* Internal padding for hamburger lines */
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Small mobile (< 480px) */
@media (max-width: 479px) {
    /* Menu width handled by tablet rule (50vw), works fine */

    .logo-text {
        font-size: 1rem;
    }
}

/* Large desktop (> 1280px) */
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Ultra-wide (> 1536px) */
@media (min-width: 1536px) {
    .container {
        max-width: 1440px;
    }
}

/* ========================================
   ACCESSIBILITY & FOCUS STATES
   ======================================== */

*:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--brand-blue);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-to-main:focus {
    top: 0;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {

    nav,
    .mobile-menu-toggle,
    .lang-switcher,
    .nav-cta-container {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        padding: 1rem 0;
    }
}

/* ========================================
   SKELETON LOADERS - Slow Connection Support
   ======================================== */

@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
    border-radius: 4px;
}

.skeleton-title {
    height: 2em;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-image {
    width: 100%;
    height: 300px;
    border-radius: 16px;
}

.skeleton-card {
    padding: 2rem;
    border-radius: 16px;
    min-height: 200px;
}

/* Progressive Image Loading */
.progressive-image {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.progressive-image img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.progressive-image img.loaded {
    opacity: 1;
}

.progressive-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.progressive-image.loaded::before {
    display: none;
}

/* Loading Spinner */
.content-loading {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--brand-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   HERO CAROUSEL
   ======================================== */

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 0.25;
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    position: relative;
}

/* Expand touch target to 44px minimum without changing visual size */
.carousel-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.carousel-dot:hover {
    background: rgba(0, 122, 255, 0.4);
}

.carousel-dot.active {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    transform: scale(1.2);
}

/* Carousel Arrow Navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.carousel-arrow:hover {
    background: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
    box-shadow: 0 4px 12px var(--brand-blue-glow);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* Mobile Carousel Adjustments */
@media (max-width: 767px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-prev {
        left: 1rem;
    }

    .carousel-next {
        right: 1rem;
    }

    .carousel-dots {
        bottom: 1.5rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .hero-slide {
        background-position: center center;
    }
}

/* ─── Shared Pill Tag Buttons (Blog categories, Contact tabs) ─── */
.blog-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.category-tag {
    padding: 0.5rem 1.25rem;
    border-radius: 980px;
    border: 1.5px solid var(--border-light);
    background: white;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.category-tag:hover,
.category-tag.active {
    border-color: var(--brand-blue);
    background: var(--brand-blue-glow);
    color: var(--brand-blue);
}

/* ========================================
   RTL (Right-to-Left) SUPPORT (Arabic, etc.)
   ======================================== */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .lang-dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .lang-option.active {
    padding-left: 1rem;
    padding-right: 1.8rem;
}

[dir="rtl"] .lang-option.active::before {
    left: auto;
    right: 0.8rem;
}

[dir="rtl"] .hero-visual .dashboard-card {
    right: auto;
    left: -50vw;
}

@media (min-width: 1024px) {
    [dir="rtl"] .hero-visual .dashboard-card {
        right: auto;
        left: 0;
    }
}

[dir="rtl"] .tech-content {
    padding-left: 0;
    padding-right: 3rem;
}

[dir="rtl"] .footer {
    text-align: right;
}

/* Carousel RTL Adjustments */
[dir="rtl"] .carousel-arrow {
    transform: translateY(-50%) scaleX(-1);
}

[dir="rtl"] .carousel-prev {
    left: auto;
    right: 2rem;
}

[dir="rtl"] .carousel-next {
    right: auto;
    left: 2rem;
}

/* Mobile RTL Adjustments */
@media (max-width: 767px) {
    [dir="rtl"] .carousel-prev {
        left: auto;
        right: 1rem;
    }

    [dir="rtl"] .carousel-next {
        right: auto;
        left: 1rem;
    }
}

/* Tablet RTL Adjustments */
@media (max-width: 1024px) and (min-width: 768px) {
    [dir="rtl"] .carousel-prev {
        left: auto;
        right: 1.5rem;
    }

    [dir="rtl"] .carousel-next {
        right: auto;
        left: 1.5rem;
    }
}

/* Flip arrows in buttons */
[dir="rtl"] .btn-primary svg,
[dir="rtl"] .btn-ghost svg,
[dir="rtl"] .btn-primary-app svg,
[dir="rtl"] .btn-ghost-app svg,
[dir="rtl"] .btn-glass svg {
    transform: scaleX(-1);
}

/* ─── Comprehensive RTL (Arabic) ─── */
[dir="rtl"] .container {
    text-align: right;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .trust-heading {
    text-align: center;
}

[dir="rtl"] .cards-grid,
[dir="rtl"] .solutions-grid {
    direction: rtl;
}

[dir="rtl"] .card {
    text-align: right;
}

[dir="rtl"] .tab-btn {
    direction: rtl;
}

[dir="rtl"] .form-group label {
    text-align: right;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea,
[dir="rtl"] .form-group select {
    text-align: right;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .footer-bottom {
    flex-direction: row-reverse;
}

[dir="rtl"] ul,
[dir="rtl"] ol {
    padding-right: 1.5rem;
    padding-left: 0;
}

[dir="rtl"] .blog-card {
    text-align: right;
}

[dir="rtl"] .faq-question {
    text-align: right;
    flex-direction: row-reverse;
}

[dir="rtl"] .breadcrumb {
    direction: rtl;
}

/* ─── RTL: Contact Page ─── */
[dir="rtl"] .contact-grid {
    direction: rtl;
}

[dir="rtl"] .contact-intro {
    text-align: right;
}

[dir="rtl"] .contact-intro h2,
[dir="rtl"] .contact-intro h3,
[dir="rtl"] .contact-intro p {
    text-align: right;
}

[dir="rtl"] .feature-list li {
    text-align: right;
}

[dir="rtl"] .policy-card {
    text-align: right;
}

[dir="rtl"] .policy-card ul {
    padding-right: 1.25rem;
    padding-left: 0;
}

[dir="rtl"] .countries-tag {
    direction: rtl;
}

[dir="rtl"] .privacy-notice {
    text-align: right;
}

[dir="rtl"] .contact-hero {
    text-align: center;
}

[dir="rtl"] .blog-categories {
    direction: rtl;
}

[dir="rtl"] .category-tag {
    direction: rtl;
}

/* ─── RTL: Subnav & Tabs ─── */
[dir="rtl"] .apps-subnav .subnav-links,
[dir="rtl"] .subnav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .solution-header {
    text-align: right;
}

[dir="rtl"] .solution-header p {
    text-align: right;
}

/* ─── RTL: Comparison & CTA Sections ─── */
[dir="rtl"] .comparison-container {
    direction: rtl;
}

[dir="rtl"] .cta-section {
    text-align: center;
}