/* ============================================
   ORIA AI Landing Page - Clean & Sharp Design
   Brand Colors:
   - Primary Purple: #625DE5
   - Light Blue: #48B7FF
   - Dark Navy: #171938
   - Light Gray: #F2F2FC
   - Coral/Peach: #E5907A
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #625DE5;
    --primary-light: #7b77ea;
    --primary-dark: #4a45b8;
    --secondary: #48B7FF;
    --dark: #171938;
    --light: #F2F2FC;
    --coral: #E5907A;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--coral) 0%, var(--primary) 100%);
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition-fast: 0.15s ease;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Page Loading Animation */
body.loading {
    overflow: hidden;
}

body.loading .hero-content,
body.loading .navbar {
    opacity: 0;
}

body:not(.loading) .navbar {
    animation: fadeDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography - Sharp & Clean */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--gray-600);
    line-height: 1.7;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

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

strong {
    font-weight: 600;
    color: var(--dark);
}

/* Brand name - ORIA in Montserrat */
.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Buttons - Clean & Modern */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(98, 93, 229, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 26px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

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

.btn-block {
    width: 100%;
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* Navigation - Minimal & Clean */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    padding: 12px 0;
}

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

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

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 36px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section - Clean & Impactful */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(98, 93, 229, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(72, 183, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
    animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trial-text {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
}

.demo-link {
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.demo-link:hover {
    color: var(--primary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.brain-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
}

.brain-svg {
    width: 100%;
    height: 100%;
}

/* ORIA AI Persona */
.oria-persona {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oria-persona img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(98, 93, 229, 0.3));
    animation: personaFloat 6s ease-in-out infinite;
}

@keyframes personaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.persona-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(98, 93, 229, 0.3) 0%, rgba(72, 183, 255, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gray-100);
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-card .card-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.card-1 { top: 8%; right: 5%; animation-delay: 0s; }
.card-2 { top: 45%; left: 0%; animation-delay: 2s; }
.card-3 { bottom: 12%; right: 10%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-wave {
    display: none;
}

/* Section Dividers - Curved transitions */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Divider from light to dark (before mirror section) */
.mirror-section {
    margin-top: -1px;
}

.mirror-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0.05;
}

/* Divider from dark to light (after mirror section) */
.solution-section {
    position: relative;
}

.solution-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(23, 25, 56, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* Animated border on scroll for feature cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    background: var(--gradient-primary);
    opacity: 1;
}

/* Animated underline for nav links */
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Section Styles - Clean */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
}

/* Section CTA Buttons */
.section-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-cta .btn {
    min-width: 200px;
}

.section-cta .cta-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Dark section CTA styling */
.mirror-section .section-cta,
.comparison-section .section-cta {
    margin-top: 64px;
}

.mirror-section .section-cta .btn {
    background: var(--white);
    color: var(--primary);
}

.mirror-section .section-cta .btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.comparison-section .section-cta .btn-white {
    background: var(--white);
    color: var(--primary);
    border: none;
}

.comparison-section .section-cta .btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Trust section CTA */
.trust-content .section-cta {
    margin-top: 48px;
}

/* Mirror Section - Pain Points (Fancy Editorial) */
.mirror-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 140px 0;
}

.mirror-section .section-header {
    margin-bottom: 80px;
}

.mirror-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.mirror-section .highlight {
    background: linear-gradient(135deg, var(--coral) 0%, #f8a090 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    padding-right: 50px;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.mirror-bg-shape {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(98, 93, 229, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.pain-points-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.pain-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    padding: 48px 0;
    position: relative;
    align-items: start;
}

.pain-card:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 100px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent 100%);
}

.pain-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.9;
    letter-spacing: -0.05em;
    min-width: 120px;
}

.pain-content {
    padding-top: 8px;
}

