@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    /* Colors - Light Beige Theme (Default) */
    --bg: #FAF8F5; /* Warm off-white / light beige */
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --border: rgba(44, 38, 32, 0.08);
    --border-hover: rgba(255, 90, 31, 0.3);
    
    --primary: #FF5A1F; /* Corporate Orange */
    --primary-hover: #E0430B;
    --primary-rgb: 255, 90, 31;
    
    --accent: #FF8C42; /* Soft Orange */
    --accent-gradient: linear-gradient(135deg, #FF8C42 0%, #FF5A1F 100%);
    --accent-glow: rgba(255, 90, 31, 0.12);
    
    --text: #1E1B18; /* Soft Black */
    --text-muted: #5C554E; /* Warm Muted Gray */
    --text-dark: #8E847A;
    
    --shadow: 0 10px 30px rgba(44, 38, 32, 0.05);
    --shadow-glow: 0 10px 30px rgba(255, 90, 31, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-hebrew: 'Assistant', sans-serif;
    --font-latin: 'Outfit', sans-serif;
}

/* Dark Theme Variables */
body.dark-theme {
    --bg: #0F0E0C; /* Deep Charcoal Black */
    --bg-card: rgba(30, 27, 24, 0.7);
    --bg-card-hover: rgba(38, 34, 30, 0.9);
    --border: rgba(250, 248, 245, 0.08);
    --border-hover: rgba(255, 90, 31, 0.4);
    
    --text: #FAF8F5;
    --text-muted: #BCB3AA;
    --text-dark: #8E847A;
    
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 10px 30px rgba(255, 90, 31, 0.15);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-hebrew);
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
}

/* Selection & Scrollbar */
::selection {
    background-color: var(--primary);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(44, 38, 32, 0.15);
    border-radius: 4px;
}

body.dark-theme ::-webkit-scrollbar-thumb {
    background: rgba(250, 248, 245, 0.15);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

/* Grid & Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* Glassmorphism/Card Base */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow), var(--shadow-glow);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 90, 31, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-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: 0.5s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 31, 0.5), var(--shadow-glow);
}

.btn-secondary {
    background: rgba(44, 38, 32, 0.03);
    color: var(--text);
    border: 1px solid var(--border);
}

body.dark-theme .btn-secondary {
    background: rgba(250, 248, 245, 0.05);
}

.btn-secondary:hover {
    background: rgba(44, 38, 32, 0.08);
    border-color: var(--text-muted);
}

body.dark-theme .btn-secondary:hover {
    background: rgba(250, 248, 245, 0.1);
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

body.dark-theme .header.scrolled {
    background: rgba(15, 14, 12, 0.85);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    transition: var(--transition);
}

.header.scrolled .nav-container {
    height: 90px;
}

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

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 70px;
}

.logo-text {
    font-family: var(--font-latin);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text);
    margin-right: 8px;
    letter-spacing: -0.03em;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    width: 100%;
}

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

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1.3rem;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--text);
    background: rgba(44, 38, 32, 0.05);
}

body.dark-theme .theme-toggle:hover {
    background: rgba(250, 248, 245, 0.05);
}

.theme-toggle .fa-sun {
    display: none;
}

body.dark-theme .theme-toggle .fa-moon {
    display: none;
}

body.dark-theme .theme-toggle .fa-sun {
    display: block;
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 90, 31, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 140, 66, 0.05) 0%, transparent 45%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(255, 90, 31, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    align-self: flex-start;
    border: 1px solid rgba(255, 90, 31, 0.15);
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.15;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

/* Hero Visual / Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-glowing-back {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--accent-gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    z-index: 0;
}

.linkedin-mockup {
    width: 100%;
    max-width: 450px;
    z-index: 1;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(44, 38, 32, 0.08);
    background: #ffffff;
    border: 1px solid rgba(44, 38, 32, 0.06);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

body.dark-theme .linkedin-mockup {
    background: #1e1b18;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(250, 248, 245, 0.06);
}

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

.mockup-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.mockup-info-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

.mockup-info-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-body {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 20px;
}

.mockup-body p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.mockup-chart {
    border-radius: var(--radius-sm);
    background: rgba(44, 38, 32, 0.03);
    border: 1px solid var(--border);
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.dark-theme .mockup-chart {
    background: rgba(250, 248, 245, 0.03);
}

.chart-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.chart-bar-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chart-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
}

.chart-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(44, 38, 32, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

body.dark-theme .chart-bar-bg {
    background: rgba(250, 248, 245, 0.08);
}

.chart-bar-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 4px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

/* Services / Features Section */
.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(255, 90, 31, 0.08);
    border: 1px solid rgba(255, 90, 31, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-gradient);
    color: white;
    transform: scale(1.05);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.6;
}

