/*
Theme Name: Sinta - Modern Dating
Theme URI: https://sinta.dating/
Author: Tachara LLC
Author URI: https://sinta.dating/
Description: A stunning modern dating theme with beautiful animations for finding true love and meaningful connections worldwide.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ishghjaan
Tags: custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options
*/

/* ============================================
   CSS CUSTOM PROPERTIES - Sinta Dating App Theme
   ============================================ */
:root {
    /* Color Palette - Premium Arab & Muslim Theme */
    --color-primary: #06402B;      /* Islamic Emerald Green */
    --color-primary-dark: #042A1D; /* Deep Forest Green */
    --color-primary-light: #0A5C3E;/* Bright Emerald */
    --color-secondary: #D4AF37;    /* Classic Gold */
    --color-secondary-dark: #B8972E;
    --color-accent: #C5A059;       /* Muted Gold */
    --color-accent-glow: rgba(212, 175, 55, 0.4);

    /* Background Colors */
    --color-deep: #02140F;         /* Near black emerald */
    --color-deep-secondary: #032018;/* Dark emerald surface */
    --color-surface: rgba(255, 255, 255, 0.05);
    --color-surface-hover: rgba(255, 255, 255, 0.1);
    --color-surface-strong: rgba(255, 255, 255, 0.15);

    /* Text Colors */
    --color-text: #F8F4E1;         /* Off-white parchment */
    --color-text-secondary: rgba(248, 244, 225, 0.85);
    --color-muted: rgba(248, 244, 225, 0.6);
    --color-border: rgba(212, 175, 55, 0.15);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--color-deep) 0%, #06402B 50%, var(--color-deep-secondary) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F9E29C 50%, #B8972E 100%);
    --gradient-button: linear-gradient(135deg, #06402B 0%, #042A1D 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(6, 64, 43, 0.4) 0%, transparent 70%);

    /* Pattern Support */
    --pattern-arabesque: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='%23D4AF37' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");

    /* Sizing & Spacing */
    --radius-xl: 2.5rem;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.6rem;
    --radius-full: 999px;

    /* Shadows */
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(6, 64, 43, 0.4);
    --shadow-glow-gold: 0 0 30px rgba(212, 175, 55, 0.2);
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-heading: 'Cairo', 'Amiri', 'Playfair Display', serif;
    --font-body: 'Cairo', 'Inter', system-ui, sans-serif;

    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-deep);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    min-height: 100vh;
    direction: ltr;
    text-align: left;
    overflow-x: hidden;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
    opacity: 0.9;
}

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

/* ============================================
   SITE WRAPPER & LAYOUT
   ============================================ */
.site-wrapper {
    min-height: 100vh;
    position: relative;
    background: var(--gradient-hero);
}

