/* ============================================
   NO'TA Landing Page — Premium Redesign v2
   ============================================ */

@font-face {
    font-family: "Google Sans Flex";
    src: url("assets/fonts/GoogleSansFlex-Variable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Global Resets & Variables */
:root {
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-bg-light: #f5f5f5;

    --clr-primary: #7AF495;
    --clr-primary-dark: #10B121;
    --clr-primary-glow: rgba(122, 244, 149, 0.3);

    --clr-accent-pink: #ff0099;
    --clr-accent-purple: #A020F0;
    --clr-accent-cyan: #00E5FF;
    --clr-accent-green: #4ADE80;

    --clr-text-main: #000000;
    --clr-text-muted: #666666;

    --font-main: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --container-max: 1400px;
    --section-padding: 120px 20px;
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-light);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html[lang="ar"] body {
    font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.05em;
    /* Slightly bigger base font for Arabic */
}

html[lang="ar"] .hero-headline {
    line-height: 1.5;
    /* Even more line spacing */
    font-weight: 900;
    font-size: clamp(3.8rem, 8.5vw, 7.5rem);
    /* Slightly larger hero font for Arabic */
    text-shadow: 0 0 1px currentColor, 0 0 1px currentColor;
    /* Simulates extra thickness */
    -webkit-text-stroke: 1px currentColor;
    /* Additional thickness for browsers that support it */
}

html[lang="ar"] .tagline-word {
    font-size: clamp(18px, 3vw, 24px);
    /* Larger tagline for Arabic */
    font-weight: 900;
}

html[lang="ar"] .tagline-dot {
    font-size: 20px;
    /* Larger dots for Arabic */
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4 {
    font-weight: 900;
    /* Max weight for headings */
    letter-spacing: 0;
}

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

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

h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

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

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* ============================================
   Scroll Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.1);
}

.btn .arrow {
    margin-left: 10px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
}

.btn:hover .arrow {
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-black);
    box-shadow: 0 4px 20px var(--clr-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px var(--clr-primary-glow);
}

.btn-black {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.btn-black:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px 0;
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3);
}

.navbar .nav-logo,
.navbar .nav-link,
.navbar .nav-login {
    color: var(--clr-white);
    transition: color 0.4s ease;
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link,
.navbar.scrolled .nav-login,
.navbar.scrolled .menu-toggle span {
    color: var(--clr-white);
}

#lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    height: 44px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--clr-white);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    letter-spacing: 0.02em;
}

#lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--clr-primary);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(122, 244, 149, 0.2);
}

/* Green Highlight when Arabic is selected */
html[lang="ar"] #lang-toggle {
    background: var(--clr-primary);
    color: var(--clr-black);
    border-color: var(--clr-primary);
    box-shadow: 0 0 20px var(--clr-primary-glow);
}

html[lang="ar"] #lang-toggle:hover {
    background: #98FFB0;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 30px var(--clr-primary-glow);
}

/* Scrolled/Help Page Adjustments */
.navbar.scrolled #lang-toggle:not(html[lang="ar"] #lang-toggle),
body:not(.home) #lang-toggle:not(html[lang="ar"] #lang-toggle) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.nav-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo-text {
    font-weight: 900;
    letter-spacing: -0.04em;
}

.nav-logo-mark {
    position: relative;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
}

.nav-logo-mark::before {
    display: none;
}

.nav-logo-mark img {
    position: relative;
    width: 44px;
    height: 44px;
    display: block;
}

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

