/* =========================================
   Prezlo - Landing Page Styles
   ========================================= */

/* =========================================
   CSS Variables
   ========================================= */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --accent: #f43f5e;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* =========================================
   Development Notice Banner
   ========================================= */
.dev-notice-banner {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    color: #1f2937;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dev-notice-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dev-notice-banner i {
    font-size: 1.1rem;
}

.dev-notice-banner strong {
    font-weight: 700;
}

/* =========================================
   Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* navbar height */
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-100);
    background-color: var(--dark-lighter);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.navbar-padding {
    padding: 100px 0;
}

/* =========================================
   Utility Classes
   ========================================= */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

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

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

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

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

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
    line-height: 1em;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.75rem;
}

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

.navbar-logo {
    height: 35px;
    width: auto;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-300) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.05);
}

.btn-nav,
.btn-nav-outline {
    line-height: 20px;
    padding: 10px 25px !important;
    border: 1px solid transparent !important;
    margin-left: 8px;
}

.btn-nav {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
}

/* Condensed nav for medium screens (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-nav {
        gap: 2px;
    }

    .nav-link {
        padding: 8px 12px !important;
        font-size: 0.875rem;
    }

    .btn-nav,
    .btn-nav-outline {
        padding: 8px 16px !important;
    }

    .nav-link-auth {
        padding: 6px 12px !important;
        font-size: 0.85rem;
    }
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-nav-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
}

.btn-nav-blue:hover {
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-nav-outline {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--white) !important;
}

.btn-nav-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* User Avatar Dropdown */
.user-avatar-toggle {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar-toggle.dropdown-toggle::after {
    display: none; /* Hide the dropdown caret */
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    border: 2px solid transparent;
}

.user-avatar:hover {
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.user-dropdown {
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 10px 0;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
}

.user-dropdown .dropdown-header {
    padding: 10px 20px;
}

.user-dropdown .user-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.user-dropdown .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.user-dropdown .dropdown-item {
    color: var(--gray-300);
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.user-dropdown .dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--white);
}

.user-dropdown .dropdown-item i {
    width: 20px;
    opacity: 0.7;
}

.user-dropdown .dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Auth Link in Navbar */
.nav-link-auth {
    display: flex;
    align-items: center;
    color: var(--gray-300) !important;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link-auth:hover {
    color: var(--white) !important;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.nav-link-auth i {
    font-size: 1.1rem;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
    background: var(--dark);
}

/* Extend hero background above the fold to cover any gaps */
.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--dark);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    overflow: hidden;
    pointer-events: none;
    will-change: transform;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.3);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.3);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(14, 165, 233, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-el {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.25rem;
    backdrop-filter: blur(5px);
}

.float-el-1 {
    top: 20%;
    left: 10%;
    animation: floatElement 6s ease-in-out infinite;
}

.float-el-2 {
    top: 60%;
    left: 5%;
    animation: floatElement 8s ease-in-out infinite 1s;
}

.float-el-3 {
    top: 30%;
    right: 5%;
    animation: floatElement 7s ease-in-out infinite 0.5s;
}

.float-el-4 {
    bottom: 20%;
    right: 10%;
    animation: floatElement 9s ease-in-out infinite 1.5s;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.badge-pill {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2) 0%, rgba(244, 63, 94, 0.1) 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: 50px;
    color: #fb7185;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-title-lead {
    display: block;
    font-size: 0.7em;
    font-weight: 500;
    opacity: 0.8;
}

.hero-title-line {
    display: block;
}

.hero-title-emphasis {
    display: block;
    font-size: 1.35em;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    padding: 0.1em 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
}

/* Hero Visual - Browser Mockup */
.hero-visual {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.browser-mockup {
    background: var(--dark-lighter);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: #10b981;
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 8px;
    color: var(--gray-400);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-url i {
    color: var(--success);
}

.browser-content {
    padding: 30px;
    min-height: 300px;
}

.mockup-nav {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 30px;
}

.mockup-hero {
    text-align: center;
    margin-bottom: 30px;
}

.mockup-title {
    height: 30px;
    width: 70%;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-radius: 8px;
    margin: 0 auto 15px;
}

.mockup-subtitle {
    height: 15px;
    width: 50%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 20px;
}

.mockup-btn {
    height: 40px;
    width: 150px;
    background: var(--gradient-primary);
    border-radius: 50px;
    margin: 0 auto;
}

.mockup-cards {
    display: flex;
    gap: 15px;
}

.mockup-card {
    flex: 1;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--white);
    color: var(--dark);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary);
}

.badge-1 {
    top: 80px;
    right: 0;
}

.badge-2 {
    bottom: 100px;
    left: 0;
    animation-delay: 1s;
}

.badge-2 i {
    color: var(--warning);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 14px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gray-500);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-500);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

