/* REELIFY - Identisk kopia från Shopify Theme */
/* Theme: Dawn (ID: 180796653900) */
/* Shop: icgbhy-m9.myshopify.com */

/* Fonts loaded via <link> in App.razor for non-blocking load */

/* CSS Variables från Shopify settings_data.json */
:root {
    /* Colors - scheme-1 */
    --color-background: 0,0,0;
    --color-foreground: 225,230,253;
    --color-background-contrast: 128,128,128;
    --color-shadow: 230,230,230;
    --color-button: 46,0,229;
    --color-button-text: 230,230,230;
    --color-secondary-button: 0,0,0;
    --gradient-background: #000000;

    /* Custom colors */
    --bg-primary: #000000;
    --bg-card: #0a0a0a;
    --bg-card-gradient: linear-gradient(180deg, #000000 0%, #000107 100%);
    --text-primary: #E1E6FD;
    --text-secondary: #A8ACBD;
    --text-muted: #9A9AA0;
    --accent-blue: #3B82F6;
    --accent-purple: #2e00e5;
    --accent-deep-blue: #1A00CC;
    --border-color: #1b2738;

    /* Typography */
    --font-body-family: 'Inter', sans-serif;
    --font-heading-family: 'Poppins', sans-serif;
    --font-body-weight: 500;
    --font-heading-weight: 600;

    /* Borders & Radius */
    --buttons-radius: 24px;
    --inputs-radius: 20px;
    --media-radius: 20px;
    --card-radius: 16px;
    --badge-corner-radius: 20px;

    /* Page width */
    --page-width: 140rem;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 140px; /* Account for fixed header */
}

/* Custom scrollbar for modern look */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-purple), var(--accent-blue));
}

body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100%;
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 0.06rem;
    line-height: 1.8;
    font-family: var(--font-body-family);
    font-weight: var(--font-body-weight);
    color: rgba(var(--color-foreground), 0.75);
    background-color: rgb(var(--color-background));
    overflow-x: hidden;
}

main {
    background-color: #000000;
}

@media screen and (min-width: 750px) {
    body {
        font-size: 1.6rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading-family);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #ffffff, #6E6E74);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gradient-text-blue {
    background: linear-gradient(90deg, #005aff, #ffffff 50%, #005aff);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 12px rgba(0, 195, 255, 0.3);
}

/* Shimmer Animation */
@keyframes shimmer-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.shimmer {
    animation: shimmer-text 5s linear infinite;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 3rem;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading-family);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 1rem 0;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:active {
    transform: scale(0.95);
}

.nav-menu a.active {
    color: var(--accent-blue);
}

.nav-menu a.active::before {
    width: 100%;
}

/* Nav ripple effect */
.nav-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 90, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: navRipple 0.6s ease-out;
    pointer-events: none;
}

@keyframes navRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    padding: 0.5rem 1.5rem !important;
    border-radius: var(--buttons-radius);
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 90, 255, 0.3);
    transition: all 0.3s ease !important;
}

.nav-cta::before {
    display: none !important;
}

.nav-cta:hover {
    box-shadow: 0 6px 25px rgba(0, 90, 255, 0.5);
    transform: translateY(-3px) scale(1.02) !important;
}

.nav-cta:active {
    transform: translateY(0) scale(0.98) !important;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Header Icon Buttons with Hover Reveal */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Header Action Buttons - Same blue style as primary buttons */
.header-icon-btn {
    position: relative;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 90, 255, 0.3);
}

.icon-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.header-icon-btn svg {
    color: white;
    transition: all 0.3s ease;
}

/* Stylish Tooltip Label */
.icon-btn-label {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    transform: translateX(-50%) translateY(8px) scale(0.8);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    border: 1px solid rgba(0, 90, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(0, 90, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Tooltip arrow with glow */
.icon-btn-label::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.95);
    filter: drop-shadow(0 -2px 4px rgba(0, 90, 255, 0.3));
}

/* Glowing underline effect on tooltip */
.icon-btn-label::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    transition: transform 0.3s ease 0.1s;
}

.header-icon-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 90, 255, 0.5),
                0 0 40px rgba(0, 90, 255, 0.3),
                0 0 60px rgba(139, 92, 246, 0.2);
}

.header-icon-btn:hover svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.header-icon-btn:hover .icon-btn-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.header-icon-btn:hover .icon-btn-label::after {
    transform: translateX(-50%) scaleX(1);
}

.header-icon-btn:active {
    transform: translateY(-2px) scale(1.05);
}

/* Subtle glow pulse on idle */
@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 90, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 90, 255, 0.5), 0 0 30px rgba(0, 90, 255, 0.2);
    }
}

.header-icon-btn {
    animation: iconGlow 3s ease-in-out infinite;
}

.header-icon-btn:hover {
    animation: none;
}

/* Prominent Order Button */
.header-order-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    border: none;
    border-radius: 24px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 90, 255, 0.3);
    animation: iconGlow 3s ease-in-out infinite;
}

.header-order-btn span {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.header-order-btn svg {
    color: white;
    transition: all 0.3s ease;
}

.header-order-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 90, 255, 0.5),
                0 0 40px rgba(0, 90, 255, 0.3),
                0 0 60px rgba(139, 92, 246, 0.2);
    animation: none;
}

.header-order-btn:hover svg {
    transform: rotate(-5deg) scale(1.1);
}

.header-order-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Package Selection Effect */
.clickable-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.clickable-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 90, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.clickable-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 90, 255, 0.25), 0 0 30px rgba(139, 92, 246, 0.15);
}

.clickable-card:hover::before {
    width: 300%;
    height: 300%;
}

.clickable-card:active {
    transform: translateY(-5px) scale(0.98);
}

/* Selection ripple animation */
@keyframes selectRipple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.clickable-card.selecting::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 90, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: selectRipple 0.8s ease-out forwards;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }
}

/* Action Modals */
.action-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-content-booking {
    max-width: 480px;
    padding: 0;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-content-booking .booking-widget,
.modal-content-booking .contact-widget {
    border: none;
    border-radius: 0;
}

.contact-widget {
    background: linear-gradient(180deg, #0a0a12 0%, #000000 100%);
    max-width: 480px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    padding: 32px 24px 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(0, 90, 255, 0.1) 0%, transparent 100%);
}

.contact-header .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.contact-header p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.contact-body {
    padding: 24px;
}

.contact-body .form-group {
    margin-bottom: 1rem;
}

.contact-body .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.contact-body .form-group input,
.contact-body .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-body .form-group input::placeholder,
.contact-body .form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-body .form-group input:focus,
.contact-body .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.contact-body .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 90, 255, 0.3);
}

.modal-close:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 90, 255, 0.5);
}

.modal-content h2,
.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modal-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.modal-content .form-group {
    margin-bottom: 1rem;
}

.modal-content .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 90, 255, 0.3);
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

@media (max-width: 1250px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
        background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
        border: none;
        box-shadow: 0 4px 15px rgba(0, 90, 255, 0.3);
        color: white;
    }

    /* Header with menu open - instant black background */
    .header.menu-open {
        background: rgba(0, 0, 0, 1) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: none !important;
    }

    /* Full-screen overlay when menu is open */
    .header.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: -1;
    }

    .nav-menu.active li a {
        font-size: 2rem;
        padding: 1rem 0;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 2rem 3rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    background: #000;
    isolation: isolate; /* Create stacking context */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: -1;
    opacity: 1;
}

/* Fallback poster for video */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #000 50%, #0a0a1a 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: white;
    font-weight: 600;
    font-size: 1.75rem;
    border-radius: var(--buttons-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 90, 255, 0.4);
}

.hero-heading {
    display: block;
    margin-bottom: 1.5rem;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
    font-size: 2em;
}

/* Rotating text container */
.rotating-text {
    position: relative;
    display: block;
    height: 75px;
    width: 100%;
}

.rotating-text-item {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 57.2px;
    font-weight: 900;
    line-height: 75px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    background: linear-gradient(90deg, #888 0%, #fff 50%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: typewriterReveal 9s infinite;
    clip-path: inset(0 100% 0 0);
}

.rotating-text-item::after {
    content: '|';
    position: absolute;
    right: -10px;
    top: 0;
    color: #fff;
    animation: cursorBlink 0.6s infinite;
    opacity: 0;
}

@keyframes typewriterReveal {
    0% {
        opacity: 1;
        clip-path: inset(0 100% 0 0);
    }
    2% {
        opacity: 1;
        clip-path: inset(0 100% 0 0);
    }
    15% {
        opacity: 1;
        clip-path: inset(0 0% 0 0);
    }
    30% {
        opacity: 1;
        clip-path: inset(0 0% 0 0);
    }
    35% {
        opacity: 0;
        clip-path: inset(0 0% 0 0);
    }
    100% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.rotating-text-item:nth-child(1) {
    animation-delay: 0s;
}

.rotating-text-item:nth-child(2) {
    animation-delay: 3s;
}

.rotating-text-item:nth-child(3) {
    animation-delay: 6s;
}

.hero-tagline {
    font-size: 17.6px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

/* Hero Grid Layout */
.hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

/* Holographic Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hologram Video */
.hologram-video {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-visual {
        order: -1;
    }

    .hologram-video {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .type-line {
        font-size: 32px;
        white-space: normal;
        text-align: left;
    }

    .hero-visual {
        display: none;
    }
}

/* CTA Button */
.btn-primary, .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.75rem;
    border-radius: var(--buttons-radius);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 90, 255, 0.2);
}

.btn-primary::before, .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover, .button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 90, 255, 0.5), 0 0 60px rgba(46, 0, 229, 0.3);
    background-position: 100% 0;
}