.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.chevron {
    transition: transform 0.3s ease;
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 240px;
    background-color: var(--clr-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 8px;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-inner {
    display: flex;
    flex-direction: column;
}

.dropdown-link {
    padding: 12px 16px;
    color: var(--clr-text-main);
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background-color: var(--clr-bg-light);
    color: var(--clr-primary-dark);
    padding-left: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login {
    font-weight: 600;
    font-size: 15px;
}

.menu-toggle {
    display: none;
    /* Hidden as there are no nav links in Landing Page 2 */
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--clr-white);
    transition: all 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

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

/* Animated gradient fallback */
.hero-animated-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #0a0a0a 0%,
            #0d1a12 25%,
            #0a1a2e 50%,
            #1a0a1a 75%,
            #0a0a0a 100%);
    background-size: 400% 400%;
    animation: heroGradient 15s ease infinite;
    z-index: -1;
}

@keyframes heroGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

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

    50% {
        background-position: 100% 100%;
    }

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* Hero particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--clr-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    10% {
        opacity: 0.6;
        transform: scale(1);
    }

    90% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0);
    }
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    color: var(--clr-white);
    z-index: 2;
    position: relative;
    margin-top: 40px;
}

.hero-headline {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    margin-bottom: 28px;
    font-weight: 900;
    text-shadow: 0 2px 60px rgba(0, 0, 0, 0.4);
}

.inline-icon-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(50px, 6vw, 80px);
    height: clamp(50px, 6vw, 80px);
    background-color: var(--clr-primary);
    color: var(--clr-black);
    border-radius: 50%;
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 400;
    box-shadow: 0 0 40px var(--clr-primary-glow), 0 0 80px rgba(122, 244, 149, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 40px var(--clr-primary-glow), 0 0 80px rgba(122, 244, 149, 0.15);
    }

    50% {
        box-shadow: 0 0 60px var(--clr-primary-glow), 0 0 120px rgba(122, 244, 149, 0.25);
    }
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 500;
    margin-bottom: 32px;
    opacity: 0.85;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ============================================
   Read · Reflect · Discuss — Hero Tagline
   ============================================ */
.tagline-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.tagline-word {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent-green), var(--clr-primary));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: taglineShimmer 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(8px);
}

.tagline-row.visible .tagline-word {
    animation: taglineWordIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        taglineShimmer 4s ease-in-out 0.6s infinite;
}

.tagline-row.visible .tagline-word:nth-child(1) {
    animation-delay: 0.1s, 0.7s;
}

.tagline-row.visible .tagline-word:nth-child(3) {
    animation-delay: 0.28s, 0.88s;
}

.tagline-row.visible .tagline-word:nth-child(5) {
    animation-delay: 0.46s, 1.06s;
}

.tagline-dot {
    font-size: 14px;
    color: rgba(122, 244, 149, 0.4);
    margin: 0 12px;
    opacity: 0;
    transform: scale(0);
}

.tagline-row.visible .tagline-dot {
    animation: taglineDotIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.tagline-row.visible .tagline-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.tagline-row.visible .tagline-dot:nth-child(4) {
    animation-delay: 0.38s;
}

@keyframes taglineWordIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes taglineDotIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes taglineShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}



/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background-color: var(--clr-bg-light);
    padding: var(--section-padding);
    text-align: center;
}

.stats-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.stats-headline {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    max-width: 900px;
    margin: 0 auto 80px;
}

.stats-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    perspective: 1000px;
}

.stats-card {
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    min-width: 280px;
    text-align: left;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.5s ease;
}

.stats-card:hover {
    transform: translateY(-8px);
}

.stats-card.card-green {
    background: linear-gradient(135deg, var(--clr-primary) 0%, #4ADE80 100%);
    z-index: 1;
    transform: translateY(-20px) translateX(20px) rotateZ(-1deg);
    box-shadow: 0 20px 40px rgba(122, 244, 149, 0.2);
}

.stats-card.card-green:hover {
    transform: translateY(-30px) translateX(20px) rotateZ(-1deg);
    box-shadow: 0 30px 60px rgba(122, 244, 149, 0.3);
}

.stats-card.card-light {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    z-index: 2;
    transform: translateX(-20px);
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.06);
}

.stats-card.card-accent {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--clr-white);
    z-index: 3;
    transform: translateY(10px) translateX(-10px) rotateZ(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.05em;
}

.stats-unit {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    display: inline;
    letter-spacing: -0.05em;
}

.stats-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.8;
}