/* =========================================
   Features Section
   ========================================= */
.features-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.feature-card {
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card.highlighted {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-light);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-400);
    margin: 0;
}

/* =========================================
   Process Section
   ========================================= */
.process-section {
    padding: 120px 0;
    background: var(--dark-lighter);
    position: relative;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    margin-top: 60px;
    position: relative;
}

.process-line {
    display: none;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray-400);
    margin: 0;
}

@media (min-width: 992px) {
    .process-line {
        display: block;
        position: absolute;
        top: 70px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary), var(--primary), transparent);
        z-index: 0;
    }
}

/* =========================================
   Pricing Section
   ========================================= */
.pricing-section {
    padding: 120px 0;
    background: var(--dark);
}

.pricing-card {
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.sale-ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 50px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 700;
}

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

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.pricing-header p {
    color: var(--gray-400);
    margin: 0;
}

.pricing-price {
    text-align: center;
    margin-bottom: 40px;
}

.price-original {
    display: block;
    font-size: 1.5rem;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    display: block;
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.price-period {
    display: block;
    color: var(--gray-400);
    font-size: 14px;
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    font-size: 1.1rem;
}

.pricing-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    margin-top: 20px;
}

.pricing-note i {
    margin-right: 5px;
}

.pricing-guarantee {
    margin-top: 60px;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--success);
    margin: 0 auto 20px;
}

.pricing-guarantee h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-guarantee p {
    color: var(--gray-400);
    max-width: 400px;
    margin: 0 auto;
}

/* =========================================
   Add-ons Section
   ========================================= */
.addons-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);
}

.addon-card {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.addon-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.addon-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.addon-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.addon-card p {
    color: var(--gray-400);
    margin-bottom: 15px;
    font-size: 15px;
}

.addon-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 500;
}

.addons-cta {
    padding-top: 40px;
}

.addons-cta .lead {
    color: var(--gray-300);
    margin-bottom: 20px;
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    padding: 120px 0;
    background: var(--dark);
}

.testimonial-card {
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray-500);
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);
}

.accordion-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--dark-lighter);
    color: var(--primary-light);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: var(--dark-lighter);
    color: var(--gray-400);
    padding: 20px 25px;
    line-height: 1.7;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -150px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
    padding: 120px 0;
    background: var(--dark);
}

.contact-card {
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 50px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: var(--gray-300);
    font-weight: 500;
    margin-bottom: 10px;
}

.form-control,
.form-select {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--white);
    padding: 14px 18px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    color: var(--white);
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-select option {
    background: var(--dark);
    color: var(--white);
}

/* Dark theme form fixes - ensure all text is visible */
.form-text,
.form-label,
small,
.text-muted,
.help-text,
.hint,
.form-hint {
    color: var(--gray-400) !important;
}

.required,
.text-danger,
.invalid-feedback {
    color: var(--accent) !important;
}

/* Input group addons */
.input-group-text {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
}

/* Select dropdowns - override Bootstrap defaults for dark theme */
.form-select {
    background-color: var(--dark) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px 12px !important;
    padding-right: 40px !important;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select:focus {
    background-color: var(--dark) !important;
}

select.form-control,
select.form-select {
    color: var(--white);
}

select.form-control option,
select.form-select option {
    background: var(--dark);
    color: var(--white);
}

/* Autofill override for dark theme */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--dark) inset !important;
    -webkit-text-fill-color: var(--white) !important;
    caret-color: var(--white);
    transition: background-color 5000s ease-in-out 0s;
}

.form-success {
    text-align: center;
    padding: 60px 30px;
}