.btn-primary:hover::before, .button:hover::before {
    left: 100%;
}

.btn-primary:active, .button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 20px rgba(0, 90, 255, 0.3);
}

/* Logo Carousel */
.logo-carousel {
    padding: 6rem 0 2rem 0;
    overflow: hidden;
    background: var(--bg-primary);
    text-align: center;
}

.logo-carousel h3,
.carousel-heading {
    font-family: var(--font-heading-family);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.carousel-wrapper {
    position: relative;
    max-width: var(--page-width);
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: nowrap;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 40px;
    width: 120px;
    height: 40px;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

@keyframes scroll-logos {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Section Base */
.section {
    padding: 80px 32px;
    max-width: var(--page-width);
    margin: 0 auto;
    position: relative;
}

/* Scroll reveal animations */
.section-header,
.vision-content,
.vision-image,
.video-container {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.visible,
.vision-content.visible,
.vision-image.visible,
.video-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for vision grid */
.vision-content.visible {
    transition-delay: 0.1s;
}

.vision-image.visible {
    transition-delay: 0.3s;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 57.2px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 17.6px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 44px;
    }
}

/* Section Label */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent-blue);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.section-label-icon {
    font-size: 1.2rem;
}

#faq .section-label,
#vision .section-label,
.vision-content .section-label {
    justify-content: flex-start;
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 975px) {
    .vision-grid {
        grid-template-columns: 1fr;
    }
}

.vision-content h2 {
    font-size: 57.2px;
    margin-bottom: 1.5rem;
}

.vision-content p {
    font-size: 17.6px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.vision-content blockquote {
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--accent-blue);
    padding-left: 1rem;
    margin-top: 2rem;
    font-size: 17.6px;
    line-height: 1.6;
}

.vision-portraits {
    display: flex;
    gap: 5rem;
    justify-content: center;
    align-items: flex-start;
}

.vision-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.vision-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 133, 255, 0.3);
    position: relative;
    z-index: 2;
    animation: founderPulse 4s ease-in-out infinite;
}

/* Rotating ring animation */
.vision-image::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    width: 175px;
    height: 175px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent-blue);
    border-right-color: var(--accent-purple);
    animation: founderRing 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Second rotating ring (opposite direction) */
.vision-image::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: rgba(0, 90, 255, 0.4);
    border-left-color: rgba(139, 92, 246, 0.4);
    animation: founderRing 12s linear infinite reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes founderPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 133, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 133, 255, 0.5), 0 0 60px rgba(139, 92, 246, 0.2);
    }
}

@keyframes founderRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.founder-name {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.founder-label {
    display: block;
    margin-top: 0.2rem;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Features Section */
.features-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--page-width);
    margin: 0 auto;
    justify-content: center;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--bg-card-gradient);
    border: 2px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
}

.feature-card:hover {
    border-color: rgba(0, 90, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 90, 255, 0.15);
}

.feature-icon {
    font-size: inherit;
    display: inline;
    margin-right: 0.5rem;
    filter: grayscale(100%) brightness(1.5);
    -webkit-filter: grayscale(100%) brightness(1.5);
}

.feature-card:hover .feature-icon {
    filter: brightness(1.2) sepia(100%) hue-rotate(190deg) saturate(300%);
    -webkit-filter: brightness(1.2) sepia(100%) hue-rotate(190deg) saturate(300%);
}

.feature-card h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    white-space: nowrap;
}

.feature-title {
    margin-left: 0.5rem;
}

.feature-card:hover .feature-title {
    background: linear-gradient(90deg, #ffffff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    font-size: 1.4rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Smart Choice / Comparison Section */
.smart-choice-section {
    background-color: #000000;
    padding: 80px 32px;
    color: #E6E6E6;
    text-align: center;
}

.smart-choice-inner,
.smart-choice-container {
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.smart-choice-heading {
    font-size: 57.2px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #6E6E74);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0;
    transform: scale(0.9);
    filter: blur(8px);
    transition: all 1.2s ease-out;
    margin-bottom: 24px;
}

.smart-choice-heading.animate {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    animation: shimmer-text 5s linear infinite;
}

.smart-choice-subtext {
    color: #A8ACBD;
    margin-bottom: 48px;
    text-align: center;
    padding: 0 clamp(16px, 4vw, 24px);
    font-size: 17.6px;
}

.smart-choice-container {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 0 16px;
}

/* Glow Cards */
.glow-card {
    flex: 1 1 300px;
    background: linear-gradient(180deg, #000000 0%, #000107 100%);
    border: 1px solid #1b2738;
    border-radius: 16px;
    padding: 32px 24px;
    min-height: 450px;
    position: relative;
    z-index: 1;
    color: #c2e6ff;
    text-align: left;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out, box-shadow 0.3s ease;
}

.glow-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.glow-card:hover {
    box-shadow: 0 20px 40px rgba(0, 90, 255, 0.1);
}

.glow-card h3 {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.reelify-box {
    background-color: #1A00CC !important;
    background: #1A00CC !important;
}

.reelify-heading {
    font-size: 35px !important;
    font-weight: 900;
    background: linear-gradient(90deg, #005aff, #ffffff 50%, #005aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(0, 195, 255, 0.3);
    margin: 0;
}

.price-tag {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #6E6E74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    text-align: left;
}

.glow-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.glow-card li {
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: #E1E6FD;
    display: flex;
    align-items: center;
}

.blue-check::before {
    content: "+";
    color: #005aff;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    margin-right: 8px;
}

.red-x::before, .gray-cross::before {
    content: "–";
    color: #8a8a8a;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    margin-right: 8px;
}

/* Badge styling */
.badge, .badge-top-right {
    --bg-default: linear-gradient(to bottom, #131313 0%, #030303 100%);
    --border-grad: linear-gradient(90deg, #0a0a0a, #005aff 50%, #0a0a0a);
    position: absolute;
    top: 0;
    right: 12px;
    padding: 0.4rem 1.5rem;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 20px;
    color: #fff;
    background-image: var(--bg-default), var(--border-grad);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent;
    box-shadow: 0 0 6px rgba(0, 120, 255, 0.2), inset 0 0 4px rgba(0, 120, 255, 0.12);
    animation: pulseBadge 2.5s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 6px rgba(0, 120, 255, 0.2), inset 0 0 4px rgba(0, 120, 255, 0.12);
    }
    50% {
        box-shadow: 0 0 14px rgba(0, 90, 255, 0.7), inset 0 0 10px rgba(0, 90, 255, 0.25);
    }
}

/* Card slider - dots & counter hidden on desktop */
.card-slider-dots,
.card-slider .slide-counter {
    display: none;
}

/* Pricing Cards */
.pricing-grid {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 20px 0 10px 0;
    position: relative;
    z-index: 1;
}

.package-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1.5rem;
}

.package-cta-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.pricing-card {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    background: var(--bg-card-gradient);
    border: 2px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 32px 24px;
    min-height: 450px;
    position: relative;
    text-align: left;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease,
                border-color 0.3s ease,
                opacity 0.8s ease-out;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 0 30px 60px rgba(0, 90, 255, 0.4),
                0 0 60px rgba(0, 90, 255, 0.25),
                0 0 120px rgba(139, 92, 246, 0.2);
    border-color: var(--accent-blue) !important;
}

.pricing-card.featured {
    background-color: var(--accent-deep-blue) !important;
    background: var(--accent-deep-blue) !important;
}

.pricing-card.featured:hover {
    border-color: var(--accent-purple) !important;
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.4),
                0 0 50px rgba(139, 92, 246, 0.25),
                0 0 100px rgba(0, 90, 255, 0.15);
}

.pricing-card h3 {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px 0;
    transition: background 0.4s ease;
}

.pricing-card:hover h3 {
    background: linear-gradient(90deg, #ffffff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.featured h3 {
    font-size: 35px;
    background: linear-gradient(90deg, #005aff, #ffffff 50%, #005aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(0, 195, 255, 0.3);
}

.pricing-card .package-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: -16px 0 20px 0;
    font-weight: 400;
}

.pricing-card .package-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-style: italic;
}

.pricing-card .popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-blue), #8B5CF6);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .price {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #6E6E74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card li::before {
    content: '+';
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 16px;
    margin-right: 8px;
}

.pricing-card:not(.featured) li::before {
    content: '–';
    color: #8a8a8a;
}

.check-list li::before {
    content: none !important;
}

.check-icon {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.price-vat {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Pricing Card Button - Hidden by default, show on hover */
.pricing-card .btn-primary {
    margin-top: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.pricing-card:hover .btn-primary {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Background glow effect on hover for clickable pricing cards */
.pricing-card.clickable-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(ellipse at center, rgba(0, 90, 255, 0.3) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    z-index: 0;
    transform: scale(0.5);
}

.pricing-card.clickable-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.pricing-card.clickable-card.featured::before {
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.35) 0%, rgba(0, 90, 255, 0.15) 40%, transparent 70%);
}

.pricing-card.clickable-card > * {
    position: relative;
    z-index: 1;
}

/* Title glow on hover */
.pricing-card.clickable-card:hover h3 {
    text-shadow: 0 0 20px rgba(0, 90, 255, 0.5);
}

.pricing-card.clickable-card.featured:hover h3 {
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
}

/* Video Section */
.video-section {
    background-color: #000000;
    padding: 80px 32px;
    max-width: var(--page-width);
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-sound-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.08);
}

/* Play overlay button (center of video, shown before play) */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.15);
}

.play-overlay-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    transition: all 0.2s;
}

.video-play-overlay:hover .play-overlay-icon {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.08);
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-play-btn {
    display: none !important;
}

.video-play-btn-UNUSED {
    position: absolute;
    bottom: 1.5rem;
    right: 5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}


/* Stats Grid */
.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    max-width: 430px;
    background: var(--bg-card-gradient);
    border-radius: var(--card-radius);
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    z-index: -1;
}