.pain-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.pain-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pain-quote {
    position: relative;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border-right: 3px solid;
    border-image: var(--gradient-primary) 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-content {
    flex: 1;
}

.pain-quote span {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(90deg, var(--coral) 0%, #f8a090 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.quote-author {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.pain-line {
    display: none;
}

/* Hover effect for pain cards */
.pain-card {
    transition: var(--transition);
}

.pain-card:hover .pain-number {
    transform: scale(1.05);
    transition: var(--transition);
}

.pain-card:hover .pain-quote {
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

/* Solution Section */
.solution-section {
    background: var(--white);
}

.solution-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 680px;
    margin: -32px auto 64px;
    color: var(--gray-500);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.feature-icon.emoji-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Comparison Section - Clean Table */
.comparison-section {
    background: var(--dark);
    color: var(--white);
}

.comparison-section .section-header {
    margin-bottom: 48px;
}

.comparison-section h2 {
    color: var(--white);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-header .comparison-col {
    padding: 20px 32px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-header .old {
    background: rgba(229, 144, 122, 0.15);
    color: var(--coral);
}

.comparison-header .new {
    background: rgba(98, 93, 229, 0.2);
    color: var(--secondary);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-row .comparison-col {
    padding: 24px 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.comparison-row .comparison-col.old {
    background: rgba(0, 0, 0, 0.15);
}

.comparison-row .comparison-col.new {
    background: rgba(98, 93, 229, 0.05);
}

.comparison-row strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-size: 0.95rem;
}

.comparison-row p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.icon-old, .icon-new {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.icon-old {
    background: rgba(229, 144, 122, 0.2);
    color: var(--coral);
}

.icon-new {
    background: rgba(98, 93, 229, 0.3);
    color: var(--secondary);
}

/* Trust Section */
.trust-section {
    background: var(--light);
}

.trust-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 32px;
    box-shadow: var(--shadow-sm);
}

.trust-content h2 {
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xs);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.badge span:first-child {
    font-size: 1.25rem;
}

/* Pricing Section - Clean Cards */
.pricing-section {
    background: var(--white);
}

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

.pricing-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.pricing-desc {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pricing-price .period {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.pricing-features .check {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta {
    padding: 140px 0;
    background: var(--primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(72, 183, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-content .btn {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
}

.cta-content .btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.no-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 16px;
}

/* Footer - Minimal */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand .logo-img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-visual {
        order: 2;
        height: 350px;
    }

    .hero-cta {
        justify-content: center;
    }

    .pain-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .pain-number {
        font-size: 3.5rem;
        min-width: auto;
    }

    .pain-quote {
        border-right: none;
        border-top: 3px solid;
        border-image: var(--gradient-primary) 1;
        flex-direction: column;
        text-align: center;
    }

    .quote-avatar {
        width: 56px;
        height: 56px;
    }

    .oria-persona {
        width: 280px;
        height: 280px;
    }

    .persona-glow {
        width: 220px;
        height: 220px;
    }

    .section-eyebrow {
        padding-right: 0;
        display: block;
    }

    .section-eyebrow::before {
        display: none;
    }

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

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

    /* Comparison Section - Mobile Card Layout */
    .comparison-table {
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        border: none;
        margin-bottom: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-row:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .comparison-row .comparison-col {
        border-radius: var(--radius-lg);
        padding: 20px 24px;
        position: relative;
    }

    .comparison-row .comparison-col.old {
        background: rgba(229, 144, 122, 0.08);
        border: 1px solid rgba(229, 144, 122, 0.2);
        order: 1;
    }

    .comparison-row .comparison-col.new {
        background: rgba(98, 93, 229, 0.1);
        border: 1px solid rgba(98, 93, 229, 0.3);
        order: 2;
    }

    .comparison-row .comparison-col.old::before,
    .comparison-row .comparison-col.new::before {
        content: '';
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 4px 10px;
        border-radius: var(--radius-full);
    }

    .comparison-row .comparison-col.old::before {
        content: 'הדרך הישנה';
        background: rgba(229, 144, 122, 0.2);
        color: var(--coral);
    }

    .comparison-row .comparison-col.new::before {
        content: 'עם ORIA AI';
        background: rgba(98, 93, 229, 0.3);
        color: var(--secondary);
    }

    .comparison-row .comparison-col > div {
        padding-top: 28px;
    }

    .comparison-row strong {
        font-size: 1rem;
    }

    .comparison-row p {
        font-size: 0.9rem;
    }

    /* Arrow between cards */
    .comparison-row .comparison-col.old::after {
        content: '↓';
        position: absolute;
        bottom: -24px;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 32px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1rem;
        z-index: 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .footer-links {
        justify-items: center;
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 24px;
    }

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

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-visual {
        display: none;
    }

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

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-cta {
        margin-top: 40px;
    }

    .section-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .mirror-section {
        padding: 100px 0;
    }

    .pain-number {
        font-size: 2.5rem;
    }

    .pain-content h3 {
        font-size: 1.25rem;
    }

    .pain-content p {
        font-size: 0.95rem;
    }

    .pain-quote span {
        font-size: 1rem;
    }

    .quote-avatar {
        width: 48px;
        height: 48px;
    }

    .quote-author {
        font-size: 0.8rem;
    }

    /* Comparison mobile small */
    .comparison-row .comparison-col {
        padding: 16px 20px;
    }

    .comparison-row .comparison-col > div {
        padding-top: 24px;
    }

    .comparison-row .comparison-col.old::before,
    .comparison-row .comparison-col.new::before {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .comparison-row .comparison-col.old::after {
        width: 28px;
        height: 28px;
        bottom: -20px;
        font-size: 0.85rem;
    }

    .comparison-row {
        gap: 12px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-price .amount {
        font-size: 3rem;
    }

    .final-cta {
        padding: 100px 0;
    }
}

/* ============================================
   Scroll Animations & Transitions
   ============================================ */

/* Base animation states - hidden before animation */
.fade-in,
.slide-up,
.slide-right,
.scale-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-in {
    transform: translateY(20px);
}

.slide-up {
    transform: translateY(60px);
}

.slide-right {
    transform: translateX(-60px);
}

.scale-in {
    transform: scale(0.9);
}

/* Animated states - visible after animation triggers */
.fade-in.animate-in,
.slide-up.animate-in,
.slide-right.animate-in,
.scale-in.animate-in {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Special animations for specific elements */
.floating-card {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}

.floating-card.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Keep the float animation after reveal */
.floating-card.animate-in {
    animation: float 6s ease-in-out infinite;
}

/* ORIA Persona animation */
.oria-persona {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.oria-persona.animate-in {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.oria-persona.animate-in img {
    animation: personaFloat 6s ease-in-out infinite;
}

.card-1.animate-in { animation-delay: 0s; }
.card-2.animate-in { animation-delay: 2s; }
.card-3.animate-in { animation-delay: 4s; }

/* Section transition backgrounds */
section {
    position: relative;
}

/* Gradient line between sections */
.solution-section::before,
.comparison-section::before,
.trust-section::before,
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    opacity: 0.5;
}

.comparison-section::before,
.trust-section::before {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Glowing effect on section entry */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(98, 93, 229, 0.3); }
    50% { box-shadow: 0 0 40px rgba(98, 93, 229, 0.5); }
}

/* Feature cards hover with glow */
.feature-card.animate-in:hover {
    animation: none;
    box-shadow: 0 8px 32px rgba(98, 93, 229, 0.2);
}

/* Pain cards staggered reveal enhancement */
.pain-card .pain-number {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
                opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.pain-card .pain-content {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
                opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.pain-card .pain-quote {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s,
                opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s,
                background 0.3s ease;
}

/* Comparison rows slide animation */
.comparison-row .comparison-col {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.comparison-row.slide-right .comparison-col.old {
    transform: translateX(-30px);
    opacity: 0;
}

.comparison-row.slide-right .comparison-col.new {
    transform: translateX(30px);
    opacity: 0;
}

.comparison-row.slide-right.animate-in .comparison-col.old,
.comparison-row.slide-right.animate-in .comparison-col.new {
    transform: translateX(0);
    opacity: 1;
}

/* Mobile animation - slide up instead of sideways */
@media (max-width: 1024px) {
    .comparison-row.slide-right .comparison-col.old,
    .comparison-row.slide-right .comparison-col.new {
        transform: translateY(20px);
    }

    .comparison-row.slide-right.animate-in .comparison-col.old,
    .comparison-row.slide-right.animate-in .comparison-col.new {
        transform: translateY(0);
    }

    .comparison-row.slide-right .comparison-col.new {
        transition-delay: 0.15s;
    }
}

/* Pricing cards bounce effect */
.pricing-card.slide-up.animate-in {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    60% {
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Trust badges pop effect */
.badge.scale-in.animate-in {
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* CTA section reveal */
.cta-content.fade-in {
    transform: translateY(40px);
}

.cta-content.fade-in.animate-in {
    transform: translateY(0);
}

/* Smooth scroll indicator */
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Text reveal animation for headers */
.section-header h2 {
    overflow: hidden;
}

.section-header.fade-in h2 {
    animation: revealText 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.section-header.fade-in.animate-in h2 {
    animation-play-state: running;
}

@keyframes revealText {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* ============================================
   Internal Pages Styles (About, Terms, Privacy)
   ============================================ */

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--light) 0%, #e8e7f8 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--gray-500);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 48px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-block h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: var(--dark);
}

.content-block p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-block ul {
    margin: 16px 0;
    padding-right: 24px;
}

.content-block li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--gray-600);
}

.content-block a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.content-block a:hover {
    text-decoration: underline;
}

/* Highlight Block */
.content-block.highlight-block {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.highlight-block h2 {
    margin-bottom: 16px;
}

.highlight-block p {
    margin-bottom: 24px;
}

.highlight-block .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.value-card {
    background: var(--light);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.value-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Team Section */
.team-section {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-avatar {
    font-size: 4rem;
    color: var(--white);
    font-weight: 700;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 4px;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

/* Legal Content */
.legal-content .content-block {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-content .content-block:last-child {
    border-bottom: none;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    padding: 8px 0;
}

/* Responsive for Internal Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .content-section {
        padding: 60px 0;
    }

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

    .content-block.highlight-block {
        padding: 32px 24px;
    }

    .highlight-block .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .content-block h2 {
        font-size: 1.4rem;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .slide-up,
    .slide-right,
    .scale-in,
    .floating-card {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }

    .fade-in.animate-in,
    .slide-up.animate-in,
    .slide-right.animate-in,
    .scale-in.animate-in {
        transform: none;
    }
}