.form-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray-400);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--dark-lighter);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .brand-text {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
}

.footer-desc {
    color: var(--gray-400);
    margin: 20px 0;
    max-width: 300px;
}

.footer-logo {
    width: 120px;
    height: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

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

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
}

/* =========================================
   Chat Widget
   ========================================= */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.4);
    transition: var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-height: 500px;
    background: var(--dark-lighter);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

.chat-header {
    background: var(--gradient-primary);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.chat-header h5 {
    font-size: 1rem;
    margin: 0;
}

.chat-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 250px;
}

.chat-message {
    margin-bottom: 15px;
}

.chat-message.bot .message-content {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 15px 15px 15px 5px;
    padding: 12px 16px;
    color: var(--gray-200);
    font-size: 14px;
    max-width: 90%;
}

.chat-message.user .message-content {
    background: var(--primary);
    border-radius: 15px 15px 5px 15px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 14px;
    max-width: 90%;
    margin-left: auto;
}

.chat-message p {
    margin: 0;
}

.chat-quick-replies {
    padding: 0 20px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-reply {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    color: var(--gray-300);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.quick-reply:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 18px;
    color: var(--white);
    font-size: 14px;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.chat-input button {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.chat-input button:hover {
    transform: scale(1.05);
}

/* =========================================
   Back to Top
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* =========================================
   Responsive Styles
   ========================================= */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.75rem;
    }

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

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark-lighter);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 15px;
    }

    .hero-section {
        padding-top: 100px;
    }

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

    .hero-visual {
        margin-top: 50px;
        padding: 20px;
    }

    .scroll-indicator {
        display: none;
    }

    .floating-badge {
        display: none;
    }

    .float-el {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-title-emphasis {
        font-size: 1.25em;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .price-current {
        font-size: 3rem;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .chat-window {
        width: 320px;
        right: -15px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-section .min-vh-100 {
        min-height: auto !important;
    }

    .hero-content {
        padding-top: 20px;
    }

    .badge-pill {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .hero-title-lead {
        font-size: 0.65em;
    }

    .hero-title-emphasis {
        font-size: 1.2em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-cta {
        margin-bottom: 30px;
    }

    .stat-item {
        min-width: 80px;
    }

    .browser-mockup {
        transform: scale(0.85);
        margin: -20px auto 0;
    }

    .hero-visual {
        margin-top: 30px;
        padding: 10px;
    }
}

/* =========================================
   Samples Showcase Section
   ========================================= */
.samples-section {
    padding: 120px 0;
    background: #000;
    overflow: hidden;
    position: relative;
}

/* Lighting effects */
.samples-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.samples-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.2;
}

.samples-glow-1 {
    width: 700px;
    height: 700px;
    background: var(--primary);
    top: -200px;
    left: -150px;
    animation: samplesGlowPulse 8s ease-in-out infinite;
}

.samples-glow-2 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    bottom: -150px;
    right: -100px;
    animation: samplesGlowPulse 10s ease-in-out infinite reverse;
}

.samples-glow-3 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation: samplesGlowPulseCenter 12s ease-in-out infinite;
}

@keyframes samplesGlowPulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.1);
    }
}

@keyframes samplesGlowPulseCenter {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.samples-section .container {
    position: relative;
    z-index: 1;
}

.samples-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.samples-slider {
    overflow: visible;
    padding: 50px 0;
}

.samples-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: center;
}

.sample-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.8);
    opacity: 0.4;
    filter: blur(2px);
}

/* Disable transitions during instant repositioning */
.samples-track.no-transition .sample-slide {
    transition: none !important;
}

.sample-slide.active {
    transform: scale(1.05);
    opacity: 1;
    filter: blur(0);
    z-index: 10;
}

.sample-slide.adjacent {
    transform: scale(0.88);
    opacity: 0.6;
    filter: blur(0);
}

.sample-card {
    background: var(--dark-lighter);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.sample-slide.active .sample-card {
    border-color: var(--primary);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.4), 0 0 100px rgba(99, 102, 241, 0.2);
}

.sample-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.4);
}

.sample-image {
    position: relative;
    aspect-ratio: 10 / 10;
    overflow: hidden;
    background: #000;
}