/* Security Highlight Section */
.security-section {
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
}

.security-box {
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    padding: 48px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: center;
    box-shadow: var(--shadow);
}

.security-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #10b981;
}

.security-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-title {
    color: #10b981;
    font-size: 1.8rem;
}

.security-bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.security-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.security-bullet i {
    color: #10b981;
    margin-top: 4px;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px 24px;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.faq-trigger:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.faq-icon {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(44, 38, 32, 0.01);
    border: 1px solid transparent;
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

body.dark-theme .faq-content {
    background: rgba(250, 248, 245, 0.01);
}

.faq-content-inner {
    padding: 24px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-item.active .faq-trigger {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-item.active .faq-content {
    max-height: 500px;
    border-color: var(--border-hover);
    background: rgba(44, 38, 32, 0.02);
}

body.dark-theme .faq-item.active .faq-content {
    background: rgba(250, 248, 245, 0.02);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: center;
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(255, 90, 31, 0.08);
    border: 1px solid rgba(255, 90, 31, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.contact-method-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-method-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

a.contact-method-value:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-input {
    background: rgba(44, 38, 32, 0.02);
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

input[type="tel"].form-input {
    text-align: right;
    direction: ltr; /* ltr keeps the number format intact but aligned right */
}

input[type="tel"].form-input::placeholder {
    text-align: right;
}

body.dark-theme .form-input {
    background: rgba(250, 248, 245, 0.02);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 90, 31, 0.15);
    background: #ffffff;
}

body.dark-theme .form-input:focus {
    background: rgba(30, 27, 24, 0.9);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Footer */
.footer {
    background: #F3ECE3; /* Slightly darker warm beige */
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

body.dark-theme .footer {
    background: #090908;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-logo .logo-img {
    height: 130px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary);
    padding-right: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Policy Pages Layout */
.policy-page {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.policy-card {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    margin-top: 32px;
}

.policy-content h2, .policy-content h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.policy-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-right: 24px;
}

.policy-content li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.policy-meta {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

/* Responsive / Media Queries */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #FAF8F5;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(44, 38, 32, 0.05);
        z-index: 1000;
    }
    
    body.dark-theme .nav-menu {
        background: #0F0E0C;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    /* Hamburger Transform to X */
    .hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero */
    .hero {
        padding-top: 100px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-tagline {
        align-self: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .linkedin-mockup, .hero-profile-card {
        margin: 0 auto;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Security Box */
    .security-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px;
        gap: 24px;
    }
    
    .security-icon-wrapper {
        margin: 0 auto;
    }
    
    .security-bullets {
        grid-template-columns: 1fr;
        text-align: right;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Hero Profile Photo styling */
.hero-profile-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow), 0 20px 40px rgba(44, 38, 32, 0.08);
    background: #ffffff;
    border: 1px solid rgba(44, 38, 32, 0.06);
    padding: 0;
    transition: var(--transition);
    z-index: 1;
}

body.dark-theme .hero-profile-card {
    background: #1e1b18;
    border: 1px solid rgba(250, 248, 245, 0.06);
    box-shadow: var(--shadow), 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-profile-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow), var(--shadow-glow);
    transform: translateY(-4px);
}

.hero-profile-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    object-fit: cover;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 420px;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(44, 38, 32, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 15px 35px rgba(44, 38, 32, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    direction: rtl;
    text-align: right;
}

body.dark-theme .cookie-banner {
    background: rgba(25, 23, 21, 0.95);
    border-color: rgba(250, 248, 245, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--accent-gradient);
    color: #ffffff;
    border: none;
    flex-grow: 1;
}

.cookie-btn-accept:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.cookie-btn-decline:hover {
    background: rgba(44, 38, 32, 0.03);
    color: var(--text);
}

body.dark-theme .cookie-btn-decline:hover {
    background: rgba(250, 248, 245, 0.03);
}

/* Mobile responsive */
@media (max-width: 576px) {
    .cookie-banner {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        padding: 20px;
    }
}