.main-content {
    overflow: hidden;
    position: relative;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1010;
    background: rgba(26, 10, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.site-header.is-scrolled {
    background: rgba(26, 10, 16, 0.95);
    box-shadow: var(--shadow-soft);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.brand-mark {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.brand-mark:hover {
    transform: scale(1.02);
}

.site-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-mark__text {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

/* Language Toggle (Home) */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-toggle__btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.lang-toggle__btn:hover {
    transform: translateY(-1px);
}

.lang-toggle__btn.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

body.lang-en .header-inner {
    flex-direction: row;
}

body.lang-en .primary-nav a::after {
    left: 0;
    right: auto;
}



/* Navigation */
.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.primary-nav a {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-medium);
}

.primary-nav a:hover,
.primary-nav .current-menu-item>a {
    color: var(--color-secondary);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item>a::after {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 11rem 2rem 6rem;
    background: var(--gradient-hero);
    background-image: var(--pattern-arabesque), var(--gradient-hero);
    overflow: hidden;
}

/* Animated Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    animation: glow-pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes glow-pulse {

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

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

/* Particle Container */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(720deg) scale(1);
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-shapes span {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float-shape 20s infinite ease-in-out;
}

.floating-shapes span:nth-child(1) {
    width: 300px;
    height: 300px;
    background: rgba(196, 30, 58, 0.15);
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.floating-shapes span:nth-child(2) {
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.12);
    top: 60%;
    left: 10%;
    animation-delay: 7s;
}

.floating-shapes span:nth-child(3) {
    width: 250px;
    height: 250px;
    background: rgba(64, 224, 208, 0.1);
    bottom: 20%;
    right: 25%;
    animation-delay: 14s;
}

@keyframes float-shape {

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

    25% {
        transform: translate(30px, -40px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

/* Hero Content */
.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }

    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    color: var(--color-text);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
}

/* Hero Buttons */
.hero-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.button,
.wp-element-button,
button,
input[type="submit"] {
    border: none;
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.button--primary {
    background: var(--gradient-button);
    color: white;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
}

.button--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.button--primary:hover::before {
    left: 100%;
}

.button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5), 0 0 60px rgba(196, 30, 58, 0.3);
}

.button--secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    padding: 1rem 2rem;
}

.button--secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Web App Button (Same size as Google Play) */
.button--web-app {
    background: var(--gradient-button);
    color: white;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    font-size: 1.15rem;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.button--web-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.button--web-app:hover::before {
    left: 100%;
}

.button--web-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5), 0 0 60px rgba(196, 30, 58, 0.3);
}

.button--wide {
    min-width: 200px;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section--features {
    background: linear-gradient(180deg, var(--color-deep-secondary) 0%, var(--color-deep) 100%);
    background-image: var(--pattern-arabesque), linear-gradient(180deg, var(--color-deep-secondary) 0%, var(--color-deep) 100%);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    color: var(--color-text);
}

.section__subtitle {
    color: var(--color-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.animate-in {
    animation: slide-up 0.6s ease forwards;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-xl), var(--shadow-glow-gold);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--gradient-button);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    transition: transform var(--transition-medium);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.8;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.section--stats {
    background: var(--color-deep);
    padding: 5rem 2rem;
    position: relative;
}

.section--stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    opacity: 0;
    transform: scale(0.8);
}

.stat-item.animate-in {
    animation: scale-in 0.5s ease forwards;
}

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

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item__label {
    color: var(--color-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.section--testimonials {
    background: linear-gradient(180deg, var(--color-deep) 0%, var(--color-deep-secondary) 100%);
    padding: 6rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    animation: slide-up 0.6s ease forwards;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card__text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient-button);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.testimonial-card__info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text);
}

.testimonial-card__info span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.section--cta {
    background: var(--gradient-hero);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section--cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
    animation: cta-glow 6s ease-in-out infinite;
}

@keyframes cta-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-deep);
    padding: 3rem 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--color-muted);
    font-size: 0.95rem;
    text-align: right;
}

.footer a {
    color: var(--color-secondary);
    transition: color var(--transition-fast);
}

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

.footer-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__heart {
    color: var(--color-primary);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

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

    50% {
        transform: scale(1.2);
    }
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer__separator {
    color: var(--color-border);
}

/* ============================================
   FREE FEATURES SECTION
   ============================================ */
.section--free-features {
    background: linear-gradient(180deg, var(--color-deep) 0%, var(--color-deep-secondary) 100%);
    padding: 5rem 2rem;
    position: relative;
}

.section--free-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.free-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.free-feature-card {
    background: var(--gradient-card);
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.free-feature-card.animate-in {
    animation: slide-up 0.6s ease forwards;
}

.free-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.free-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-card), 0 0 40px rgba(64, 224, 208, 0.2);
}

.free-feature-card:hover::before {
    transform: scaleX(1);
}

.free-feature-card__icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(64, 224, 208, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.3);
    transition: transform var(--transition-medium);
}

.free-feature-card:hover .free-feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.free-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: var(--color-text);
}

.free-feature-card p {
    color: var(--color-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.8;
}

/* ============================================
   SURFACE & UTILITY CLASSES
   ============================================ */
.surface-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* ============================================
   CONTENT DIRECTION (LTR/RTL)
   ============================================ */
.content-ltr {
    direction: ltr;
    text-align: left;
}

.content-ltr .section__title {
    text-align: left;
}

.content-ltr .entry-content {
    text-align: left;
}



/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll reveal animation helper */
/* Content is visible by default - only animate if JS is working */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* When page is loaded (JS confirmed working), hide elements for animation */
body.page-loaded .reveal:not(.revealed) {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        padding: 7rem 1.5rem 5rem;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-inner {
        /* flex-direction: column; Removed to fix overlap/overflow issues */
        gap: 1rem;
        padding: 1rem;
    }

    .primary-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 12rem 1rem 4rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-meta {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 4rem 1rem;
    }

    .feature-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-item__number {
        font-size: 2.5rem;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section__eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .button--primary {
        width: 100%;
        justify-content: center;
    }

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

    .floating-shapes span {
        display: none;
    }
}

/* ============================================
   HELP & FAQ SECTION
   ============================================ */
.help-hero {
    position: relative;
    padding: 10rem 2rem 5rem;
    text-align: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.help-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0.3;
}

.help-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.section--faq {
    background: linear-gradient(180deg, var(--color-deep-secondary) 0%, var(--color-deep) 100%);
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-item--open {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-glow-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-toggle {
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-secondary);
    transition: transform var(--transition-medium);
}

.faq-item--open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin: 0;
}

.faq-answer strong {
    color: var(--color-secondary);
}

/* ============================================
   SAFETY SECTION
   ============================================ */
.section--safety {
    background: var(--color-deep);
    padding: 5rem 2rem;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.safety-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.safety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.safety-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card);
}

.safety-card:hover::before {
    transform: scaleX(1);
}

.safety-card--emergency {
    border-color: rgba(196, 30, 58, 0.5);
    background: linear-gradient(145deg, rgba(196, 30, 58, 0.1), rgba(255, 255, 255, 0.02));
}

.safety-card--emergency::before {
    background: var(--gradient-button);
}

.safety-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-button);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.safety-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 1rem;
    color: var(--color-text);
}