.sample-image img {
    width: 100%;
    height: auto;
    display: block;
    /* CSS variable set by JS based on actual image/container dimensions */
    --scroll-distance: 0px;
}

/* Scroll animation for active slide */
.sample-slide.active .sample-image img {
    animation: scrollThumbnail 10s ease-in-out infinite;
}

/* Reset animation and position only when hovering over the active slide itself */
.sample-slide.active:hover .sample-image img {
    animation: none;
    transform: translateY(0);
    opacity: 1;
}

@keyframes scrollThumbnail {
    0%, 5% {
        transform: translateY(0);
        opacity: 1;
    }
    35% {
        transform: translateY(var(--scroll-distance));
        opacity: 1;
    }
    55% {
        transform: translateY(var(--scroll-distance));
        opacity: 1;
    }
    60% {
        transform: translateY(var(--scroll-distance));
        opacity: 0;
    }
    61% {
        transform: translateY(0);
        opacity: 0;
    }
    66%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.sample-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.sample-card:hover .sample-overlay {
    opacity: 1;
}

.sample-overlay i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.sample-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.sample-info {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.sample-info h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.sample-info p {
    color: var(--gray-400);
    margin: 0;
    font-size: 0.9rem;
}

/* Slider Navigation */
.samples-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.samples-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.samples-nav-prev {
    left: 0;
}

.samples-nav-next {
    right: 0;
}

/* Slider Dots */
.samples-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.samples-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.samples-dot:hover,
.samples-dot.active {
    background: var(--primary);
}

/* =========================================
   Sample Preview Modal
   ========================================= */
.sample-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sample-modal.active {
    opacity: 1;
    visibility: visible;
}

.sample-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: var(--dark-lighter);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sample-modal-title {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.sample-modal-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sample-modal-btn {
    height: 40px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sample-modal-btn:hover {
    background: var(--primary);
}

.sample-modal-btn i {
    font-size: 1rem;
}

.sample-modal-close {
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-modal-close:hover {
    background: var(--danger, #ef4444);
}

.sample-modal-body {
    flex: 1;
    overflow: hidden;
}

.sample-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: var(--white);
}

/* Responsive Samples */
@media (max-width: 991px) {
    .sample-slide {
        flex: 0 0 50%;
    }

    .samples-slider-wrapper {
        padding: 0 50px;
    }

    .samples-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    /* Switch to simple stacked layout on mobile - no slider */
    .samples-slider-wrapper {
        padding: 0;
        position: static;
    }

    .samples-slider {
        overflow: visible;
        padding: 0;
    }

    .samples-track {
        display: flex;
        flex-direction: column;
        gap: 24px;
        transform: none !important;
        transition: none !important;
    }

    .sample-slide {
        flex: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        position: static !important;
    }

    .sample-card {
        max-width: 100%;
        transform: none !important;
        filter: none !important;
    }

    .sample-image {
        aspect-ratio: 16 / 10;
        filter: none !important;
    }

    .sample-image img {
        filter: none !important;
        transform: none !important;
    }

    /* Hide slider navigation on mobile */
    .samples-nav {
        display: none !important;
    }

    .samples-dots {
        display: none !important;
    }

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

    .samples-section .section-header {
        margin-bottom: 30px;
    }

    .samples-section .section-title {
        font-size: 1.5rem;
    }

    .samples-section .section-subtitle {
        font-size: 0.9rem;
    }

    .sample-info {
        padding: 15px;
    }

    .sample-info h4 {
        font-size: 1.1rem;
    }

    .sample-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .samples-section {
        padding: 50px 0;
    }

    .samples-track {
        gap: 20px;
    }

    .sample-image {
        aspect-ratio: 4 / 3;
    }

    /* Sample modal header - compact layout for mobile */
    .sample-modal-header {
        padding: 8px 12px;
    }

    .sample-modal-title {
        display: none;
    }

    .sample-modal-controls {
        width: 100%;
        justify-content: space-between;
    }

    .sample-modal-btn {
        height: 32px;
        padding: 0 10px;
        font-size: 0.75rem;
    }

    .sample-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-left: auto;
    }
}