.stat-card .stat-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    display: block;
    border: 1px solid var(--border-color);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.stat-card .stat-content {
    padding: 24px;
}

.stat-card h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #6E6E74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    text-align: left;
}

.stat-card p {
    font-size: 16px;
    color: var(--text-primary);
    text-align: left;
}

/* Stat Card Hover Effects */
.stat-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 90, 255, 0.15),
                0 0 0 1px rgba(0, 90, 255, 0.3);
}

.stat-card::before {
    transition: border-color 0.4s ease;
}

.stat-card:hover::before {
    border-color: rgba(0, 90, 255, 0.4);
}

.stat-card .stat-image {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.4s ease;
}

.stat-card:hover .stat-image {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.stat-card h3 {
    transition: background 0.4s ease;
}

.stat-card:hover h3 {
    background: linear-gradient(90deg, #ffffff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card .stat-content {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-card:hover .stat-content {
    transform: translateY(-2px);
}

/* Process Section */
.process-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: var(--page-width);
    margin: 0 auto;
}

.process-card {
    flex: 1;
    min-width: 250px;
    max-width: 430px;
    background: var(--bg-card-gradient);
    border-radius: var(--card-radius);
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.4s ease-out;
    cursor: pointer;
}

.process-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 90, 255, 0.2);
}

.process-card:hover::before {
    border-color: var(--accent-blue);
}

.process-card:hover .stat-image {
    filter: brightness(1.1);
}

.process-card:hover .step-number {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 90, 255, 0.5);
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    z-index: -1;
    transition: border-color 0.3s ease;
}

.process-card .step-number {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 90, 255, 0.4), rgba(139, 92, 246, 0.4));
    border: 2px solid rgba(0, 90, 255, 0.6);
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.process-card .step-number strong {
    font-size: 22px;
    font-weight: 800;
    display: block;
}

.process-card .step-content {
    padding: 24px;
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #6E6E74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.process-card p {
    font-size: 16.5px;
    color: var(--text-primary);
    text-align: left;
    margin: 0;
}

.process-card .stat-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    display: block;
    border: 1px solid var(--border-color);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Guarantee Section */
.guarantee-section {
    --bg: #000;
    --dot: #6FAEFF;
    position: relative;
    background: var(--bg);
    overflow: hidden;
    padding: 80px 32px;
    color: #E6E6E6;
    text-align: center;
}

.guarantee-section::before {
    content: "";
    position: absolute;
    width: min(1300px, 100%);
    left: 50%;
    transform: translateX(-50%);
    top: -12vh;
    bottom: -12vh;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22'><polygon points='8,9 14,11 8,13' fill='%236FAEFF'/></svg>");
    background-size: 22px 22px;
    background-repeat: repeat;
    -webkit-mask-image: radial-gradient(ellipse 62% 60% at 50% 50%, #fff 24%, rgba(255,255,255,.70) 52%, transparent 70%);
    mask-image: radial-gradient(ellipse 62% 60% at 50% 50%, #fff 24%, rgba(255,255,255,.70) 52%, transparent 70%);
    opacity: .20;
    pointer-events: none;
}

.guarantee-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 82% 64% at 50% 50%, rgba(0,0,0,0) 32%, rgba(0,0,0,.55) 66%, #000 100%),
                linear-gradient(to left, rgba(0,0,0,0) 65%, rgba(0,0,0,.65) 100%),
                linear-gradient(to right, rgba(0,0,0,0) 65%, rgba(0,0,0,.65) 100%);
    pointer-events: none;
}

.guarantee-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: clamp(50px, 6vw, 50px) clamp(16px, 4vw, 32px);
    text-align: center;
}

.guarantee-badge {
    display: block;
    width: clamp(68px, 7.5vw, 108px);
    height: auto;
    margin: 0 auto 12px;
    animation: coin-bob 6s ease-in-out infinite;
}

@keyframes coin-bob {
    0%, 100% { transform: translateY(0) rotateY(0); }
    50% { transform: translateY(-4px) rotateY(2deg); }
}

.guarantee-section h2 {
    font-size: 57.2px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: scale(0.9);
    filter: blur(8px);
    transition: all 1.2s ease-out;
}

.guarantee-section h2.animate {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.guarantee-text {
    color: var(--text-secondary);
    margin: 0 auto 48px;
    max-width: 900px;
    font-size: clamp(16px, 1.8vw, 17.6px);
    line-height: 1.65;
}

/* FAQ Section */
#faq .section-header {
    text-align: left;
}

#faq .section-header h2 {
    text-align: left;
}

.faq-list {
    max-width: var(--page-width);
    margin: 0;
    padding: 0;
}

#faq .faq-item {
    text-align: left;
}

#faq .faq-question {
    justify-content: flex-start;
    text-align: left;
}

#faq .faq-question::after {
    margin-left: auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-emoji {
    margin-right: 1rem;
    font-size: 2rem;
    flex-shrink: 0;
    filter: grayscale(100%) brightness(0.5) sepia(100%) hue-rotate(180deg) saturate(5) brightness(1.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body-family);
}