.icon-indicator {
    width: 20px;
    height: 20px;
    background-color: var(--clr-accent-pink);
    border-radius: 50%;
    border: 3px solid var(--clr-white);
    position: absolute;
    top: 25px;
    right: 25px;
    box-shadow: 0 0 20px rgba(255, 0, 153, 0.4);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 153, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 0, 153, 0.7);
    }
}

/* ============================================
   Read · Reflect · Discuss — Pillars Section
   ============================================ */
.pillars-section {
    background-color: #030303 !important;
    background:
        radial-gradient(circle at 20% 30%, rgba(122, 244, 149, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(160, 32, 240, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, #030303 0%, #0a0a0f 50%, #030303 100%) !important;
    color: var(--clr-white) !important;
    padding: 160px 20px;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

/* Moving ambient light */
.pillars-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: ambientFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes ambientFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(5%, 5%) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.pillars-section .section-title {
    color: var(--clr-white);
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff 40%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.pillars-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 80px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.pillar-card {
    position: relative;
    padding: 56px 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pillar-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.pillar-card:hover .pillar-glow {
    opacity: 0.6;
    transform: translateX(-50%) translateY(20%);
}

.pillar-glow-green {
    background: radial-gradient(circle, rgba(122, 244, 149, 0.2) 0%, transparent 70%);
}

.pillar-glow-purple {
    background: radial-gradient(circle, rgba(160, 32, 240, 0.2) 0%, transparent 70%);
}

.pillar-glow-cyan {
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    background: rgba(122, 244, 149, 0.08);
    border: 1px solid rgba(122, 244, 149, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(122, 244, 149, 0.3);
}

.pillar-icon.icon-purple {
    color: var(--clr-accent-purple);
    background: rgba(160, 32, 240, 0.08);
    border-color: rgba(160, 32, 240, 0.15);
}

.pillar-card:hover .pillar-icon.icon-purple {
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.3);
}

.pillar-icon.icon-cyan {
    color: var(--clr-accent-cyan);
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.15);
}

.pillar-card:hover .pillar-icon.icon-cyan {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.pillar-label {
    font-size: 26px;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.pillar-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================
   Marquee / Ticker
   ============================================ */
.marquee-section {
    padding: 30px 0;
    background: var(--clr-black);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--clr-white);
    letter-spacing: -0.02em;
}

.marquee-dot {
    color: var(--clr-primary) !important;
    font-size: 12px !important;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   Value Props / Features Grid
   ============================================ */
.value-props {
    padding: var(--section-padding);
    padding-top: 140px;
    background: linear-gradient(180deg, var(--clr-bg-light) 0%, #fafafa 50%, rgba(122, 244, 149, 0.04) 100%);
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 60px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.prop-card {
    background: var(--clr-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: left;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.5s ease,
        border-color 0.3s ease;
}

.prop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(122, 244, 149, 0.3);
}

.prop-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(16, 177, 33, 0.15) 0%, rgba(122, 244, 149, 0.25) 100%);
    color: var(--clr-primary-dark);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.prop-card:hover .prop-icon {
    transform: scale(1.1);
}

.prop-icon.icon-purple {
    background: linear-gradient(135deg, rgba(160, 32, 240, 0.1) 0%, rgba(160, 32, 240, 0.2) 100%);
    color: var(--clr-accent-purple);
}

.prop-icon.icon-pink {
    background: linear-gradient(135deg, rgba(255, 0, 153, 0.1) 0%, rgba(255, 0, 153, 0.2) 100%);
    color: var(--clr-accent-pink);
}

.prop-icon.icon-cyan {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 229, 255, 0.2) 100%);
    color: var(--clr-accent-cyan);
}

.prop-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.prop-desc {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ============================================
   App Features — Premium Bento Grid
   ============================================ */
.app-features {
    padding: var(--section-padding);
    background: var(--clr-bg-light);
    position: relative;
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.bento-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--clr-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.4s ease,
        box-shadow 0.5s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(122, 244, 149, 0.3);
}

.bento-card-inner {
    padding: 44px 36px;
    text-align: center;
}

.bento-hero {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #111116 50%, #0a0a0a 100%);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--clr-white);
}

.bento-hero:hover {
    border-color: rgba(122, 244, 149, 0.2);
}

.bento-hero .bento-card-inner {
    padding: 60px 48px;
}

.bento-hero h3 {
    font-size: 28px;
    color: var(--clr-white);
}

.bento-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto;
}

.bento-wide {
    grid-column: 1 / -1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    transition: transform 0.3s ease;
}

.bento-card:hover .feature-icon {
    transform: scale(1.1);
}

.bento-hero .feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 229, 255, 0.1);
}

.feature-icon.icon-cyan {
    color: var(--clr-accent-cyan);
    background: rgba(0, 229, 255, 0.1);
}

.feature-icon.icon-pink {
    color: var(--clr-accent-pink);
    background: rgba(255, 0, 153, 0.1);
}

.feature-icon.icon-purple {
    color: var(--clr-accent-purple);
    background: rgba(160, 32, 240, 0.1);
}

.feature-icon.icon-green {
    color: var(--clr-primary-dark);
    background: rgba(122, 244, 149, 0.2);
}

.bento-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--clr-black);
}

.bento-card p {
    font-size: 15px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ============================================
   App Demo / 3D Phone Mockup
   ============================================ */
.app-demo {
    background: linear-gradient(180deg, #fafafa 0%, var(--clr-bg-light) 100%);
    padding: 140px 0;
    overflow: hidden;
    position: relative;
}

.app-demo-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.app-demo-content {
    flex: 1;
    max-width: 500px;
}

.app-demo-text {
    font-size: 20px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.app-demo-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

/* 3D Phone Wrapper */
.phone-3d-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(var(--rotateY, -8deg)) rotateX(var(--rotateX, 4deg));
    transition: transform 0.1s ease-out;
}

.phone-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    left: -10%;
    top: -10%;
    background: radial-gradient(ellipse at center,
            var(--clr-primary-glow) 0%,
            transparent 60%);
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.phone-mockup {
    width: 320px;
    position: relative;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.3));
}

.phone-bezel {
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 52px;
    padding: 14px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notch-camera {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #1a1a3e 0%, #000 70%);
    border-radius: 50%;
    border: 1.5px solid #333;
}

.phone-screen {
    width: 100%;
    height: 620px;
    background: #000;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

/* Auto-scrolling phone screenshots */
.phone-scroll-container {
    display: flex;
    flex-direction: column;
    animation: phoneScroll 12s ease-in-out infinite;
}

.phone-screenshot {
    width: 100%;
    flex-shrink: 0;
    display: block;
}

@keyframes phoneScroll {

    0%,
    15% {
        transform: translateY(0);
    }

    25%,
    40% {
        transform: translateY(-25%);
    }

    50%,
    65% {
        transform: translateY(-50%);
    }

    75%,
    90% {
        transform: translateY(-25%);
    }

    100% {
        transform: translateY(0);
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, var(--clr-accent-pink) 0%, #cc0077 100%);
    color: var(--clr-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.quote-nav {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--clr-white);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-nav:hover {
    transform: scale(1.1);
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.quote-content {
    text-align: center;
    max-width: 800px;
    margin: 0 40px;
}

.quote-content blockquote {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.quote-content cite {
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
    opacity: 0.8;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.footer-pre-cta {
    background: linear-gradient(135deg, var(--clr-primary) 0%, #4ADE80 100%);
    padding: 80px 0;
    color: var(--clr-black);
    position: relative;
    overflow: hidden;
}

.footer-pre-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.pre-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pre-cta-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.pre-cta-sub {
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: 500;
}

.footer-main {
    padding: 100px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: -0.05em;
    background: linear-gradient(to bottom, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 60px;
    max-width: 800px;
}

.footer-links a {
    color: #888;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

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

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-divider {
    width: 100%;
    max-width: 1100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #222 20%, #222 80%, transparent 100%);
    margin-bottom: 40px;
}

.footer-copyright-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.copyright {
    color: #555;
    font-size: 13px;
    font-weight: 400;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: none !important;
    }

    .navbar.scrolled .menu-toggle span {
        background-color: var(--clr-white);
    }

    .stats-card {
        transform: none !important;
        margin-bottom: 20px;
    }

    .stats-card:hover {
        transform: translateY(-8px) !important;
    }

    .app-demo-container {
        flex-direction: column;
        text-align: center;
    }

    .app-demo-content {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .section-title.text-left {
        text-align: center;
    }

    .testimonials-container {
        flex-direction: column;
        gap: 40px;
    }

    .pre-cta-container {
        flex-direction: column;
        text-align: center;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 16px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-logo {
        position: relative;
        left: 0;
        transform: none;
        font-size: 22px;
    }

    .nav-logo-mark {
        width: 40px;
        height: 40px;
    }

    .nav-logo-mark img {
        width: 32px;
        height: 32px;
    }

    .navbar {
        padding: 16px 0;
        /* Slightly more padding */
        background-color: rgba(13, 13, 13, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .nav-container {
        padding: 0 20px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        gap: 6px;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }

    #lang-toggle {
        height: 34px;
        padding: 0 12px;
        font-size: 12px;
        margin-right: 0;
    }

    .hero-content {
        padding: 0 20px;
        margin-top: 20px;
    }

    .hero-headline {
        font-size: clamp(2.4rem, 10vw, 4rem);
        margin-bottom: 20px;
    }

    .tagline-word {
        letter-spacing: 2px;
        font-size: 12px;
    }

    .tagline-dot {
        margin: 0 6px;
        font-size: 12px;
    }

    .pillars-section {
        padding: 100px 16px;
    }
}

@media (max-width: 400px) {
    .nav-logo-text {
        display: none;
        /* Icon only on very small screens to save space */
    }

    .nav-container {
        justify-content: space-between;
    }
}

/* ============================================
   RTL Styles (Arabic)
   ============================================ */
html[dir="rtl"] .btn .arrow {
    margin-left: 0;
    margin-right: 10px;
    transform: rotate(180deg);
    display: inline-block;
}

html[dir="rtl"] .btn:hover .arrow {
    transform: rotate(180deg) translateX(5px);
}

html[dir="rtl"] .chevron {
    margin-left: 0;
    margin-right: 6px;
}

html[dir="rtl"] .dropdown-menu {
    left: auto;
    right: -20px;
}

html[dir="rtl"] .dropdown-link:hover {
    padding-left: 16px;
    padding-right: 20px;
}

html[dir="rtl"] .quote-prev svg,
html[dir="rtl"] .quote-next svg {
    transform: rotate(180deg);
}

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

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

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

html[dir="rtl"] .footer-col a:hover {
    padding-left: 0;
    padding-right: 4px;
}

html[dir="rtl"] .tagline-word {
    letter-spacing: 1px;
}

/* ============================================
   Highlight Sections (Privacy, Context, Journeys)
   ============================================ */
.highlight-section {
    padding: var(--section-padding);
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

.highlight-privacy {
    background: var(--clr-bg-light);
}

.highlight-context {
    background: #fafafa;
}

.highlight-journeys {
    background: var(--clr-bg-light);
}

.highlight-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.highlight-reverse {
    flex-direction: row-reverse;
}

.highlight-content {
    flex: 1;
    max-width: 520px;
}

.highlight-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.highlight-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(16, 177, 33, 0.1);
    color: var(--clr-primary-dark);
    border: 1px solid rgba(16, 177, 33, 0.15);
}

.badge-cyan {
    background: rgba(0, 229, 255, 0.1);
    color: var(--clr-accent-cyan);
    border-color: rgba(0, 229, 255, 0.15);
}

.badge-purple {
    background: rgba(160, 32, 240, 0.1);
    color: var(--clr-accent-purple);
    border-color: rgba(160, 32, 240, 0.15);
}

.highlight-text {
    font-size: 17px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.highlight-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-text-main);
}

.highlight-feature svg {
    color: var(--clr-primary-dark);
    flex-shrink: 0;
}

/* Identity Card Stack */
.identity-card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    perspective: 800px;
}

.id-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-radius: 20px;
    background: var(--clr-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
    min-width: 300px;
}

.id-card:hover {
    transform: translateY(-6px) rotateY(-2deg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.id-card-username {
    transform: rotate(-2deg);
}

.id-card-realname {
    transform: rotate(1deg) translateX(20px);
}

.id-card-avatar {
    font-size: 36px;
}

.id-card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.id-card-role {
    font-size: 13px;
    color: var(--clr-text-muted);
    font-weight: 500;
}

/* Context Card Demo */
.context-card-demo {
    padding: 28px;
    border-radius: 20px;
    background: var(--clr-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    max-width: 380px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.context-card-demo:hover {
    transform: translateY(-6px);
}

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

.ctx-avatar {
    font-size: 36px;
}

.ctx-info {
    flex: 1;
}

.ctx-name {
    font-size: 16px;
    font-weight: 700;
}

.ctx-meta {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.ctx-rep {
    font-size: 14px;
    font-weight: 700;
    color: #F59E0B;
}

.ctx-body {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ctx-tags {
    display: flex;
    gap: 8px;
}

.ctx-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--clr-text-muted);
}

.ctx-tag-rep {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

/* Journey Timeline Visual */
.journey-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.journey-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--clr-primary);
    box-shadow: 0 0 20px var(--clr-primary-glow);
    flex-shrink: 0;
}

.journey-dot-mid {
    background: var(--clr-accent-purple);
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.3);
}

.journey-dot-end {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent-cyan));
    box-shadow: 0 0 20px rgba(122, 244, 149, 0.4);
}

.journey-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-text-main);
    white-space: nowrap;
}

.journey-line {
    width: 3px;
    height: 48px;
    background: linear-gradient(180deg, var(--clr-primary) 0%, rgba(160, 32, 240, 0.3) 100%);
    margin-left: 9px;
    border-radius: 3px;
}

/* ============================================
   Moderation Section
   ============================================ */
.moderation-section {
    background: linear-gradient(180deg, #0a0a0a, #111116, #0a0a0a);
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
}

.moderation-section .section-title {
    color: var(--clr-white);
    margin-bottom: 20px;
}

.mod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 60px;
}

.mod-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s, box-shadow 0.5s;
}

.mod-card:hover {
    transform: translateY(-8px);
    border-color: rgba(122, 244, 149, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mod-card h3 {
    font-size: 22px;
    color: var(--clr-white);
    margin-bottom: 12px;
}

.mod-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.mod-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--clr-primary);
    background: rgba(122, 244, 149, 0.1);
    border: 1px solid rgba(122, 244, 149, 0.15);
}

.mod-icon-pink {
    color: var(--clr-accent-pink);
    background: rgba(255, 0, 153, 0.1);
    border-color: rgba(255, 0, 153, 0.15);
}

.mod-icon-cyan {
    color: var(--clr-accent-cyan);
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.15);
}

/* ============================================
   Responsive — New Sections
   ============================================ */
@media (max-width: 1024px) {

    .highlight-container,
    .highlight-reverse {
        flex-direction: column;
        text-align: center;
    }

    .highlight-content {
        max-width: 100%;
    }

    .highlight-features {
        align-items: center;
    }

    .mod-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .section-title.text-left {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .highlight-section {
        padding: 80px 16px;
    }

    .highlight-container {
        gap: 40px;
    }

    .id-card {
        min-width: auto;
    }

    .id-card-realname {
        transform: rotate(1deg) translateX(0);
    }

    .moderation-section {
        padding: 100px 16px;
    }
}

/* RTL — New Sections */
html[dir="rtl"] .highlight-content {
    text-align: right;
}

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

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

html[dir="rtl"] .ctx-body {
    text-align: right;
}

@media (max-width: 1024px) {
    html[dir="rtl"] .highlight-content {
        text-align: center;
    }

    html[dir="rtl"] .mod-card {
        text-align: center;
    }
}