:root {
    --bg-color: #FFFFFF; /* Pure white */
    --card-bg: #FFFFFF;
    --text-main: #111111; /* Charcoal */
    --text-muted: #666666; /* Soft gray */
    --accent: #0057FF; /* Royal Blue */
    --accent-hover: #0046CC;
    --accent-gold: #D4AF37; /* Champagne Gold */
    --border-color: #EEEEEE;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.02);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.03);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.04);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: ui-serif, "Playfair Display", Georgia, Cambria, "Times New Roman", Times, serif;
    --font-body: system-ui, -apple-system, "Inter", BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Mesh Gradient Background Removed */

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

/* Utilities */
.w-full { width: 100%; }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }

/* Buttons */
.btn-primary, .btn-primary-outline, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 87, 255, 0.2);
    border: none;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 87, 255, 0.3);
    color: #fff;
    border-color: transparent;
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-primary-outline:hover {
    background-color: var(--accent);
    color: #fff;
}

.btn-secondary {
    background-color: #F5F5F7;
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: #E5E5EA;
}

/* Buttons - Mobile First (min 44px height) */
.btn-primary, .btn-secondary, .btn-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--accent);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #152c6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(0,0,0,0.03);
}

.btn-logout {
    background-color: transparent;
    color: #FF3B30;
}

.btn-logout:hover {
    background-color: rgba(255, 59, 48, 0.1);
}

.w-full {
    width: 100%;
}

/* Navigation - Mobile First */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #FAFAFA;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.landing-nav {
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.nav-brand a {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111111;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #111111;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: none; /* Hidden on mobile by default */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FAFAFA;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-actions {
    display: none;
}

.nav-menu a {
    padding: 1.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #111111;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    text-decoration: none;
}

.nav-menu a:last-child {
    border-bottom: none;
}

.nav-menu a:hover {
    color: #8C7A5B;
}

.mobile-nav-login {
    color: #111111 !important;
    font-weight: 700 !important;
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: inline-flex;
    margin-top: 1rem;
}

/* Landing Page - Mobile First */
.landing-page {
    background-color: var(--bg-color);
}

.hero {
    text-align: center;
    padding: 10rem 1.5rem 8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.features-vertical {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 6rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 2rem;
    border-left: 2px solid #EEEEEE;
    position: relative;
    transition: var(--transition);
}

.feature-row:hover {
    border-left-color: var(--accent);
}

.feature-row h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-row p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-row::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EEEEEE;
    transition: var(--transition);
}

.feature-row:hover::before {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.1);
}

