:root {
    --primary: #007AFF;
    --primary-glow: rgba(0, 122, 255, 0.4);
    --bg-main: #000000;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --text-main: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
    --text-ghost: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.1);
    --grid-color: rgba(255, 255, 255, 0.05);
    --radius-pill: 9999px;
    --radius-card: 24px;
    --font-heading: 'Frank Ruhl Libre', 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-main);
}

body {
    font-family: 'Assistant', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-attachment: fixed;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Frank Ruhl Libre', 'Playfair Display', serif;
    font-weight: 700;
}

.ghost {
    color: var(--text-ghost);
}

/* Background Glows */
.glow-top {
    position: fixed;
    top: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vh;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.glow-bottom {
    position: fixed;
    bottom: -20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vh;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

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

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Frank Ruhl Libre', 'Playfair Display', serif;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

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

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-dim);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-family: 'Assistant', sans-serif;
}

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

/* Buttons */
.btn {
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #FFFFFF;
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid var(--border);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
    padding: 10rem 0;
}

.section-label {
    display: block;
    text-align: center;
    color: var(--text-ghost);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Assistant', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-card);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--primary);
}

.feature-card .icon svg {
    display: block;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 1.1rem;
    font-family: 'Assistant', sans-serif;
}

/* Setups & Workflow Sections */
.setups-section,
.workflow-section {
    padding: 10rem 0;
    border-top: 1px solid var(--border);
}

.setups-grid,
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.setup-card,
.workflow-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-card);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.setup-card:hover,
.workflow-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.setup-illustration {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
}

.workflow-icon {
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.workflow-icon svg {
    display: block;
}

.setup-card h3,
.workflow-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.setup-card p,
.workflow-card p {
    color: var(--text-dim);
    font-size: 1.1rem;
    font-family: 'Assistant', sans-serif;
}

/* Privacy Section */
.privacy-section {
    padding: 10rem 0;
    border-top: 1px solid var(--border);
}

.privacy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.privacy-image {
    width: 100%;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 50px rgba(0, 122, 255, 0.1);
}

.privacy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-container:hover .privacy-image img {
    transform: scale(1.03);
}

.privacy-content {
    text-align: right;
}

.privacy-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.privacy-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.privacy-grid {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #FFFFFF;
}

/* Pricing Section */
.pricing-section {
    padding: 10rem 0;
    border-top: 1px solid var(--border);
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 4rem;
    font-family: 'Assistant', sans-serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.pricing-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.pricing-card-featured {
    border-color: var(--primary);
    background: rgba(0, 122, 255, 0.05);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
    background: rgba(0, 122, 255, 0.08);
    border-color: var(--primary);
}

.pricing-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
    font-family: 'Assistant', sans-serif;
}

.pricing-badge-featured {
    color: var(--primary);
    background: rgba(0, 122, 255, 0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-family: 'Frank Ruhl Libre', 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
}

.pricing-card-featured .price-amount {
    color: var(--primary);
}

.price-period {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    font-family: 'Assistant', sans-serif;
}

.pricing-features {
    list-style: none;
    text-align: right;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-dim);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Assistant', sans-serif;
}

.pricing-features li span {
    color: #34C759;
    font-weight: 700;
}

.price-original {
    display: inline-block;
    font-size: 1.4rem;
    color: var(--text-ghost);
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-family: 'Assistant', sans-serif;
}

.pricing-savings {
    font-size: 0.85rem;
    color: #34C759;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Assistant', sans-serif;
}

.pricing-btn {
    width: 100%;
}

/* Footer */
footer {
    padding: 10rem 0 4rem;
    text-align: center;
}

.footer-cta h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    margin-top: 8rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Frank Ruhl Libre', 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-ghost);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.copyright {
    color: var(--text-ghost);
    font-size: 0.8rem;
}

/* Demo Video Placeholder */
.demo-video-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.demo-video-placeholder {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 40px rgba(0, 122, 255, 0.15);
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.demo-video-placeholder:hover {
    box-shadow: 0 0 60px rgba(0, 122, 255, 0.25);
}

.demo-mockup {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s;
}

.demo-video-placeholder:hover .play-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s, background 0.3s;
}