.faq-question::after {
    content: '+';
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
    font-size: 1.5rem;
    line-height: 1.7;
    padding-left: 2.8rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-answer ul li {
    padding: 0.75rem 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--accent-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.faq-answer ul li strong {
    color: var(--text-primary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, rgba(0, 90, 255, 0.05) 0%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 40px rgba(0, 90, 255, 0.15);
}

.testimonial-card.featured {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(0, 90, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.testimonial-result {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.result-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    background: radial-gradient(circle at center 60%, rgba(0, 90, 255, 0.1) 0%, transparent 60%);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

#contact .section-header {
    margin-bottom: 2.5rem;
}

#contact .section-header h2,
#contact .section-header .contact-heading {
    margin-bottom: 0.5rem;
}

.contact-heading {
    font-size: 57.2px;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .contact-heading {
        font-size: 46px !important;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 32px !important;
    }
}

#contact .contact-info {
    display: none;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-option {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 2rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

.contact-option.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-option h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-option > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

.contact-option .contact-form {
    opacity: 1;
    transform: none;
    max-width: 100%;
}

.contact-form.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.6rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--inputs-radius);
    color: var(--text-primary);
    font-family: var(--font-body-family);
    font-size: 1.6rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Autofill dark mode override */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill {
    -webkit-text-fill-color: var(--text-primary) !important;
    -webkit-box-shadow: 0 0 0 1000px #0a0a12 inset !important;
    border-color: var(--border-color) !important;
    caret-color: var(--text-primary);
}

/* Prevent browser validation styling on email/invalid inputs */
input:invalid,
input:-moz-ui-invalid {
    box-shadow: none !important;
    outline: none;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

/* Disable browser spellcheck/grammar underlines */
input::spelling-error,
textarea::spelling-error {
    text-decoration: none;
}

input::grammar-error,
textarea::grammar-error {
    text-decoration: none;
}

/* Contact Info Column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    transition: border-color 0.3s ease;
}

.contact-item:hover {
    border-color: var(--accent-blue);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-text p,
.contact-text a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent-blue);
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-3px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--bg-card-gradient);
    border: 2px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    width: 100%;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form-wrapper .contact-form {
    opacity: 1;
    transform: none;
    max-width: 100%;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-social {
        justify-content: center;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(180deg, rgba(0, 90, 255, 0.08) 0%, transparent 100%);
    padding: 5rem 2rem;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 20px;
    color: white;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.newsletter-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem;
    transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--accent-blue);
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: var(--text-muted);
}

.newsletter-input-group .btn-primary {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.newsletter-feature .feature-icon {
    font-size: 1.25rem;
}

.success-message {
    color: #10b981;
    font-weight: 500;
    padding: 1rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 16px;
    }

    .newsletter-input-group .btn-primary {
        width: 100%;
        justify-content: center;
        border-radius: 50px;
    }

    .newsletter-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }
}

/* Footer - Diskret med företagsinfo */
.footer {
    padding: 6rem 2rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.footer-content {
    max-width: var(--page-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-row {
    max-width: var(--page-width);
    margin: 0 auto 3rem;
    text-align: left;
}

.footer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-heading {
    color: var(--accent-blue);
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.2s;
}

.footer-menu li a:hover {
    color: var(--accent-blue);
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-address p {
    color: var(--text-secondary);
    font-size: 1.6rem;
    margin: 0;
}

.footer-company {
    font-weight: 600;
    color: white !important;
    margin-bottom: 0.5rem !important;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: var(--text-secondary);
    transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.footer-social svg {
    width: 28px;
    height: 28px;
}

/* Legal Bar - Bottom of page */
.legal-bar {
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
}

.legal-bar-content {
    max-width: var(--page-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-copy {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.legal-divider {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 1.15rem;
}

.legal-bar a {
    color: var(--text-muted);
    font-size: 1.15rem;
    text-decoration: none;
    transition: opacity 0.2s, color 0.2s;
}

.legal-bar a:hover {
    opacity: 1;
    color: var(--accent-blue);
}

/* Legal Modals */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 2rem;
}

.legal-modal.active {
    opacity: 1;
    visibility: visible;
}

.legal-modal-content {
    background: var(--bg-card-gradient);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-modal-content h2,
.legal-modal-title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.legal-modal-body {
    color: var(--text-secondary);
    font-size: 1.3rem;
    line-height: 1.7;
}

.legal-modal-body .legal-updated {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.legal-modal-body h3,
.legal-section-title {
    color: white;
    font-size: 1.6rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-modal-body p {
    margin-bottom: 1rem;
}

.legal-modal-body a {
    color: var(--accent-blue);
    text-decoration: none;
}

.legal-modal-body a:hover {
    text-decoration: underline;
}

.legal-modal-body strong {
    color: white;
}

.legal-modal-body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-modal-body li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2.5rem;
    }

    .legal-bar-content {
        gap: 0.5rem;
    }

    .legal-divider {
        display: none;
    }

    .legal-bar-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-column {
        align-items: flex-start;
    }

    .footer-logo-row {
        text-align: left;
    }
}

/* ============================================
   SCROLL ANIMATIONS - Enkel och pålitlig
   ============================================ */

/* Allt är synligt - inga gömda element */
.section-header,
.pricing-card,
.stat-card,
.process-card,
.testimonial-card,
.vision-content,
.vision-image,
.faq-item,
.contact-info,
.contact-form-wrapper,
.guarantee-badge,
.video-container,
.logo-carousel {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HOVER EFFECTS - Enkla interaktiva effekter
   ============================================ */

/* Testimonial cards - subtle tilt */
.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:nth-child(1) { transform: rotate(-0.5deg); }
.testimonial-card:nth-child(2) { transform: rotate(0.3deg); }
.testimonial-card:nth-child(3) { transform: rotate(0.5deg); }

.testimonial-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 90, 255, 0.15);
}

/* Testimonial stars */
.testimonial-stars {
    opacity: 1;
    transform: scale(1);
    animation: star-sparkle 2s ease-in-out 0.5s;
}

@keyframes star-sparkle {
    0%, 100% { filter: brightness(1); }
    25% { filter: brightness(1.5); }
    50% { filter: brightness(1); }
    75% { filter: brightness(1.3); }
}

/* Result numbers - count up effect simulation */
.testimonial-result .result-number {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
}

.section.visible .testimonial-card .result-number {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Pricing card featured - pulse glow on appear */
.pricing-card.featured {
    animation: none;
}

.section.visible .pricing-card.featured {
    animation: featured-pulse 2s ease-out 0.5s;
}

@keyframes featured-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 90, 255, 0.4); }
    50% { box-shadow: 0 0 30px 10px rgba(0, 90, 255, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(0, 90, 255, 0); }
}

/* Process cards - draw line between them */
.process-grid {
    position: relative;
}

.process-card .step-number {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section.visible .process-card .step-number {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.section.visible .process-card:nth-child(1) .step-number {
    transition-delay: 0.3s;
}

.section.visible .process-card:nth-child(2) .step-number {
    transition-delay: 0.5s;
}

.section.visible .process-card:nth-child(3) .step-number {
    transition-delay: 0.7s;
}

/* Quote marks in vision section - bounce in */
.vision-content blockquote {
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.section.visible .vision-content blockquote {
    opacity: 1;
    transform: translateX(0);
}

.vision-content blockquote::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 60px;
    color: var(--accent-blue);
    opacity: 0.3;
    font-family: Georgia, serif;
    animation: quote-float 3s ease-in-out infinite;
}

@keyframes quote-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Button hover - ripple effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Founder image - subtle float */
.vision-image img {
    animation: founder-float 4s ease-in-out infinite;
}

@keyframes founder-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero content - typewriter shimmer */
.hero-heading .type-line {
    opacity: 0;
    transform: translateY(30px);
    animation: type-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-heading .type-line:nth-child(1) { animation-delay: 0.2s; }
.hero-heading .type-line:nth-child(2) { animation-delay: 0.5s; }
.hero-heading .type-line:nth-child(3) { animation-delay: 0.8s; }

@keyframes type-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo carousel items - subtle bounce */
.logo-carousel.visible .carousel-track {
    animation: carousel-start 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes carousel-start {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Contact icons - pop in sequence */
.contact-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section.visible .contact-item:nth-child(1) { transition-delay: 0.1s; }
.contact-section.visible .contact-item:nth-child(2) { transition-delay: 0.2s; }
.contact-section.visible .contact-item:nth-child(3) { transition-delay: 0.3s; }

.contact-section.visible .contact-item {
    opacity: 1;
    transform: translateX(0);
}

.contact-icon {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Social links - wave animation */
.contact-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-section.visible .social-link:nth-child(1) { transition-delay: 0.4s; }
.contact-section.visible .social-link:nth-child(2) { transition-delay: 0.5s; }
.contact-section.visible .social-link:nth-child(3) { transition-delay: 0.6s; }

.contact-section.visible .social-link {
    opacity: 1;
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ============================================
   SCROLL-DRIVEN ANIMATIONS (Apple-style)
   ============================================ */

:root {
    --scroll-progress: 0;
    --scroll-y: 0px;
    --section-progress: 0;
}

/* Breathing animation for icons */
.breathing {
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Progressive disclosure for list items */
.pricing-card li[data-reveal],
.faq-item[data-reveal] {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card li[data-reveal].revealed,
.faq-item[data-reveal].revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Cinematic text reveal */
[data-scroll-reveal] {
    --reveal-progress: 0;
    background: linear-gradient(
        90deg,
        var(--text-primary) 0%,
        var(--text-primary) calc(var(--reveal-progress) * 100%),
        transparent calc(var(--reveal-progress) * 100%)
    );
    -webkit-background-clip: text;
    background-clip: text;
}

/* Scroll-driven section intensity */
.section.visible {
    --intensity: calc(var(--section-progress, 1));
}

/* Magnetic button effect base */
.btn-primary {
    transition: transform 0.15s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
}

/* Smooth scroll-linked transforms */
[data-parallax] {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Hero scroll effects */
.hero-video {
    will-change: transform, filter;
    transition: none;
}

.hero-content {
    will-change: transform, opacity;
    transition: none;
}

/* Cinematic video zoom */
.video-container video {
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Progressive blur effect based on scroll */
.guarantee-section .guarantee-inner {
    --blur-amount: calc((1 - var(--section-progress, 1)) * 5px);
}

/* Staggered word reveal animation */
.word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(-20deg);
    animation: word-pop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes word-pop {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Smooth color transitions on scroll */
.section-header h2 {
    transition: background-position 0.5s ease;
}

.section.visible .section-header h2 {
    background-position: 0% 50%;
}

/* Floating elements animation */
.floating {
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-8px) rotate(1deg);
    }
    66% {
        transform: translateY(-4px) rotate(-1deg);
    }
}

/* Subtle pulsing glow for featured elements */
.featured-glow {
    animation: featured-breathe 4s ease-in-out infinite;
}

@keyframes featured-breathe {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 90, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 90, 255, 0.2);
    }
}

/* Text shimmer on scroll */
.shimmer-scroll {
    background-size: 200% 100%;
    animation: shimmer-flow 3s linear infinite;
}

@keyframes shimmer-flow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Card tilt effect on hover - 3D perspective */
.pricing-card,
.stat-card,
.process-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.pricing-card:hover,
.stat-card:hover,
.process-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}

/* Smooth image reveal with clip-path */
.stat-image,
.process-card .stat-image {
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section:not(.visible) .stat-image {
    clip-path: inset(100% 0 0 0);
}

/* Scroll-triggered counter animation */
.result-number {
    font-variant-numeric: tabular-nums;
}

/* Smooth underline animation for links */
.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
    left: 0;
}

/* Glow pulse effect on card hover after visible */
.section.visible .pricing-card:hover,
.section.visible .stat-card:hover,
.section.visible .process-card:hover {
    animation: subtle-glow 2s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 90, 255, 0.15);
    }
    50% {
        box-shadow: 0 8px 40px rgba(0, 90, 255, 0.25);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .section,
    .section-header,
    .pricing-card,
    .stat-card,
    .process-card,
    .testimonial-card,
    .vision-content,
    .vision-image,
    .faq-item,
    .guarantee-section,
    .guarantee-badge,
    .newsletter-section,
    .newsletter-icon,
    .video-container,
    .logo-carousel,
    .contact-info,
    .contact-form-wrapper {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* Responsive */

@media (max-width: 1250px) and (min-width: 769px) {
    .stats-grid,
    .process-grid {
        flex-direction: column;
        align-items: center;
    }
    .stat-card,
    .process-card {
        width: 403px;
        min-width: 403px;
        max-width: 403px;
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .stat-card,
    .process-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .smart-choice-heading,
    .section-header h2 {
        font-size: 44px;
    }
    .guarantee-section {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Blazor Error UI */
#blazor-error-ui {
    background: #8b0000;
    color: white;
    padding: 0.5rem;
    text-align: center;
    display: none;
}

/* ============================================
   AI CHAT WIDGET
   ============================================ */

.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: var(--font-body-family);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    background-size: 200% 200%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 90, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 90, 255, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(0, 90, 255, 0.6), 0 0 40px rgba(46, 0, 229, 0.3); }
}

.chat-toggle:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 40px rgba(0, 90, 255, 0.7), 0 0 50px rgba(46, 0, 229, 0.4);
    background-position: 100% 0;
    animation: none;
}

.chat-toggle:active {
    transform: scale(0.95) rotate(0deg);
}

.chat-icon {
    font-size: 24px;
    color: white;
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid #000;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 48px);
    height: 500px;
    max-height: calc(100vh - 150px);
    background: linear-gradient(180deg, #0a0a12 0%, #000000 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chat-widget.open .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(0, 90, 255, 0.1), rgba(46, 0, 229, 0.1));
    border-bottom: 1px solid var(--border-color);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0a0a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-header-text h4,
.chat-header-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: none;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-status 2s infinite;
}

.status-dot.offline {
    background: #ff4757;
    animation: none;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: fadeInMessage 0.3s ease;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.user {
    flex-direction: row-reverse;
    margin-left: auto;
}

.chat-message.assistant {
    margin-right: auto;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0a0a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-bubble {
    background: #1a1a24;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 16px;
    position: relative;
}

.chat-message.user .message-bubble {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-color: transparent;
}

.message-bubble p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    color: var(--text-primary);
    word-wrap: break-word;
}

.message-time {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 6px;
    text-align: right;
}

.chat-message.user .message-time {
    color: rgba(255, 255, 255, 0.7);
}

/* Typing indicator */
.message-bubble.typing {
    display: flex;
    gap: 4px;
    padding: 16px 20px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    40% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

.chat-input-container {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
}

.chat-input {
    flex: 1;
    background: #1a1a24;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input::placeholder {
    color: var(--text-muted);
}

.chat-input:focus {
    border-color: var(--accent-blue);
}

.chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    background-size: 200% 200%;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.chat-send::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-send:hover:not(:disabled) {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(0, 90, 255, 0.5), 0 0 15px rgba(46, 0, 229, 0.3);
    background-position: 100% 0;
}

.chat-send:hover:not(:disabled)::after {
    opacity: 1;
}

.chat-send:active:not(:disabled) {
    transform: scale(0.9) rotate(0deg);
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-send span {
    font-size: 20px;
    color: white;
    transition: transform 0.3s ease;
}

.chat-send:hover:not(:disabled) span {
    transform: translateX(3px);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .chat-toggle {
        width: 54px;
        height: 54px;
    }

    .chat-window {
        width: calc(100vw - 32px);
        height: calc(100vh - 120px);
        bottom: 70px;
        right: -8px;
    }
}

/* ============================================
   BOOKING WIDGET (Calendly-style)
   ============================================ */

.booking-widget {
    background: linear-gradient(180deg, #0a0a12 0%, #000000 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: visible;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.booking-header {
    text-align: center;
    padding: 32px 24px 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(0, 90, 255, 0.1) 0%, transparent 100%);
}

.booking-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: #0a0a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.booking-logo img {
    width: 105%;
    height: 105%;
    object-fit: cover;
}

.booking-header h2,
.booking-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
    text-transform: none;
}

.booking-header p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.booking-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.booking-tab:hover {
    color: var(--text-primary);
}

.booking-tab.active {
    color: var(--accent-blue);
}

.booking-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-blue);
}

/* Calendly Embed */
.calendly-embed {
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.calendly-inline-widget {
    flex: 1;
    min-height: 450px;
}

.calendly-note {
    text-align: center;
    padding: 12px;
    color: var(--text-muted);
}

.calendly-note a {
    color: var(--accent-blue);
    text-decoration: none;
}

.calendly-note a:hover {
    text-decoration: underline;
}

.booking-content {
    padding: 24px;
    padding-bottom: 32px;
    min-height: 400px;
}

/* Calendar */
.booking-calendar {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3,
.calendar-month-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: capitalize;
    margin: 0;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav:hover:not(:disabled) {
    background: rgba(0, 90, 255, 0.2);
    border-color: var(--accent-blue);
}

.calendar-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day.other-month {
    color: var(--text-muted);
    opacity: 0.3;
}

.calendar-day.today {
    border: 2px solid var(--accent-blue);
}

.calendar-day.available:hover {
    background: rgba(0, 90, 255, 0.2);
    transform: scale(1.1);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    font-weight: 600;
}

.calendar-day.unavailable {
    color: var(--text-muted);
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-secondary);
}

.calendar-legend .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.calendar-legend .dot.available {
    background: var(--accent-blue);
}

.calendar-legend .dot.unavailable {
    background: var(--text-muted);
    opacity: 0.3;
}

/* Time Selection */
.time-selection {
    animation: fadeIn 0.3s ease;
}

.time-selection h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: capitalize;
    margin: 16px 0 4px;
}

.time-selection > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 0 20px;
}

.back-button {
    background: none;
    border: none;
    color: var(--accent-blue);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

.back-button:hover {
    opacity: 0.7;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: rgba(0, 90, 255, 0.2);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-color: transparent;
    color: white;
}

.confirm-time-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-time-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 90, 255, 0.3);
}

/* Booking Form */
.booking-form {
    animation: fadeIn 0.3s ease;
}

.selected-datetime {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 90, 255, 0.1);
    border-radius: 12px;
    margin: 16px 0 24px;
}

.datetime-icon {
    font-size: 24px;
}

.selected-datetime strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    text-transform: capitalize;
}

.selected-datetime span {
    color: var(--text-secondary);
    font-size: 13px;
}

.booking-form .form-group {
    margin-bottom: 16px;
}

.booking-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.booking-form input:not(:placeholder-shown),
.booking-form textarea:not(:placeholder-shown) {
    -webkit-text-fill-color: var(--text-primary);
}

.booking-form input:invalid,
.booking-form input:-webkit-autofill:invalid {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    box-shadow: none;
    outline: none;
}

.booking-form input:-webkit-autofill,
.booking-form input:-webkit-autofill:hover,
.booking-form input:-webkit-autofill:focus,
.booking-form input:-webkit-autofill:active {
    -webkit-text-fill-color: #E1E6FD !important;
    -webkit-box-shadow: 0 0 0 1000px #0a0a12 inset !important;
    color: #E1E6FD !important;
    transition: background-color 5000s ease-in-out 0s;
}

.meeting-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.meeting-type {
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.meeting-type:hover {
    background: rgba(0, 90, 255, 0.1);
    border-color: var(--accent-blue);
}

.meeting-type.selected {
    background: rgba(0, 90, 255, 0.2);
    border-color: var(--accent-blue);
}

.meeting-icon {
    font-size: 24px;
}

.book-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    margin-bottom: 8px;
}

.book-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 90, 255, 0.3);
}

.book-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.booking-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    color: #ef4444;
    font-size: 14px;
}

/* Confirmation */
.booking-confirmed {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}

.confirmed-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00c853, #00e676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.spam-notice {
    font-size: 13px;
    color: var(--text-secondary, #888);
    margin-top: 4px;
    margin-bottom: 20px;
}

.booking-confirmed h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin: 0 0 8px;
    text-transform: none;
}

.booking-confirmed > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0 0 24px;
}

.confirmed-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-primary);
    font-size: 14px;
}

.detail-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.detail-icon {
    font-size: 18px;
}

.new-booking-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.new-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 90, 255, 0.3);
}

/* Generic Confirmation View (for contact form modal) */
.confirmation-view {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.3s ease;
}

.confirmation-view .confirmation-title {
    font-size: 24px;
    color: var(--text-primary);
    margin: 0 0 12px;
    text-transform: none;
    font-weight: 600;
    font-family: var(--font-heading-family);
}

.confirmation-view p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0 0 24px;
}

.confirmation-view .btn-primary {
    margin-top: 10px;
}

/* Confirmation Popup (for page contact form) */
.confirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.confirmation-popup-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: scaleIn 0.3s ease;
}

.confirmation-popup-content .confirmation-title {
    font-size: 24px;
    color: var(--text-primary);
    margin: 0 0 12px;
    text-transform: none;
    font-weight: 600;
    font-family: var(--font-heading-family);
}

.confirmation-popup-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0 0 24px;
}

/* Footer */
.booking-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-muted);
}