.about-brief {
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-brief p {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.4;
}

.pricing {
    text-align: center;
    padding: 6rem 1.5rem;
    position: relative;
    z-index: 10;
}

.pricing-header {
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    position: sticky;
    top: 65px; /* Below navbar on mobile */
    z-index: 20;
}

.pricing-toggle {
    background: #F8F9FA;
    border: 1px solid #EEEEEE;
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    position: relative;
    box-shadow: none;
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 0.85rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    flex: 1;
    text-align: center;
}

.toggle-btn.active {
    color: var(--text-main);
}

.toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    bottom: 6px;
    width: calc(50% - 6px);
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.pricing-toggle[data-active="yapimcilar"] .toggle-slider {
    transform: translateX(100%);
}

.pricing-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.pricing-cards {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    pointer-events: none;
}

@media (min-width: 768px) {
    .pricing-cards {
        flex-direction: row;
        align-items: stretch;
    }
}

.pricing-cards.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.price-card {
    background: var(--card-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.price-card.featured {
    background: #FFFFFF;
    color: var(--text-main);
    border: 1px solid var(--accent);
    box-shadow: 0 20px 60px rgba(0, 87, 255, 0.08);
}

.price-card.featured h3, 
.price-card.featured .price, 
.price-card.featured .price .period, 
.price-card.featured .price .vat {
    color: var(--text-main);
}

.price-card.featured .price-category {
    color: var(--accent);
}

.price-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: normal;
}

.price .vat {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: normal;
    opacity: 0.7;
}

.price-card.featured .price .period,
.price-card.featured .price .vat {
    color: var(--text-muted);
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-card li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-feature {
    color: var(--accent);
    font-weight: 600;
}

.price-card.featured .highlight-feature {
    color: var(--accent);
}

.btn-rounded {
    border-radius: 999px !important;
}

.price-card.featured li {
    border-bottom-color: var(--border-color);
}

.landing-footer {
    background-color: #FFFFFF;
    padding: 6rem 1.5rem 3rem;
    color: var(--text-main);
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .nav-brand {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
    font-weight: 500;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-main);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
}

.social-icons a:hover {
    background: var(--text-main);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
    }
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    padding: 1.5rem;
}

.login-box {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 440px;
    text-align: center;
    box-sizing: border-box;
}

.login-brand {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
    display: block;
    margin-bottom: 2rem;
}

.login-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.login-box .input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.login-box .input-group input {
    width: 100%;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.login-box .input-group input:focus {
    background: var(--card-bg);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.login-hint {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Dashboard Layout - Mobile First */
.dashboard-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 70px);
}

.sidebar {
    width: 100%;
    background: var(--card-bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sidebar .input-group {
    margin-bottom: 1.5rem;
}

.sidebar .input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sidebar .input-group input, .sidebar .input-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-color);
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.sidebar .input-group input:focus, .sidebar .input-group select:focus {
    border-color: var(--accent);
    background: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.main-content {
    flex: 1;
    padding: 1.5rem;
}

/* Actor Grid - Mobile First (2 columns) */
.actor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.actor-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.actor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.actor-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #E5E5EA;
    overflow: hidden;
}

.actor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.actor-card:hover .actor-image-wrapper img {
    transform: scale(1.03);
}

.card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

.btn-action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-action:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

/* Instagram style favorite button */
.btn-action.btn-favorite {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
}

.btn-action.btn-favorite:hover {
    background: transparent !important;
    transform: scale(1.2);
}

.btn-action.active.btn-favorite {
    color: #FF3B30 !important;
}

.btn-action.active.btn-select {
    background: var(--accent);
    color: #FFFFFF;
}

.btn-action svg, .btn-action i {
    width: 20px;
    height: 20px;
    transition: fill 0.2s ease, color 0.2s ease;
}

.btn-action.active.btn-favorite svg, .btn-action.active.btn-favorite i {
    fill: #FF3B30 !important;
    color: #FF3B30 !important;
    stroke: #FF3B30 !important;
}

.actor-info {
    padding: 0.85rem 1rem;
}

.actor-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #111111;
}

.actor-meta {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.actor-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.skill-tag {
    background: rgba(0, 0, 0, 0.03);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #555555;
    border: none;
    font-weight: 500;
}

/* Side Drawer - Mobile First */
.side-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.side-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.side-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
}

.drawer-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-close {
    background: var(--bg-color);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-close:hover {
    background: #E5E5EA;
}

.drawer-content {
    padding: 1.5rem;
}

.drawer-hero {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .drawer-hero {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .drawer-image {
        width: 200px !important;
        flex-shrink: 0;
    }
}

.drawer-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.drawer-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.drawer-meta {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    background: var(--bg-color);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-weight: 500;
}

.drawer-section {
    margin-bottom: 2rem;
}

.drawer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Animations - Netflix Vibe */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(17, 17, 17, 0.9);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Selection Dock */
.selection-dock {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 900;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.selection-dock.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.dock-count {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111111;
    white-space: nowrap;
}

.dock-avatars {
    display: flex;
    align-items: center;
}

.dock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    object-fit: cover;
    margin-left: -10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.dock-avatar:first-child {
    margin-left: 0;
}

.dock-avatar:hover {
    transform: translateY(-4px);
    z-index: 10;
}

.dock-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-dock-clear {
    background: none;
    border: none;
    color: #666666;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

.btn-dock-create {
    background: #111111;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-dock-create:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.2);
}

/* Drawer Typography & Details */
.drawer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #EEEEEE;
    letter-spacing: -0.01em;
}

.status-available {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #555555;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.status-available::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.btn-showreel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1.2rem;
    background: #111111;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-showreel:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 87, 255, 0.2);
}

.drawer-actions-inline {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.drawer-actions-inline .btn-action {
    position: static;
    opacity: 1;
    transform: none;
    background: #F4F5F7;
    color: #111111;
    box-shadow: none;
    border: 1px solid #E5E7EB;
}

.drawer-actions-inline .btn-action:hover {
    background: #EAECEF;
}

.drawer-actions-inline .btn-action.btn-favorite {
    background: transparent !important;
    border: none !important;
    color: #111111;
}

.drawer-actions-inline .btn-action.btn-favorite:hover {
    background: transparent !important;
    transform: scale(1.2);
}

.drawer-actions-inline .btn-action.active.btn-favorite {
    color: #FF3B30 !important;
}

.drawer-actions-inline .btn-action.active.btn-select {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    .card-actions {
        opacity: 1;
        transform: translateY(0);
    }
    
    .selection-dock {
        width: 90%;
        padding: 10px 16px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: space-between;
        border-radius: 16px;
    }
    
    .dock-count {
        font-size: 0.85rem;
    }
    
    .dock-avatar {
        width: 32px;
        height: 32px;
    }
    
    .dock-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-dock-create {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem 5rem;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-card {
        flex: 1;
        min-width: 300px;
    }
    
    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .price-card {
        flex: 1;
        min-width: 300px;
    }
    
    .dashboard-container {
        flex-direction: row;
    }
    
    .sidebar {
        width: 280px;
        height: calc(100vh - 70px);
        position: sticky;
        top: 70px;
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        overflow-y: auto;
    }
    
    .actor-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .side-drawer {
        width: 450px;
    }
    
    .drawer-hero {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .drawer-image {
        width: 150px;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .navbar {
        padding: 1.5rem 3rem;
    }
    
    .pricing-toggle-wrapper {
        top: 90px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border: none;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-menu a {
        padding: 0;
        border: none;
        font-family: var(--font-sans);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #555555;
        transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: #111111;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
    }
    
    .nav-actions.desktop-only {
        display: flex;
    }
    
    .btn-nav-login {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 2rem;
        background: transparent;
        color: #111111 !important;
        font-family: var(--font-sans);
        font-size: 0.85rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        border: 1px solid #111111;
        border-radius: 0;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .btn-nav-login:hover {
        background: #111111;
        color: #FFFFFF !important;
    }
    
    .btn-logout-nav {
        color: #ef4444 !important;
        font-weight: 600;
    }
    
    .mobile-nav-login {
        display: none !important;
    }
    
    .desktop-only {
        display: inline-flex;
    }
    
    .mobile-only {
        display: none;
    }
    
    .hero h1 {
        font-size: 5rem;
    }
    
    .actor-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .actor-info {
        padding: 1.5rem;
    }
    
    .actor-info h3 {
        font-size: 1.1rem;
    }
    
    .side-drawer {
        width: 500px;
    }
}

.alert {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-error {
    background: #FFF0F0;
    color: #FF3B30;
    border: 1px solid #FFD1D1;
}

/* Dashboard */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 70px);
}

.sidebar {
    background: var(--card-bg);
    border-right: 1px solid var(--border-color);
    padding: 2rem;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sidebar-header {
    margin-bottom: 2rem;
}

.main-content {
    padding: 2rem 4rem;
}

.content-header {
    margin-bottom: 2rem;
}

.content-header h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.content-header p {
    color: var(--text-muted);
}

.actor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.actor-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.actor-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: #eee;
}

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

.card-info {
    padding: 1.25rem;
}

.card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.age-city {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--bg-color);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

@media (max-width: 768px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .main-content {
        padding: 2rem;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

/* Elite Theme Styles - Editorial Redesign */
.elite-landing {
    font-family: var(--font-body);
    color: #111111;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

/* Typography Enhancements */
.elite-landing h1, 
.elite-landing h2, 
.elite-landing h3, 
.elite-landing h4, 
.elite-landing h5, 
.elite-landing h6,
.elite-landing .footer-logo {
    font-family: var(--font-serif);
    color: #111111;
    letter-spacing: -0.02em;
}

.elite-landing p {
    color: #555555;
    line-height: 1.8;
    font-weight: 300;
}

/* Editorial Hero */
.editorial-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0;
    background-color: #FAFAFA;
    position: relative;
}

.editorial-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.1);
    z-index: 0;
}

.editorial-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content-editorial {
    max-width: 600px;
    background: #FAFAFA;
    padding: 4rem 4rem 4rem 0;
}

.hero-content-editorial h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-content-editorial h1 span {
    display: block;
    font-style: italic;
    color: #8C7A5B;
    font-size: 0.8em;
    margin-left: 2rem;
}

.hero-content-editorial p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 400px;
}

/* Buttons */
.btn-editorial-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background-color: #111111;
    color: #FFFFFF !important;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid #111111;
}

.btn-editorial-primary:hover {
    background-color: transparent;
    color: #111111 !important;
}

.btn-editorial-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background-color: transparent;
    color: #111111 !important;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid #111111;
}

.btn-editorial-outline:hover {
    background-color: #111111;
    color: #FFFFFF !important;
}

/* Sections */
.editorial-section {
    padding: 10rem 0;
}

.bg-dark-editorial {
    background-color: #111111;
    color: #FAFAFA;
}

.bg-dark-editorial h2, 
.bg-dark-editorial h3 {
    color: #FAFAFA;
}

.bg-dark-editorial p {
    color: #A0A0A0;
}

.section-header-editorial {
    margin-bottom: 6rem;
    max-width: 700px;
}

.section-header-editorial .label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8C7A5B;
    margin-bottom: 1.5rem;
    display: block;
}

.section-header-editorial h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* Features Grid */
.editorial-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

@media (max-width: 992px) {
    .editorial-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .editorial-pricing-wrapper {
        grid-template-columns: 1fr;
    }
    
    .editorial-pricing-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(17, 17, 17, 0.1);
    }
}

@media (max-width: 768px) {
    .editorial-hero {
        padding: 6rem 0;
    }
    
    .editorial-hero::after {
        display: none;
    }
    
    .hero-content-editorial {
        padding: 2rem 0;
    }
    
    .hero-content-editorial h1 {
        font-size: clamp(3rem, 10vw, 4rem);
    }
    
    .editorial-features {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .editorial-section {
        padding: 6rem 0;
    }
    
    .editorial-pricing-card {
        padding: 3rem 2rem;
    }
}

.editorial-feature-item {
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    padding-top: 2rem;
}

.bg-dark-editorial .editorial-feature-item {
    border-top-color: rgba(250, 250, 250, 0.1);
}

.feature-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: #8C7A5B;
    margin-bottom: 1.5rem;
    display: block;
}

.editorial-feature-item h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

/* Pricing */
.editorial-pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(17, 17, 17, 0.1);
}

.editorial-pricing-card {
    background-color: #FAFAFA;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
}

.editorial-pricing-card:first-child {
    border-right: 1px solid rgba(17, 17, 17, 0.1);
}

.editorial-pricing-card.featured {
    background-color: #111111;
    color: #FAFAFA;
}

.editorial-pricing-card.featured .plan-name,
.editorial-pricing-card.featured .plan-price {
    color: #FAFAFA;
}

.editorial-pricing-card.featured .plan-desc,
.editorial-pricing-card.featured .card-body li {
    color: #A0A0A0;
}

.editorial-pricing-card.featured .card-top {
    border-bottom-color: rgba(250, 250, 250, 0.1);
}

/* Pricing Card Content */
.card-top {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.plan-name {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #111111;
    margin-bottom: 1.5rem;
}

.plan-price {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    color: #111111;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-family: var(--font-sans);
    vertical-align: top;
    margin-right: 0.2rem;
}

.plan-price .period {
    font-size: 1rem;
    font-family: var(--font-sans);
    color: #888;
}

.plan-desc {
    font-size: 1rem;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
}

.card-body li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: #555555;
    font-weight: 300;
    line-height: 1.5;
}

.card-body li::before {
    content: '—';
    margin-right: 1rem;
    color: #8C7A5B;
}

/* Footer */
.elite-footer {
    background-color: #111111;
    color: var(--color-ivory);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-col .footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand-col p {
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 300px;
    color: #94a3b8;
}

.footer-links-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   SOFT PREMIUM THEME (APPLE / NETFLIX VIBE)
   ========================================================================== */

:root {
    --soft-bg: #FBFBFD;
    --soft-surface: #FFFFFF;
    --soft-surface-hover: #FFFFFF;
    --soft-text-primary: #1D1D1F;
    --soft-text-secondary: #86868B;
    --soft-border: rgba(0, 0, 0, 0.06);
    --soft-accent: #1D1D1F;
    --soft-accent-text: #FFFFFF;
    --soft-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.soft-landing {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--soft-bg);
    color: var(--soft-text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Soft Navbar */
.soft-nav {
    background-color: rgba(251, 251, 253, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--soft-border);
    padding: 1.2rem 2rem;
}

.soft-nav .nav-brand a {
    color: var(--soft-text-primary);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.soft-nav .nav-menu a {
    color: var(--soft-text-secondary);
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    border: none;
    padding: 0.5rem 1rem;
}

.soft-nav .nav-menu a:hover {
    color: var(--soft-text-primary);
}

.btn-soft-nav-login {
    background-color: var(--soft-accent);
    color: var(--soft-accent-text) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-soft-nav-login:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Hero Section */
.soft-hero {
    position: relative;
    padding: 12rem 0 8rem;
    text-align: center;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm20 20h20v20H20V20zM0 20h20v20H0V20z' fill='%23000000' fill-opacity='0.01' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.soft-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #E0E7FF;
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #F3E8FF;
    bottom: -100px;
    right: -100px;
}

.soft-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.soft-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #FFFFFF;
    border: 1px solid var(--soft-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--soft-text-secondary);
    margin-bottom: 2rem;
}

.soft-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--soft-text-primary);
}

.soft-hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--soft-text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-soft-primary {
    background-color: var(--soft-accent);
    color: var(--soft-accent-text) !important;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-soft-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.btn-soft-secondary {
    background-color: #FFFFFF;
    color: var(--soft-text-primary) !important;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid var(--soft-border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.btn-soft-secondary:hover {
    background-color: #F5F5F7;
}

/* Sections */
.soft-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.soft-bg-alt {
    background-color: #F5F5F7;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23000000' fill-opacity='0.04'/%3E%3C/svg%3E");
    border-top: 1px solid var(--soft-border);
}

.soft-section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.soft-section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.soft-section-header p {
    color: var(--soft-text-secondary);
    font-size: 1.1rem;
}

/* Features Grid */
.soft-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.soft-feature-card {
    background: var(--soft-surface);
    border: 1px solid var(--soft-border);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--soft-shadow);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.soft-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.soft-icon-wrapper {
    width: 64px;
    height: 64px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--soft-text-primary);
}

.soft-icon-wrapper svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.2;
}

.soft-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.soft-feature-card p {
    color: var(--soft-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Toggle - LUXURY APPLE STYLE */
.soft-pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.soft-pricing-toggle-inner {
    background: #F5F5F7;
    padding: 0.3rem;
    border-radius: 100px;
    display: inline-flex;
    border: 1px solid rgba(0,0,0,0.03);
}

.soft-pricing-toggle button {
    background: transparent;
    border: none;
    color: var(--soft-text-secondary);
    padding: 0.8rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.soft-pricing-toggle button.active {
    background: #FFFFFF;
    color: var(--soft-text-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

/* Pricing Grid */
.soft-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.soft-pricing-card {
    background: var(--soft-surface);
    border: 1px solid var(--soft-border);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    box-shadow: var(--soft-shadow);
}

.soft-pricing-card.popular {
    background: #FFFFFF;
    border: 2px solid var(--soft-text-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--soft-text-primary);
    color: var(--soft-surface);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.soft-pricing-card .card-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--soft-border);
}

.soft-pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--soft-text-primary);
    margin-bottom: 1rem;
}

.soft-pricing-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    color: var(--soft-text-primary);
}

.soft-pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--soft-text-secondary);
}

.soft-pricing-card .card-header p {
    color: var(--soft-text-secondary);
    font-size: 0.9rem;
}

.soft-pricing-card .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex-grow: 1;
}

.soft-pricing-card .card-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--soft-text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.soft-pricing-card .card-features svg {
    width: 20px;
    height: 20px;
    color: var(--soft-text-primary);
}

.btn-soft-outline {
    display: block;
    text-align: center;
    background-color: transparent;
    color: var(--soft-text-primary) !important;
    padding: 1rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--soft-border);
    transition: all 0.3s ease;
}

.btn-soft-outline:hover {
    background-color: #F5F5F7;
}

.soft-pricing-card.popular .btn-soft-primary {
    display: block;
    text-align: center;
}

/* Footer */
.soft-footer {
    background-color: #1D1D1F;
    padding: 6rem 0 2rem;
    color: #F5F5F7;
}

.soft-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.soft-footer .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.soft-footer p {
    color: #86868B;
    font-size: 0.95rem;
}

.soft-footer h4 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.soft-footer a {
    display: block;
    color: #86868B;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.soft-footer a:hover {
    color: #FFFFFF;
}

.soft-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #86868B;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .soft-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .soft-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .soft-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .soft-nav {
        padding: 1rem;
    }
    .soft-hero {
        padding: 8rem 0 5rem;
    }
    .soft-hero-actions {
        flex-direction: column;
    }
    .soft-features-grid {
        grid-template-columns: 1fr;
    }
    .soft-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .soft-pricing-card {
        padding: 3rem 1.5rem 2.5rem;
        text-align: center;
        align-items: center;
    }
    .soft-pricing-card.popular {
        padding-top: 3.5rem;
    }
    .soft-pricing-card .card-features li {
        justify-content: center;
    }
    .soft-section-header {
        text-align: center;
    }
}

/* Mobile Nav Overrides for Soft Theme */
@media (max-width: 1023px) {
    .soft-nav .nav-menu {
        background: #FFFFFF;
        border-bottom: 1px solid var(--soft-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .soft-nav .nav-menu a {
        border-bottom: 1px solid var(--soft-border);
        color: var(--soft-text-primary);
        padding: 1rem;
    }
    .soft-nav .mobile-nav-login {
        color: var(--soft-bg) !important;
        background: var(--soft-text-primary);
        text-align: center;
        border-radius: 100px;
        margin: 1rem;
        padding: 0.8rem !important;
    }
}