.demo-video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

/* Trust Bar */
.trust-bar {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Assistant', sans-serif;
}

.trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Animated Hero Mockup */
.demo-animated-mockup {
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 40px rgba(0, 122, 255, 0.15);
    background: #0a0a0a;
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-ghost);
    font-family: 'Assistant', sans-serif;
    flex: 1;
    text-align: center;
}

.mockup-content {
    padding: 2.5rem 2rem;
    direction: rtl;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-scroll-track {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-family: 'Assistant', sans-serif;
    line-height: 2;
    animation: mockup-highlight 6s ease-in-out infinite;
}

.mockup-word {
    color: var(--text-ghost);
    transition: color 0.3s, text-shadow 0.3s;
    padding: 0.1rem 0.15rem;
    border-radius: 4px;
}

.mockup-word.done {
    color: var(--text-dim);
}

.mockup-word.active {
    color: #FFD60A;
    text-shadow: 0 0 20px rgba(255, 214, 10, 0.4);
    background: rgba(255, 214, 10, 0.08);
    border-radius: 4px;
}

@keyframes mockup-highlight {
    0%, 100% {
        /* Word 5 active: נדבר */
    }
    15% {
        /* Word 6 active: על */
    }
    30% {
        /* Word 7 active: הדרך */
    }
    45% {
        /* Word 8 active: הטובה */
    }
    60% {
        /* Word 9 active: ביותר */
    }
    75% {
        /* Word 10 active: להציג */
    }
}

/* JS-driven animation is cleaner, but CSS fallback via nth-child */

.mockup-mic-indicator {
    display: flex;
    justify-content: center;
    gap: 3px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
}

.mic-bar {
    width: 3px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
    animation: mic-pulse 1.2s ease-in-out infinite;
}

.mic-bar:nth-child(1) { animation-delay: 0s; }
.mic-bar:nth-child(2) { animation-delay: 0.15s; }
.mic-bar:nth-child(3) { animation-delay: 0.3s; }
.mic-bar:nth-child(4) { animation-delay: 0.15s; }
.mic-bar:nth-child(5) { animation-delay: 0s; }

@keyframes mic-pulse {
    0%, 100% { height: 6px; opacity: 0.5; }
    50% { height: 20px; opacity: 1; }
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    border-top: 1px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: var(--radius-card);
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -18px;
    right: 50%;
    transform: translateX(50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Assistant', sans-serif;
}

.step-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-dim);
    font-size: 1rem;
    font-family: 'Assistant', sans-serif;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: 'Frank Ruhl Libre', 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    gap: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-family: 'Assistant', sans-serif;
    color: var(--text-ghost);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-dim);
    font-size: 1.05rem;
    font-family: 'Assistant', sans-serif;
    line-height: 1.7;
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

/* RTL Adjustments */
[dir="rtl"] {
    text-align: right;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .footer-cta h2 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card-featured {
        transform: none;
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .step-card {
        padding-top: 2.5rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
    }

    .privacy-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .privacy-grid {
        justify-content: center;
    }

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

    .trust-items {
        gap: 1.5rem;
    }

    .mockup-content {
        padding: 1.5rem 1rem;
    }

    .mockup-scroll-track {
        font-size: 1rem;
    }
}

/* Legal Pages */
.legal-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
    min-height: 80vh;
}

.legal-content {
    max-width: 740px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
}

.legal-updated {
    color: var(--text-ghost);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    font-family: 'Assistant', sans-serif;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: 'Assistant', sans-serif;
}

.legal-content ul {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-right: 1.5rem;
    font-family: 'Assistant', sans-serif;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.legal-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.legal-content code {
    background: rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    direction: ltr;
    display: inline-block;
}

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .pricing-card-featured {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .privacy-container {
        gap: 2rem;
    }

    .privacy-content h2 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .steps-grid {
        gap: 1.5rem;
    }
}