.powered-by {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 480px) {
    .booking-widget {
        border-radius: 0;
        max-width: 100%;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .meeting-type-selector {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ORDER WIZARD
   ============================================ */

.modal-content-wizard {
    max-width: 1300px;
    width: 95%;
    padding: 0;
    overflow: hidden;
}

.order-wizard {
    background: linear-gradient(180deg, #0a0a12 0%, #000000 100%);
    padding: 3.5rem;
    max-height: 90vh;
    overflow-y: auto;
}

/* Progress Steps */
.wizard-progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
    flex-wrap: wrap;
    gap: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 60px;
    flex-shrink: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.wizard-step.active .step-number {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-color: var(--accent-blue);
    color: white;
}

.wizard-step.completed .step-number {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
}

.step-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wizard-step.active .step-label {
    color: var(--accent-blue);
}

.step-connector {
    flex: 0 0 40px;
    height: 2px;
    background: var(--border-color);
    margin: 25px 4px 0;
}

.step-connector.completed {
    background: var(--accent-blue);
}

/* Wizard Content */
.wizard-content {
    min-height: 450px;
}

.wizard-step-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step-content h2,
.wizard-step-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.35rem;
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

/* Background glow effect */
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 90, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: 16px;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card > * {
    position: relative;
    z-index: 1;
}

.package-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 90, 255, 0.25), 0 0 20px rgba(0, 90, 255, 0.1);
}

.package-card.selected {
    border-color: var(--accent-blue);
    background: rgba(0, 90, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 90, 255, 0.3), inset 0 0 20px rgba(0, 90, 255, 0.1);
}

.package-card.selected::before {
    opacity: 1;
}

/* Popular package - same styling as others */
.package-card.popular {
    /* No special border - same as other cards */
}

.package-card.popular::before {
    background: radial-gradient(ellipse at center, rgba(0, 90, 255, 0.2) 0%, transparent 70%);
}

.package-card.popular:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 90, 255, 0.25), 0 0 20px rgba(0, 90, 255, 0.1);
}