.safety-card h4 {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin: 1.5rem 0 0.75rem;
}

.safety-card__content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.safety-card__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-card__content li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.safety-card__content li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.safety-card__content li strong {
    color: var(--color-text);
}

/* ============================================
   PRIVACY POLICY SECTION
   ============================================ */
.section--privacy {
    background: linear-gradient(180deg, var(--color-deep-secondary) 0%, var(--color-deep) 100%);
    padding: 4rem 2rem;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-medium);
}

.privacy-section:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.privacy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-icon {
    font-size: 1.3rem;
}

.privacy-section h3 {
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin: 1.5rem 0 0.75rem;
}

.privacy-section p {
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.privacy-section li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.privacy-section li::before {
    content: '◆';
    position: absolute;
    right: 0;
    color: var(--color-accent);
    font-size: 0.6rem;
    top: 0.5rem;
}

.privacy-section li strong {
    color: var(--color-text);
}

.privacy-note {
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: var(--color-accent) !important;
    font-size: 0.95rem;
}

.privacy-section--update {
    text-align: center;
    background: transparent;
    border: none;
    padding: 2rem 0 0;
}

.update-date {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--color-secondary);
}

.contact-info a:hover {
    color: var(--color-accent);
}

/* Contact Section in Help Page */
.section--contact {
    background: var(--gradient-hero);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.section--contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive adjustments for Help & Privacy */
@media (max-width: 768px) {
    .help-hero {
        padding: 8rem 1rem 4rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

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

    .safety-card {
        padding: 1.5rem;
    }

    .privacy-section {
        padding: 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

/* ============================================
   BILINGUAL LANGUAGE SECTIONS
   ============================================ */
.language-section {
    padding: 0;
}

.language-section[dir="ltr"] {
    text-align: left;
}

.language-section[dir="ltr"] .section__header {
    text-align: left;
}

.language-section[dir="ltr"] .faq-question {
    text-align: left;
}

.language-section[dir="ltr"] .safety-card__content li::before,
.language-section[dir="ltr"] .privacy-section li::before {
    right: auto;
    left: 0;
}

.language-section[dir="ltr"] .safety-card__content li,
.language-section[dir="ltr"] .privacy-section li {
    padding-right: 0;
    padding-left: 1.5rem;
}

.language-section[dir="ltr"] .faq-toggle {
    margin-right: 0;
    margin-left: auto;
}

.language-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--gradient-card);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.language-flag {
    font-size: 2rem;
}

.language-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0;
}

.language-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: var(--color-deep);
}

.divider-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.divider-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

/* Responsive adjustments for bilingual sections */
@media (max-width: 768px) {
    .language-header {
        padding: 1.5rem;
    }

    .language-flag {
        font-size: 1.5rem;
    }

    .language-title {
        font-size: 1.25rem;
    }

    .language-divider {
        padding: 2rem 1rem;
    }

    .divider-line {
        max-width: 100px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

    .hero::before,
    .floating-shapes,
    #particles-container {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

/* ============================================
   MOBILE NAVIGATION & RESPONSIVE FIXES
   ============================================ */

.mobile-nav-toggle {
    display: none;
    /* Hidden on desktop */
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1002;
    /* Higher than header z-index */
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger-box {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .site-header {
        padding: 0.5rem 0;
    }

    .header-inner {
        padding: 0.5rem 1.5rem;
        flex-wrap: wrap;
        /* Allow wrapping if needed, though we position absolute nav */
    }

    /* Show Toggle */
    .mobile-nav-toggle {
        display: flex;
        order: 10;
        z-index: 1015;
        /* Ensure toggle is always clickable above everything */
    }

    /* Brand Logo */
    .brand-mark {
        z-index: 1015;
    }

    /* Primary Nav Overlay */
    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        height: 100vh;
        background: rgba(10, 5, 8, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1005;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* Start from top, with padding to avoid header overlap */
        padding-top: 100px;
        /* Push menu down below header/safe area */
        overflow-y: auto;
        /* Allow scrolling if menu is tall */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(-20px);
    }

    .primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .primary-nav a {
        font-size: 1.5rem;
        padding: 0.5rem;
        display: block;
    }

    .primary-nav a::after {
        display: none;
        /* Remove underline effect on mobile for cleaner look */
    }

    /* Language Toggle Fix */
    .lang-toggle {
        display: flex;
        margin: 0;
        z-index: 1002;
    }

    /* Order adjustment based on row-reverse (L->R visual) */
    /* Items: Brand, MobileToggle, Nav, LangToggle */
    /* We want: [Brand (Left)] ... [Lang] [Toggle (Right)] */

    /* Since flex-direction is row-reverse (L->R):
       1. Brand
       2. Mobile Toggle
       3. Nav (Hidden/Fixed)
       4. Lang Toggle
    */

    /* To visually arrange: Brand (Left), Lang (Right-ish), Toggle (Right-Far) */
    .header-inner {
        display: flex;
        /* Force LTR direction for mobile header control explicitly if needed, 
           or keep row-reverse (L->R). Let's stick to existing row-reverse.
           Start (Left): Brand.
           End (Right): Lang, Toggle. 
        */
        justify-content: space-between;
        align-items: center;
    }

    .brand-mark {
        margin-left: auto;
        /* Push others to right? No, jusitfy-between handles it */
        flex-grow: 1;
    }

    .mobile-nav-toggle {
        margin-left: 1rem;
        /* Space from Lang */
    }

    /* Hamburger Animation */
    .mobile-nav-toggle.is-active .hamburger-inner {
        background-color: transparent;
    }

    .mobile-nav-toggle.is-active .hamburger-inner::before {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.is-active .hamburger-inner::after {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* Footer Responsive Improvements */
.footer {
    padding: 3rem 2rem;
    background: var(--color-deep-secondary);
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.footer__links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer__links a {
    color: var(--color-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--color-secondary);
}

.footer__separator {
    color: var(--color-border);
    font-size: 0.8rem;
}

.footer__brand {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .footer__links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__separator {
        display: none;
    }

    .footer__brand {
        flex-direction: column;
    }
}


/* ============================================
   APP DOWNLOAD BANNER
   ============================================ */
.app-download-banner {
    background: linear-gradient(90deg, var(--color-deep-secondary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 101;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.store-badge {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.store-badge img {
    height: 28px;
    width: auto;
    display: block;
}

.store-badge:hover {
    transform: scale(1.05);
}

.animate-pulse {
    animation: banner-pulse 2s infinite ease-in-out;
}

@keyframes banner-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .banner-content {
        gap: 0.5rem;
        flex-direction: row;
        /* Ensure row layout */
        flex-wrap: nowrap;
        /* Prevent wrapping if possible, or use wrap */
        justify-content: center;
    }

    .banner-text {
        font-size: 0.75rem;
    }

    .store-badge img {
        height: 22px;
        /* Slightly smaller for mobile header */
    }

    .google-play-hero-btn img {
        height: 56px !important;
        /* Override inline style for mobile */
    }
}

.google-play-hero-btn {
    transition: transform var(--transition-fast);
    display: inline-block;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.google-play-hero-btn img {
    height: 76px;
    width: auto;
    display: block;
}

.google-play-hero-btn:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
/* Google Play Button Overlay */
.button--google-play {
    background: #ffffff;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.button--google-play::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: skewX(-20deg);
    animation: google-play-flash 3s infinite;
    z-index: 1;
}
@keyframes google-play-flash {
    0% { left: -100%; }
    15% { left: 200%; }
    100% { left: 200%; }
}
.button--google-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.button--google-play img {
    height: 45px;
    width: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* ============================================
   LANDING PAGE REDESIGN
   ============================================ */
.landing-page .hero {
    padding: 12rem 2rem 7rem;
    text-align: left;
}

.landing-page .hero::after {
    content: '';
    position: absolute;
    inset: auto 8% 4% auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, transparent 72%);
    filter: blur(12px);
    z-index: 0;
}

.landing-page .hero-inner--split {
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 4rem;
    align-items: center;
    padding: 0;
}

.hero-top-cta {
    grid-column: 1 / -1;
    margin-bottom: -0.5rem;
}

.hero-top-cta .download-spotlight {
    max-width: none;
}

.landing-page .hero-content {
    text-align: left;
}

.landing-page .hero-content p {
    max-width: 640px;
    margin: 0 0 2rem;
}

.hero-proof {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-proof li {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-meta--stack {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 0;
    max-width: 680px;
}

.download-spotlight {
    width: 100%;
    min-width: 0;
    padding: 1.35rem 1.5rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: linear-gradient(135deg, #fff6ef 0%, #ffffff 38%, #fff4da 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.18);
    justify-content: space-between;
    gap: 1.25rem;
    overflow: hidden;
}

.download-spotlight::before {
    content: '';
    position: absolute;
    inset: auto auto -28% -10%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.16) 0%, transparent 72%);
    z-index: 0;
}

.download-spotlight::after {
    width: 34%;
}

.download-spotlight:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.33), 0 18px 40px rgba(196, 30, 58, 0.16);
}

.download-spotlight__copy,
.download-spotlight__badge {
    position: relative;
    z-index: 2;
}

.download-spotlight__copy {
    display: grid;
    gap: 0.35rem;
    text-align: left;
}

.download-spotlight__kicker {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
}

.download-spotlight__title {
    font-size: clamp(1.25rem, 2.4vw, 1.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #180b11;
}

.download-spotlight__meta {
    color: #5a4950;
    font-size: 0.96rem;
    line-height: 1.55;
    max-width: 28rem;
}

.download-spotlight__badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.6rem;
    border-radius: 1.15rem;
    background: #14090d;
    box-shadow: 0 14px 28px rgba(20, 9, 13, 0.2);
}

.download-spotlight__badge img {
    height: 54px;
}

.in-app-browser .button--google-play::after,
.in-app-browser .download-spotlight::before {
    content: none;
}

.in-app-browser .download-spotlight {
    padding: 0.9rem 1rem;
    border-radius: 1.25rem;
    background: #14090d;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.in-app-browser .download-spotlight__copy {
    display: none;
}

.in-app-browser .download-spotlight__badge {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.in-app-browser .download-spotlight__badge img {
    height: 46px;
}

.download-spotlight--compact {
    max-width: 540px;
    padding: 1.1rem 1.2rem;
}

.download-spotlight--compact .download-spotlight__title {
    font-size: 1.2rem;
}

.download-spotlight--compact .download-spotlight__badge img {
    height: 46px;
}

.hero-secondary-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.button--web-app-secondary {
    min-width: 220px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.button--web-app-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.hero-secondary-note {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-trustbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 760px;
}

.hero-trustbar__item {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.05rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-trustbar__item strong {
    color: var(--color-text);
    font-size: 1rem;
}

.hero-trustbar__item span {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.hero-showcase {
    position: relative;
    z-index: 2;
}

.hero-showcase__card {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.hero-phone {
    width: min(100%, 390px);
    padding: 0.9rem;
    border-radius: 2.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-xl);
    transform: rotate(-6deg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-phone__screen {
    min-height: 520px;
    padding: 1.4rem;
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.2) 0%, transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(26, 10, 16, 0.86) 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-phone__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hero-phone__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.hero-phone__avatars {
    display: flex;
    align-items: center;
}

.hero-phone__avatars span {
    width: 2rem;
    height: 2rem;
    margin-left: -0.45rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(26, 10, 16, 0.8);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.92), rgba(212, 175, 55, 0.9));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-phone__avatars span:first-child {
    margin-left: 0;
}

.hero-phone__profile {
    display: grid;
    gap: 0.75rem;
    padding: 1.35rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-phone__status {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius-full);
    background: rgba(64, 224, 208, 0.15);
    color: #aaf8f0;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-phone__profile h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.1;
}

.hero-phone__profile p,
.hero-phone__footer span {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

.hero-phone__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-phone__tags li {
    padding: 0.45rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-secondary);
    font-size: 0.82rem;
}

.hero-phone__message {
    padding: 1.25rem;
    border-radius: 1.35rem 1.35rem 1.35rem 0.35rem;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.28), rgba(196, 30, 58, 0.12));
    color: #fff5f5;
    line-height: 1.75;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.hero-phone__footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-phone__footer strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-text);
}

.hero-phone__footer-pill {
    flex-shrink: 0;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-full);
    background: var(--gradient-gold);
    color: #251407;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glow-gold);
}

.hero-floating {
    position: absolute;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.92);
    color: #1a0a10;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.hero-floating--top {
    top: 3rem;
    right: 1rem;
}

.hero-floating--middle {
    left: 0;
    bottom: 10.5rem;
}

.hero-floating--bottom {
    right: 1.25rem;
    bottom: 4.5rem;
}

.section--signal {
    padding-top: 0;
    margin-top: -3rem;
    z-index: 3;
}

.signal-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.signal-card {
    padding: 2rem;
    border-radius: 1.75rem;
    background: rgba(23, 10, 15, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.signal-card h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.2;
}

.signal-card p {
    margin: 0;
    color: var(--color-muted);
}

.section--download-band {
    background: linear-gradient(180deg, var(--color-deep) 0%, var(--color-deep-secondary) 100%);
    padding-top: 1rem;
}

.download-band {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 2rem;
    align-items: center;
    padding: 2.2rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(196, 30, 58, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.download-band__content h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.download-band__content p {
    margin: 0;
    max-width: 42rem;
    color: var(--color-muted);
}

.download-band__actions {
    display: grid;
    gap: 1rem;
    justify-items: stretch;
}

.download-band__secondary {
    min-width: 0;
}

.landing-page .free-features-grid {
    max-width: 1200px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-page .testimonial-card {
    height: 100%;
}

.cta-content--split {
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    gap: 2rem;
    align-items: center;
    padding: 2.2rem;
    border-radius: 2rem;
    background: rgba(20, 9, 13, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.cta-copy h2 {
    margin-top: 0;
}

.cta-actions {
    display: grid;
    gap: 1rem;
    justify-items: stretch;
}

@media (max-width: 1100px) {
    .landing-page .hero-inner--split,
    .download-band,
    .cta-content--split {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        max-width: 460px;
        margin: 0 auto;
    }

    .signal-grid,
    .landing-page .free-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .landing-page .hero {
        padding: 11.5rem 1rem 4.5rem;
    }

    .hero-top-cta {
        margin-bottom: 0;
    }

    .landing-page .hero-content,
    .landing-page .hero-content p,
    .download-band__content,
    .cta-copy {
        text-align: center;
    }

    .hero-proof,
    .hero-secondary-actions {
        justify-content: center;
    }

    .hero-meta--stack {
        align-items: stretch;
    }

    .download-spotlight,
    .download-spotlight--compact {
        width: 100%;
        max-width: 480px;
        min-width: 0;
        margin: 1.5rem auto;
        padding: 1.15rem 1.5rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.25rem;
        text-align: left;
    }

    .download-spotlight__copy {
        display: grid;
        gap: 0.2rem;
        text-align: left;
    }

    .download-spotlight__kicker {
        font-size: 0.65rem;
        color: var(--color-secondary);
        opacity: 0.9;
    }

    .download-spotlight__title {
        font-size: 1.15rem;
        color: white;
        font-weight: 700;
    }

    .download-spotlight__meta {
        display: none;
    }

    .download-spotlight__badge {
        flex-shrink: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    .download-spotlight__badge img {
        height: 48px;
    }

    .in-app-browser .download-spotlight,
    .in-app-browser .download-spotlight--compact {
        flex-direction: row;
        align-items: center;
    }

    .hero-trustbar,
    .signal-grid,
    .landing-page .free-features-grid {
        grid-template-columns: 1fr;
    }

    .hero-showcase__card {
        min-height: auto;
    }

    .hero-phone {
        transform: none;
    }

    .hero-floating {
        position: static;
        display: inline-flex;
        margin: 0.35rem;
    }

    .hero-showcase__card {
        gap: 0.75rem;
    }

    .hero-phone__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-band,
    .cta-content--split {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .download-spotlight {
        width: 100%;
        padding: 1rem;
        gap: 0.75rem;
    }

    .download-spotlight__title {
        font-size: 1rem;
    }

    .download-spotlight__badge img {
        height: 40px;
    }

    .button--web-app-secondary {
        width: 100%;
        min-width: 0;
    }

    .hero-phone__screen {
        min-height: auto;
        padding: 1rem;
    }

    .hero-phone__profile h3 {
        font-size: 1.7rem;
    }
}