.package-card.popular.selected {
    border-color: var(--accent-blue);
    background: rgba(0, 90, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 90, 255, 0.3), inset 0 0 20px rgba(0, 90, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-header h3,
.package-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.package-price span {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0;
}

.package-features li {
    padding: 0.7rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.3rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.package-select-btn {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-card.selected .package-select-btn,
.package-card:hover .package-select-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-color: transparent;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.4rem;
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 600px) {
    .option-grid {
        grid-template-columns: 1fr;
    }
}

.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.35rem;
}

.option-card:hover {
    border-color: var(--accent-blue);
}

.option-card.selected {
    border-color: var(--accent-blue);
    background: rgba(0, 90, 255, 0.1);
}

.option-icon {
    font-size: 1.75rem;
}

/* Option Row / Pills */
.option-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.option-pill {
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.option-pill:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

.option-pill.selected {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-color: transparent;
    color: white;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (max-width: 600px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.checkbox-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-card:hover {
    border-color: var(--accent-blue);
}

.checkbox-card:has(input:checked) {
    border-color: var(--accent-blue);
    background: rgba(0, 90, 255, 0.1);
}

.checkbox-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-blue);
}

.checkbox-icon {
    font-size: 1.25rem;
}

/* Form Groups in Wizard */
.order-wizard .form-group {
    margin-bottom: 1.5rem;
}

.order-wizard .form-group label {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.4rem;
}

.order-wizard .form-group input:not([type="color"]):not(.color-hex),
.order-wizard .form-group select,
.order-wizard .form-group textarea {
    width: 100%;
    padding: 1.1rem 1.35rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: border-color 0.3s ease;
}

.order-wizard .form-group input:not([type="color"]):not(.color-hex):focus,
.order-wizard .form-group select:focus,
.order-wizard .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.order-wizard .form-group select {
    background-color: #1a1a2e;
    color: #ffffff;
    cursor: pointer;
}

.order-wizard .form-group select option {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 12px;
}

.order-wizard .form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

small.validation-error,
.order-wizard .form-group small.validation-error,
.booking-form small.validation-error {
    color: #ef4444 !important;
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
}

.order-wizard .form-group small.field-hint {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.order-wizard .form-group .mt-2 {
    margin-top: 0.75rem;
}

/* Logo Upload */
.logo-upload-area {
    display: block;
    cursor: pointer;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-upload-area:hover {
    border-color: var(--accent-blue);
    background: rgba(0, 90, 255, 0.05);
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-placeholder .logo-icon {
    font-size: 2rem;
}

.logo-placeholder small {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* Secondary Email Group */
.secondary-email-group {
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-blue);
    animation: fadeIn 0.3s ease;
}

.logo-uploaded {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.logo-uploaded .logo-icon {
    color: #00c853;
    font-size: 1.2rem;
}

.logo-remove {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: all 0.2s ease;
}

.logo-remove:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.order-wizard .form-group .mb-2 {
    margin-bottom: 0.75rem;
}

/* Color Inputs */
.color-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-inputs input[type="color"] {
    width: 50px;
    height: 40px;
    padding: 0;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
}

.color-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.color-checkbox input[type="checkbox"] {
    accent-color: var(--accent-blue);
}

/* Color Preview */
.color-preview {
    width: 80px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 90, 255, 0.2);
    transition: all 0.5s ease;
}

.color-inputs input[type="color"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Color Extraction States */
.extracting-colors {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.extracting-colors::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid var(--accent-blue);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.color-error {
    display: block;
    color: #f59e0b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Upload Section */
.upload-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .upload-section {
        grid-template-columns: 1fr;
    }
}

.upload-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-option:hover {
    border-color: var(--accent-blue);
}

.upload-option.selected {
    border-color: var(--accent-blue);
    background: rgba(0, 90, 255, 0.1);
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.upload-option h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.upload-option p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Color Picker */
.color-picker-section {
    margin-bottom: 2rem;
}

.color-picker-stack {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.color-picker-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.color-picker-label {
    font-size: 1.25rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.color-swatch {
    width: 80px !important;
    height: 32px !important;
    min-width: 80px !important;
    max-width: 80px !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 6px !important;
    padding: 0 !important;
    cursor: pointer;
    background: none;
    flex-shrink: 0;
    flex-grow: 0;
}

.color-swatch::-webkit-color-swatch-wrapper {
    padding: 2px;
}

.color-swatch::-webkit-color-swatch {
    border: none;
    border-radius: 4px;
}

.color-swatch::-moz-color-swatch {
    border: none;
    border-radius: 4px;
}

.color-hex {
    width: 80px !important;
    max-width: 80px !important;
    height: 32px !important;
    flex: none !important;
    font-family: monospace;
    font-size: 1.25rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 0.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    color: var(--text-primary) !important;
    box-sizing: border-box;
}

.mt-1 {
    margin-top: 0.8rem;
}

/* Upload Dropzone */
.upload-dropzone {
    display: block;
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-dropzone:hover {
    border-color: var(--accent-blue);
}

.dropzone-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.upload-dropzone p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.upload-dropzone > span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.upload-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.upload-btn:hover {
    transform: scale(1.05);
}

.upload-dropzone small {
    display: block;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.upload-dropzone .file-input-hidden {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-progress {
    text-align: center;
    padding: 1rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.file-size {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Uploaded Files */
.uploaded-files {
    margin-top: 1.5rem;
}

.uploaded-files h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.file-icon {
    font-size: 1.25rem;
}

.file-name {
    flex: 1;
    color: var(--text-primary);
}

.file-remove {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.file-remove:hover {
    color: #ef4444;
}

/* Order Summary */
.order-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-section {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-section h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.summary-price {
    color: var(--accent-blue);
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-color);
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.total-price {
    color: var(--accent-blue);
    font-size: 2rem;
}

.summary-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 90, 255, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Order Confirmed */
.order-confirmed {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.3s ease;
}

.order-confirmed h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin: 0 0 12px;
    text-transform: none;
}

.order-confirmed .step-description {
    text-align: center;
    margin-bottom: 30px;
}

.order-confirmed .confirmed-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.order-confirmed .detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-confirmed .detail-row:last-child {
    border-bottom: none;
}

.order-confirmed .detail-icon {
    font-size: 20px;
}

.order-confirmed .wizard-btn-next {
    margin-top: 10px;
}

/* Terms Checkbox */
.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin-top: 1rem;
}

.terms-checkbox input {
    width: 22px;
    height: 22px;
    accent-color: var(--accent-blue);
    border-radius: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
}

.terms-checkbox input:checked {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.terms-checkbox input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.terms-checkbox a {
    color: var(--accent-blue);
}

.submit-error {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 0.95rem;
}

/* Wizard Navigation */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2.5rem;
}

.wizard-btn {
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-btn-back {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.wizard-btn-back:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.wizard-btn-next,
.wizard-btn-submit {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border: none;
    color: white;
}

.wizard-btn-next:hover,
.wizard-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 90, 255, 0.4);
}

.wizard-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Clickable Package Cards */
.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 90, 255, 0.2);
}

@media (max-width: 600px) {
    .order-wizard {
        padding: 1rem;
    }

    .wizard-progress {
        gap: 0;
    }

    .step-connector {
        flex: 0 0 20px;
    }

    .step-label {
        display: none;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .wizard-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .wizard-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   CINEMATIC INTRO ANIMATION
   ============================================ */

.cinematic-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: introFadeOut 0.4s ease-out 0.6s forwards;
    perspective: 1000px;
}

.intro-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transform-style: preserve-3d;
    animation: logoFadeIn 0.6s ease-out forwards;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes introFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* Hero reveal animation after intro */
.cinematic-reveal {
    animation: heroReveal 0.5s ease-out 0.8s both;
    transform-style: preserve-3d;
    perspective: 1500px;
}

.cinematic-reveal .hero-video {
    animation: videoZoomIn 0.6s ease-out 0.7s both;
}

.cinematic-reveal .hero-content {
    animation: contentSlideUp 0.5s ease-out 0.9s both;
}

.cinematic-reveal .hero-heading {
    animation: headingReveal 0.4s ease-out 1s both;
}

.cinematic-reveal .btn-primary,
.cinematic-reveal .btn-secondary {
    animation: buttonReveal 0.4s ease-out 1.1s both;
}

@keyframes heroReveal {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes videoZoomIn {
    0% {
        transform: scale(1.3);
        filter: blur(5px) brightness(0.3);
    }
    100% {
        transform: scale(1);
        filter: blur(0px) brightness(1);
    }
}

@keyframes contentSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px) translateZ(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes headingReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Disable intro on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .cinematic-intro {
        display: none;
    }
    .cinematic-reveal,
    .cinematic-reveal .hero-video,
    .cinematic-reveal .hero-content,
    .cinematic-reveal .hero-heading,
    .cinematic-reveal .btn-primary {
        animation: none;
    }
}

/* ============================================
   VIDEO SLIDER / CAROUSEL
   ============================================ */

.video-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slider-track.dragging {
    transition: none;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
}

.slide video {
    transition: transform 0.3s ease;
}

.slide.active video {
    transform: scale(1);
}

.slide:not(.active) video {
    transform: scale(0.95);
}

.slider-btn {
    position: absolute;
    /* Offset upward by half the dots area (~34px / 2 = 17px) so arrows
       align with the video center, not the center of video + dots */
    top: calc(50% - 17px);
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 1.5rem;
}

.slider-next {
    right: 1.5rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--accent-blue);
    transform: scale(1.2);
}

/* Slide counter */
.slide-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--accent-blue);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.slider-video {
    background: #0d0d0d;
}

.slider-controls {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-controls .video-sound-btn,
.slider-controls .video-play-btn {
    position: relative;
    bottom: auto;
    right: auto;
}

/* Compare List Icons */
.compare-list li::before {
    content: none !important;
}

.icon-check {
    color: #22c55e;
    font-weight: 700;
    margin-right: 0.5rem;
}

.icon-warn {
    color: #f59e0b;
    font-weight: 700;
    margin-right: 0.5rem;
}

.icon-cross {
    color: #ef4444;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Card slider - activates when 3 cards no longer fit side by side */
@media (max-width: 992px) {
    .card-slider {
        overflow: hidden;
        position: relative;
        touch-action: pan-y pinch-zoom;
    }

    .card-slider .card-slider-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 0 !important;
        transition: transform 0.3s ease;
        padding: 0 !important;
        width: 100% !important;
    }

    .card-slider .card-slider-track > .pricing-card,
    .card-slider .card-slider-track > .feature-card {
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 0 !important;
        padding: 2.5rem 2rem;
        margin: 0 !important;
        min-height: auto;
        box-sizing: border-box !important;
    }

    .card-slider-dots {
        display: flex !important;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .card-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .card-dot:hover {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.2);
    }

    .card-dot.active {
        background: var(--accent-blue);
        transform: scale(1.2);
    }

    .card-slider .slide-counter {
        display: flex !important;
    }

    * {
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* Disable ALL hover effects on touch devices (phones, tablets) */
@media (hover: none) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .feature-card:hover,
    .pricing-card:hover,
    .pricing-card.featured:hover,
    .glow-card:hover,
    .package-card:hover,
    .package-card.popular:hover,
    .clickable-card:hover,
    .faq-item:hover,
    .testimonial-card:hover,
    .stat-card:hover,
    .process-card:hover,
    .footer-menu li a:hover,
    .nav-menu a:hover,
    .header-icon-btn:hover,
    .mobile-menu-btn:hover,
    .option-card:hover,
    .option-pill:hover,
    .checkbox-card:hover,
    .time-slot:hover,
    .meeting-type:hover,
    .upload-option:hover,
    .upload-dropzone:hover,
    .upload-btn:hover,
    .logo-upload-area:hover,
    .wizard-btn-back:hover,
    .wizard-btn-next:hover,
    .wizard-btn-submit:hover,
    .calendar-nav:hover,
    .calendar-day:hover,
    .calendar-day.available:hover,
    .back-button:hover,
    .confirm-time-btn:hover,
    .book-button:hover,
    .booking-tab:hover,
    .new-booking-btn:hover,
    .dot:hover,
    .card-dot:hover,
    .slider-btn:hover,
    .chat-toggle:hover,
    .contact-item:hover,
    .social-link:hover,
    .modal-close:hover,
    .logo-item img:hover,
    .video-play-btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .clickable-card:hover::before,
    .pricing-card.clickable-card:hover::before,
    .package-card:hover::before,
    .btn-primary:hover::after {
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
    }

    /* Reset border-color changes that flash on scroll (iOS touch hover) */
    .package-card:hover,
    .option-card:hover,
    .option-pill:hover {
        border-color: var(--border-color) !important;
    }

    .feature-card:hover .feature-icon,
    .feature-card:hover .feature-title,
    .pricing-card:hover h3,
    .pricing-card.clickable-card:hover h3,
    .pricing-card.clickable-card.featured:hover h3,
    .header-icon-btn:hover svg,
    .package-card:hover .package-select-btn {
        transform: none !important;
        filter: none !important;
        text-shadow: none !important;
    }

    /* Always show blue emojis on touch devices — specificity must beat
       .feature-card:hover .feature-icon (0-2-0) so we use same depth + later cascade */
    .feature-card .feature-icon,
    .feature-card:hover .feature-icon {
        filter: brightness(1.2) sepia(100%) hue-rotate(190deg) saturate(300%) !important;
        -webkit-filter: brightness(1.2) sepia(100%) hue-rotate(190deg) saturate(300%) !important;
    }

    * {
        -webkit-tap-highlight-color: transparent !important;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Header padding */
    .header {
        padding: 15px 1.5rem;
    }

    /* Hamburger button turns to X when open */
    .mobile-menu-btn.open {
        font-size: 2.2rem !important;
    }

    /* H1 - Hero rotating text */
    .rotating-text {
        height: 75px;
    }

    .rotating-text-item {
        font-size: 52px;
        line-height: 75px;
    }

    /* Hero buttons - closer to H1 */
    .hero-buttons {
        margin-top: 0.5rem;
    }

    /* H2 - Section headers - BIGGER */
    .section-header h2,
    .vision-content h2,
    .guarantee-section h2,
    .smart-choice-heading {
        font-size: 46px !important;
    }

    /* Contact h2 - match exactly */
    .contact-info h2 {
        font-size: 46px !important;
    }

    /* Subheadings under H2 - SMALLER */
    .section-description,
    .smart-choice-subtext,
    .package-subtitle {
        font-size: 1.3rem !important;
    }

    /* Hero tagline */
    .hero-tagline {
        font-size: 13px;
    }

    /* Body text - smaller */
    body {
        font-size: 1.2rem;
    }

    p {
        font-size: 1.3rem;
    }

    /* Section label icons - force blue text color */
    .section-label-icon {
        color: var(--accent-blue) !important;
        -webkit-text-fill-color: var(--accent-blue) !important;
        /* Force text rendering, not emoji */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    }

    /* Use CSS to create blue triangle instead of emoji */
    .section-label-icon::before {
        content: "";
    }

    /* Video controls - on mobile show only sound button, no play/pause button */
    .slider-controls {
        bottom: 1rem !important;
        right: 1rem !important;
    }

    .slider-controls .video-play-btn {
        display: none !important;
    }

    .slider-controls .video-sound-btn {
        width: 48px !important;
        height: 48px !important;
    }

    /* Clicking video itself handles pause/play on mobile */
    .slider-video {
        cursor: pointer;
    }

    /* Play overlay icon matches sound button size on mobile */
    .play-overlay-icon {
        width: 48px !important;
        height: 48px !important;
    }

    /* Order wizard mobile fixes - FULL SCREEN SCROLLABLE */
    #orderWizardModal.action-modal {
        padding: 0 !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: contain !important;
    }

    #orderWizardModal .modal-content-wizard {
        padding-top: 0 !important;
        max-height: none !important;
        height: auto !important;
        min-height: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    #orderWizardModal .modal-close {
        position: fixed !important;
        top: 10px !important;
        right: 10px !important;
        z-index: 9999 !important;
        background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%) !important;
        box-shadow: 0 4px 15px rgba(0, 90, 255, 0.4) !important;
    }

    #orderWizardModal .order-wizard {
        max-height: none !important;
        overflow: visible !important;
        padding: 60px 1rem 120px 1rem !important;
    }

    /* Prevent iOS auto-zoom on input focus - font must be 16px+ */
    #orderWizardModal input,
    #orderWizardModal select,
    #orderWizardModal textarea {
        font-size: 16px !important;
        scroll-margin-top: 80px;
    }

    /* Fix focus scroll position */
    #orderWizardModal .form-group {
        scroll-margin-top: 80px;
    }

    .wizard-progress {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .wizard-step {
        min-width: auto;
    }

    .step-number {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }

    .step-label {
        font-size: 0.7rem !important;
        display: none;
    }

    .step-connector {
        flex: 0 0 15px !important;
    }

    /* Portrait images in Tjänster - SMALLER */
    .vision-image img {
        width: 110px;
        height: 110px;
    }

    .vision-image::before {
        width: 125px;
        height: 125px;
        top: 55px;
    }

    .vision-image::after {
        width: 140px;
        height: 140px;
        top: 55px;
    }

    .vision-portraits {
        gap: 5rem;
    }

    .founder-name {
        font-size: 1.2rem;
    }

    .founder-label {
        font-size: 1rem;
    }

    /* Logo carousel - slightly bigger */
    .logo-carousel {
        padding: 3rem 0 1.5rem 0;
    }

    .carousel-track {
        gap: 2rem;
    }

    .logo-item img {
        max-height: 35px;
        width: 90px;
        height: 35px;
    }

    /* Feature cards - AI-produktion, VFX, Musik - WIDER */
    .features-grid {
        padding: 0;
    }

    .feature-card {
        padding: 2.5rem 2rem;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .feature-card h3 {
        font-size: 2rem;
        white-space: normal;
    }

    .feature-card p {
        font-size: 1.3rem;
    }

    /* Pricing cards - BIGGER width and height (non-slider fallback) */
    .pricing-grid:not(.card-slider-track) {
        padding: 0 !important;
        width: 100% !important;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-card h3 {
        font-size: 2.2rem !important;
        white-space: normal;
        word-wrap: break-word;
    }

    .pricing-card .package-description,
    .pricing-card li {
        font-size: 1.5rem !important;
    }

    /* Hide button inside pricing card on mobile - clicking card goes directly to wizard */
    .pricing-card .btn-primary {
        display: none !important;
    }

    /* "Osäker på vilket paket?" - smaller */
    .package-cta-text {
        font-size: 1.6rem !important;
    }

    /* Compare boxes - same width as feature cards */
    .smart-choice-container {
        padding: 0 !important;
        width: 100% !important;
    }

    .glow-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Compare boxes - bigger text and emojis */
    .compare-list li,
    .check-list li {
        font-size: 1.5rem !important;
    }

    .icon-check, .icon-warn, .icon-cross {
        font-size: 1.6rem !important;
    }

    /* All cards - bigger and centered */
    .stat-card,
    .process-card,
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        padding: 2rem;
        margin: 0 auto;
    }

    /* Video slider - wider */
    .video-slider {
        width: 100%;
        padding: 0;
    }

    .video-container {
        width: 100% !important;
        max-width: 100% !important;
        max-height: none !important;
        aspect-ratio: 16 / 9 !important;
    }

    .video-container video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Hide slider arrows on mobile */
    .slider-btn {
        display: none !important;
    }

    /* Enable touch swipe on video slider */
    .video-wrapper {
        touch-action: pan-y pinch-zoom;
    }

    /* FAQ headings - larger and left-aligned with H2 */
    .faq-list {
        padding: 0 !important;
    }

    .faq-question {
        font-size: 1.8rem;
        padding: 1.2rem 0;
        text-align: left;
    }

    .faq-question::after {
        font-size: 2.2rem;
    }

    /* Footer - bigger text */
    .footer-heading {
        font-size: 2.6rem;
    }

    .footer-menu li a,
    .footer-address p,
    .footer-tagline {
        font-size: 1.7rem;
    }

    /* Legal bar - one line */
    .legal-bar-content {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem !important;
    }

    .legal-divider {
        display: inline !important;
    }

    .legal-bar a,
    .legal-bar-content span {
        font-size: 1.1rem;
    }

    /* Section padding */
    .section,
    .features-section,
    .smart-choice-section,
    .video-section {
        padding: 40px 12px;
    }

    /* Prevent iOS auto-zoom on ALL inputs */
    input, select, textarea {
        font-size: 16px !important;
    }

}

@media (max-width: 480px) {
    /* Even smaller screens */
    .rotating-text {
        height: 55px;
    }

    .rotating-text-item {
        font-size: 38px;
        line-height: 55px;
    }

    .section-header h2,
    .vision-content h2,
    .guarantee-section h2,
    .smart-choice-heading,
    .contact-info h2 {
        font-size: 32px !important;
    }

    body {
        font-size: 1.15rem;
    }

    /* Portrait images - even smaller on very small screens */
    .vision-image img {
        width: 90px;
        height: 90px;
    }

    .vision-image::before {
        width: 105px;
        height: 105px;
        top: 45px;
    }

    .vision-image::after {
        width: 120px;
        height: 120px;
        top: 45px;
    }

    .vision-portraits {
        gap: 4rem;
    }

    .logo-item img {
        max-height: 28px;
        width: 70px;
        height: 28px;
    }

    .carousel-track {
        gap: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1.6rem;
    }

    .footer-heading {
        font-size: 2.2rem;
    }

    .footer-menu li a,
    .footer-address p {
        font-size: 1.5rem;
    }
}

/* FORCED HERO FIX - Mobile */
@media screen and (max-width: 768px) {
    section.hero,
    section#hero,
    .hero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        height: 100vh !important;
        height: 100dvh !important;
    }

    section.hero > video,
    section#hero > video,
    .hero > video,
    .hero-video,
    video.hero-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
}
/* Emil */