﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vh: 1vh;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('Desktop - 10 (1).png') center center no-repeat;
    background-size: cover;
    z-index: -1;
}

/* Hide default cursor on all interactive elements */
a, button, input, textarea, select, .nav-link, .submit-button, .process-step {
    cursor: none !important;
}

/* Ensure cursor is hidden even on focus/hover states */
a:hover, a:focus,
button:hover, button:focus,
input:hover, input:focus,
textarea:hover, textarea:focus,
select:hover, select:focus,
.nav-link:hover,
.process-step:hover,
.submit-button:hover {
    cursor: none !important;
}

/* Info items should have no cursor (hide Windows cursor) */
.info-item,
.info-item * {
    cursor: none !important;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    left: 0;
    top: 0;
}



/* Cursor Hover Effects are handled by JavaScript */

/* Navigation */
.nav {
    position: fixed;
    left: 50%;
    /* Use transform for horizontal centering only initially */
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 100vw;
    /* Start at top: 0 for attached state */
    top: 0;

    /* Default to attached state to prevent flash on load */
    width: 1200px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 0;
    box-shadow: none;

    /* Use specific transitions instead of 'all' for better control */
    transition:
        top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        backdrop-filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-radius 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: top, width, background, border-radius;

    /* Prevent any subpixel rendering issues */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Default floating state */
.nav.floating {
    /* Use top property but it won't cause reflow since position is fixed */
    top: 20px;
    width: 700px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Attached state overrides floating */
.nav.floating.attached {
    /* Reset to top position */
    top: 0;
    width: 1200px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 0;
    box-shadow: none;
}

/* Temporary border visibility during animation */
.nav.border-visible {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Fast backdrop blur removal when attaching */
.nav.fast-blur-removal {
    transition:
        width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        backdrop-filter 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-radius 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

/* Fast backdrop blur buildup when detaching - starts later but builds faster */
.nav.fast-blur-buildup {
    transition:
        width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        top 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.14s,
        backdrop-filter 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.14s,
        border-radius 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.14s,
        border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    /* Fixed height to prevent page jumping */
    height: 80px;
}

.nav.floating .nav-container {
    padding: 0 1.5rem;
    /* Use fixed height instead of padding for vertical spacing */
    height: 60px;
}

.nav.floating.attached .nav-container {
    padding: 0 2rem;
    /* Maintain same height as floating state */
    height: 80px;
}

.logo {
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    color: inherit;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav.floating .logo {
    font-size: 1.25rem;
}

.nav.floating.attached .logo {
    font-size: 1.5rem;
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    color: #ffffff;
    font-weight: 400;
    transition: inherit;
}

.logo-accent {
    color: #ffffff;
    font-weight: 400;
    transition: inherit;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav.floating .nav-menu {
    gap: 1.5rem;
}

.nav.floating.attached .nav-menu {
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, font-size 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.5rem 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav.floating .nav-link {
    font-size: 0.95rem;
}

.nav.floating.attached .nav-link {
    font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

/* Language Switcher */
.lang-switcher {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav.floating .lang-switcher {
    font-size: 0.85rem;
}

.nav.floating.attached .lang-switcher {
    font-size: 0.9rem;
}

.lang-option {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.lang-option.active {
    opacity: 1;
}

.lang-option:hover {
    opacity: 1;
}

.lang-option:active {
    opacity: 1;
    transform: scale(0.95);
}

.lang-divider {
    opacity: 0.5;
}

/* Language Toggle */
.language-toggle {
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lang-btn:hover {
    border-color: #ffffff;
}

.lang-current {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lang-separator {
    opacity: 0.5;
    margin: 0 0.2rem;
}

.lang-alt {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.lang-btn.ru-active .lang-current {
    opacity: 0.5;
}

.lang-btn.ru-active .lang-alt {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Mobile: Use fixed height to prevent layout shift when address bar hides */
@media (max-width: 768px) {
    .hero {
        /* Use dvh (dynamic viewport height) if supported, fallback to vh */
        min-height: 100dvh;
        min-height: 100vh;
    }
}

.hero-container {
    width: 100%;
    margin: 0;
    padding: 4rem 0 2rem 8rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease 0.5s both;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    text-align: left;
    max-width: none;
    width: 100%;
}

.hero-logo {
    margin-bottom: 3rem;
}



.hero-title {
    font-size: clamp(3.5rem, 9vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    user-select: none;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease 0.7s both;
    white-space: nowrap;
    overflow: visible;
    margin-bottom: 2rem;
}

.title-line.accent {
    animation: slideInRight 1s ease 0.9s both;
    position: relative;
    white-space: nowrap;
    overflow: visible;
    margin-bottom: 0;
}

/* Kinetic Typography Styles */
.kinetic-letters-container {
    display: inline-block;
    position: relative;
}

.kinetic-letter {
    display: inline-block;
    position: relative;
    will-change: transform;
    transform-origin: center center;
    pointer-events: none;
}

.hero-tagline {
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease 1.1s both;
}

.tagline-text {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}



.hero-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    animation: fadeInUp 1s ease 1.5s both;
}

.hero-cta {
    animation: fadeInUp 1s ease 1.7s both;
    text-align: left;
}

/* CTA Image Button */
.cta-image {
    display: block;
    max-width: 550px;
    height: auto;
    cursor: none;
    pointer-events: auto;
    margin: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.cta-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.cta-image:active {
    transform: scale(0.95);
    filter: brightness(0.9);
    transition: transform 0.1s ease, filter 0.1s ease;
}

/* Submit Image */
.submit-image {
    display: block;
    max-width: 600px;
    height: auto;
    cursor: none;
    pointer-events: auto;
    margin: 0 auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.submit-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.submit-image:active {
    transform: scale(0.95);
    filter: brightness(0.9);
    transition: transform 0.1s ease, filter 0.1s ease;
}





/* Process Section */
.process {
    padding: 5rem 0;
    margin-bottom: 0;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 700px;
    gap: 3rem;
    align-items: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    cursor: none;
    z-index: 1;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    line-height: 1;
}

.process-step:hover .step-number,
.process-step.active .step-number {
    color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.step-content {
    position: relative;
}

.step-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #ffffff;
    transition: all 0.3s ease;
}

.step-try-button {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1000px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    cursor: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: -1.3rem;
}

.step-try-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.process-step:hover .step-title,
.process-step.active .step-title {
    transform: translateX(10px);
}

.step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.process-step:hover .step-description,
.process-step.active .step-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Progress Indicator */
.step-progress {
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step.active .step-progress {
    opacity: 1;
}

.step-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.3)
    );
    transition: width 0.1s linear;
}

/* Shared Animation Container */
.process-animation-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.step-animation {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.step-animation .animation-screen {
    /* Position the screen higher up */
    margin-top: calc(50% - 225px);
}



.step-animation.active {
    opacity: 1;
    pointer-events: auto;
}

/* All Animations - Make them same size as stage 2 */
.animation-screen {
    width: 700px;
    height: 450px;
    background: #0a0a0a;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* All animations are now the same size - no need for step 2 override */

.screen-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.screen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.screen-content {
    padding: 24px;
    height: calc(100% - 30px);
    overflow: hidden;
    position: relative;
}

/* Desktop Apps - macOS Style */
.desktop-app {
    position: absolute;
    width: 28px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}

.desktop-app.app-1 {
    top: 15px;
    left: 15px;
}

.desktop-app.app-2 {
    top: 15px;
    left: 48px;
}

.desktop-app.app-3 {
    top: 52px;
    left: 15px;
}

.desktop-app.app-4 {
    bottom: 15px;
    right: 15px;
}

.desktop-app.app-5 {
    bottom: 52px;
    right: 15px;
}

.mini-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mini-input {
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.mini-input-label {
    position: absolute;
    left: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.mini-input-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.mini-textarea {
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 10px;
}

.mini-textarea-label {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.mini-textarea-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.mini-button {
    height: 28px;
    width: 90px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-button-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.mini-button.clicked .mini-button-text {
    color: #000000;
}

.mini-button-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

.success-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #ffffff;
    color: #000000;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.success-popup.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.success-popup-text {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.success-checkmark {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2.5px solid #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.success-popup.show .checkmark-circle {
    animation: scaleInCenter 0.3s ease forwards;
}

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

.checkmark-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    pointer-events: none;
    z-index: 1;
}

.checkmark-check svg {
    width: 100%;
    height: 100%;
    display: block;
}

.checkmark-check path {
    stroke: #000000;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}

.success-popup.show .checkmark-check path {
    animation: drawCheck 0.5s ease 0.3s forwards;
}

@keyframes drawCheck {
    0% {
        stroke-dashoffset: 48;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Step 2 Animation - Notification Reply */
.notification-banner {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(320px);
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.notification-banner.hovered {
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.4);
}

.notification-banner.clicked {
    transform: translateX(0) scale(0.98);
}

.notification-banner.show {
    animation: slideInFromRight 0.5s ease forwards;
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-banner-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.notification-banner-icon {
    width: 20px;
    height: 20px;
    background: #000000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #ffffff;
    font-weight: 600;
}

.notification-banner-title {
    font-size: 10px;
    font-weight: 600;
    color: #000000;
}

.notification-banner-body {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

.notification-detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.notification-detail.show {
    animation: scaleIn 0.3s ease forwards;
    transform-origin: center;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.notification-detail-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.notification-detail-icon {
    width: 32px;
    height: 32px;
    background: #000000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.notification-detail-title {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
}

.notification-detail-body {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.notification-detail-actions {
    display: flex;
    gap: 8px;
}

.notification-detail-button {
    flex: 1;
    height: 28px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 10px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: transform 0.1s ease, background 0.2s ease;
}

.notification-detail-button.hovered {
    background: rgba(0, 0, 0, 0.08);
}

.notification-detail-button.clicked {
    transform: scale(0.95);
}

.notification-detail-button.reply {
    background: #000000;
    color: #ffffff;
    border: none;
}

.notification-detail-button.reply.hovered {
    background: #1a1a1a;
}

.reply-input-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.reply-input-container.show {
    animation: scaleIn 0.3s ease forwards;
}

.reply-input-header {
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.reply-input {
    width: 100%;
    min-height: 60px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 10px;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.reply-input.hovered {
    border-color: rgba(0, 0, 0, 0.15);
}

.reply-input.focused {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.reply-text {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'Inter', sans-serif;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.reply-send-button {
    height: 28px;
    width: 70px;
    background: #000000;
    border-radius: 4px;
    font-size: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-left: auto;
    transition: transform 0.1s ease, background 0.2s ease;
}

.reply-send-button.hovered {
    background: #1a1a1a;
}

.reply-send-button.clicked {
    transform: scale(0.95);
}

.mini-cursor {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: left 0.6s ease, top 0.6s ease, opacity 0.3s ease, transform 0.1s ease;
}

.mini-cursor.show {
    opacity: 1;
}

.mini-cursor.clicking {
    transform: scale(0.7);
}

/* Success Message for Step 2 */
.reply-success-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.reply-success-message.show {
    animation: scaleIn 0.3s ease forwards;
}

.reply-success-text {
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.reply-success-checkmark {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reply-success-checkmark .checkmark-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2.5px solid #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.reply-success-message.show .checkmark-circle {
    animation: scaleInCenter 0.3s ease forwards;
}

.reply-success-checkmark .checkmark-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    pointer-events: none;
    z-index: 1;
}

.reply-success-checkmark .checkmark-check svg {
    width: 100%;
    height: 100%;
    display: block;
}

.reply-success-checkmark .checkmark-check path {
    stroke: #000000;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}

.reply-success-message.show .checkmark-check path {
    animation: drawCheck 0.5s ease 0.3s forwards;
}

/* Step 3 Animation - Prototype Ready */
.prototype-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.prototype-message.show {
    animation: scaleIn 0.3s ease forwards;
}

.prototype-message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.prototype-message-icon {
    width: 32px;
    height: 32px;
    background: #000000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.prototype-message-title {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
}

.prototype-message-body {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.prototype-link {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 9px;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
    position: relative;
    transition: background 0.2s ease;
}

.prototype-link.selected {
    background: rgba(0, 120, 255, 0.1);
    border-color: rgba(0, 120, 255, 0.3);
}

.prototype-button {
    height: 28px;
    background: #000000;
    border-radius: 4px;
    font-size: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: transform 0.1s ease, background 0.2s ease;
}

.prototype-button.hovered {
    background: #1a1a1a;
}

.prototype-button.clicked {
    transform: scale(0.95);
}

/* Browser Window */
.browser-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 280px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    overflow: hidden;
}

.browser-window.show {
    animation: scaleIn 0.3s ease forwards;
}

.browser-header {
    height: 30px;
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
}

.browser-url-bar {
    flex: 1;
    height: 18px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    font-size: 8px;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.browser-url-text {
    white-space: nowrap;
    opacity: 0;
}

.browser-url-text.show {
    animation: fadeIn 0.3s ease forwards;
}

.browser-content {
    height: calc(100% - 30px);
    overflow: hidden;
    position: relative;
}

/* Website Preview */
.website-preview {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    position: relative;
}

.website-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}

.website-logo {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
}

.website-nav {
    display: flex;
    gap: 12px;
}

.website-nav-item {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.website-nav-item.hovered {
    color: #ffffff;
}

.website-body {
    padding: 20px;
    height: calc(100% - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

/* Hide scrollbar */
.website-body::-webkit-scrollbar {
    display: none;
}

.website-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
    transition: grid-template-columns 0.5s ease;
}

.product-grid.bigger-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.product-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: opacity 0.3s ease, transform 0.3s ease, padding 0.5s ease;
    padding: 8px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease, padding 0.5s ease;
    cursor: none;
}

.product-grid.bigger-cards .product-item {
    padding: 12px;
}

.product-item.hovered {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.product-item.clicked {
    transform: scale(0.98);
}

.product-image {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 6px;
    transition: height 0.5s ease, margin-bottom 0.5s ease;
}

.product-grid.bigger-cards .product-image {
    height: 60px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    font-weight: 500;
    transition: font-size 0.5s ease, margin-bottom 0.5s ease;
}

.product-grid.bigger-cards .product-name {
    font-size: 9px;
    margin-bottom: 6px;
}

.product-price {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.6);
    transition: font-size 0.5s ease;
}

.product-grid.bigger-cards .product-price {
    font-size: 9px;
}

/* About Page */
.about-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.about-page.show {
    opacity: 1;
    pointer-events: auto;
}

.about-title {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-text {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Add to Cart Button */
.add-to-cart-button {
    width: 100%;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

.add-to-cart-button.hovered {
    background: rgba(255, 255, 255, 0.15);
}

.add-to-cart-button.clicked {
    transform: scale(0.95);
}

/* Product Detail Overlay */
.product-detail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.product-detail.show {
    opacity: 1;
    pointer-events: auto;
}

.product-detail-image {
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.product-detail-name {
    font-size: 9px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-detail-price {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

/* Step 4 Animation - Review & Feedback */
.feedback-browser-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 400px;
    height: 280px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
}

.feedback-browser-window.show {
    animation: scaleInFeedback 0.3s ease forwards;
}

@keyframes scaleInFeedback {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.feedback-chat-widget {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 240px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.feedback-chat-widget.show {
    animation: slideUpFadeIn 0.3s ease forwards;
}

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

.feedback-chat-header {
    background: #000000;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-chat-icon {
    font-size: 14px;
}

.feedback-chat-title {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
}

.feedback-chat-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 150px;
    overflow-y: auto;
}

.feedback-message {
    display: flex;
    opacity: 0;
    transform: translateY(10px);
}

.feedback-message.show {
    animation: messageSlideIn 0.3s ease forwards;
}

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

.feedback-message-text {
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 9px;
    line-height: 1.4;
    max-width: 85%;
}

.user-message .feedback-message-text {
    background: #000000;
    color: #ffffff;
    margin-left: auto;
    border-bottom-right-radius: 2px;
}

.bot-message .feedback-message-text {
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
    border-bottom-left-radius: 2px;
}

.feedback-target {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-target.highlighted {
    box-shadow: 0 0 0 2px #000000;
    transform: scale(1.05);
}

.feedback-target-hide.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.reload-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
}

.reload-indicator.show {
    animation: fadeInOut 0.8s ease;
}

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

.reload-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Step 5 Animation - Invoice & Payment */
.payment-notification {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(320px);
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.payment-notification.show {
    animation: slideInFromRight 0.3s ease forwards;
}

.payment-notification.hovered {
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.4);
}

.payment-notification.clicked {
    transform: translateX(0) scale(0.98);
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(320px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.payment-notification-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.payment-notification-icon {
    width: 24px;
    height: 24px;
    background: #000000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #ffffff;
    font-weight: 600;
}

.payment-notification-title {
    font-size: 11px;
    font-weight: 600;
    color: #000000;
}

.payment-notification-body {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    margin-bottom: 8px;
}

.payment-notification-button {
    height: 24px;
    background: #000000;
    border-radius: 4px;
    font-size: 9px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

.payment-notification-button.hovered {
    background: #1a1a1a;
}

.payment-notification-button.clicked {
    transform: scale(0.95);
}

/* Invoice Card */
.invoice-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.invoice-card.show {
    animation: scaleIn 0.3s ease forwards;
}

.invoice-header {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.invoice-number {
    font-size: 8px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
}

.invoice-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 12px 0;
}

.invoice-items {
    margin-bottom: 12px;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    margin-bottom: 6px;
}

.invoice-item-name {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.8);
}

.invoice-item-price {
    font-size: 9px;
    color: #000000;
    font-weight: 600;
}

.invoice-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin-bottom: 12px;
}

.invoice-total-label {
    font-size: 10px;
    color: #000000;
    font-weight: 600;
}

.invoice-total-amount {
    font-size: 12px;
    color: #000000;
    font-weight: 700;
}

.invoice-pay-button {
    width: 100%;
    height: 32px;
    background: #000000;
    border-radius: 4px;
    font-size: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

.invoice-pay-button.hovered {
    background: #1a1a1a;
}

.invoice-pay-button.clicked {
    transform: scale(0.95);
}

/* Payment Method Selector */
.payment-method-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.payment-method-card.show {
    animation: scaleIn 0.3s ease forwards;
}

.payment-method-title {
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.payment-methods {
    margin-bottom: 12px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.payment-method-option.hovered {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

.payment-method-option.selected {
    background: rgba(0, 0, 0, 0.08);
    border-color: #000000;
}

.payment-method-radio {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    position: relative;
}

.payment-method-option.selected .payment-method-radio {
    border-color: #000000;
}

.payment-method-option.selected .payment-method-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #000000;
    border-radius: 50%;
}

.payment-method-label {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.payment-confirm-button {
    width: 100%;
    height: 32px;
    background: #000000;
    border-radius: 4px;
    font-size: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

.payment-confirm-button.hovered {
    background: #1a1a1a;
}

.payment-confirm-button.clicked {
    transform: scale(0.95);
}

/* Payment Success */
.payment-success-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    text-align: center;
}

.payment-success-card.show {
    animation: scaleIn 0.3s ease forwards;
}

.payment-success-text {
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.payment-success-subtext {
    font-size: 9px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 16px;
}

/* Trigger checkmark animation for payment success */
.payment-success-card.show .checkmark-circle {
    animation: scaleInCenter 0.3s ease forwards;
}

.payment-success-card.show .checkmark-check path {
    animation: drawCheck 0.5s ease 0.3s forwards;
}

/* Step 5 Animation - Domain Selection & Launch */
.domain-selection-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.domain-selection-card.show {
    animation: scaleIn 0.3s ease forwards;
}

.domain-selection-title {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.domain-input-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.domain-input {
    width: 100%;
    height: 36px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0 36px 0 12px;
    font-size: 10px;
    color: #000000;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
}

.domain-input-text {
    font-size: 10px;
    color: #000000;
}

.domain-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.domain-availability {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    margin-bottom: 12px;
    opacity: 0;
}

.domain-availability.show {
    animation: fadeInBounce 0.4s ease forwards;
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.domain-availability-icon {
    font-size: 12px;
    color: #000000;
}

.domain-availability-text {
    font-size: 9px;
    color: #000000;
    font-weight: 600;
}

.domain-select-button {
    width: 100%;
    height: 32px;
    background: #000000;
    border-radius: 4px;
    font-size: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

.domain-select-button.hovered {
    background: #1a1a1a;
}

.domain-select-button.clicked {
    transform: scale(0.95);
}

/* Launch Card */
.launch-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    text-align: center;
}

.launch-card.show {
    animation: scaleIn 0.3s ease forwards;
}

.launch-title {
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.launch-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
}

.launch-progress-fill {
    height: 100%;
    background: #000000;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.launch-countdown {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    opacity: 0;
}

.launch-countdown.show {
    animation: countdownPulse 0.6s ease;
}

@keyframes countdownPulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Launch Success */
.launch-success-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    text-align: center;
}

.launch-success-card.show {
    animation: scaleIn 0.3s ease forwards;
}

.launch-success-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    animation: rocketLaunch 0.6s ease;
}

.launch-success-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(20px) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.launch-success-title {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.launch-success-url {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 16px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.launch-visit-button {
    width: 100%;
    height: 32px;
    background: #000000;
    border-radius: 4px;
    font-size: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
}

.launch-visit-button.hovered {
    background: #1a1a1a;
}

.launch-visit-button.clicked {
    transform: scale(0.95);
}

/* Step lines removed */

/* FAQ Section */
.faq {
    padding: 5rem 0;
    margin-top: 0;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: none;
    user-select: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question * {
    cursor: none;
}

/* FAQ hover effects - only on devices that support hover (desktop) */
@media (hover: hover) and (pointer: fine) {
    .faq-item:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .faq-question:hover {
        color: rgba(255, 255, 255, 0.8);
    }
}

/* Completely disable hover effects on touch devices to prevent sticky hover */
@media (hover: none), (pointer: coarse), (max-width: 768px) {
    .faq-item:hover,
    .faq-item:active,
    .faq-item:focus,
    .faq-item:focus-within {
        background: rgba(255, 255, 255, 0.03) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

    .faq-question:hover,
    .faq-question:active,
    .faq-question:focus,
    .faq-question:focus-within {
        color: #ffffff !important;
    }
}

/* Force mobile FAQ items to never change appearance - highest specificity */
.mobile-faq.faq-item,
.mobile-faq.faq-item:hover,
.mobile-faq.faq-item:active,
.mobile-faq.faq-item:focus,
.mobile-faq.faq-item:focus-within,
.mobile-faq.faq-item:target {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    transition: none !important;
}

.mobile-faq.faq-question,
.mobile-faq.faq-question:hover,
.mobile-faq.faq-question:active,
.mobile-faq.faq-question:focus,
.mobile-faq.faq-question:focus-within,
.mobile-faq.faq-question:target {
    color: #ffffff !important;
    background: transparent !important;
    transition: none !important;
}

/* Remove ALL touch feedback on mobile devices */
@media (hover: none) and (pointer: coarse) {
    .faq-item,
    .faq-question {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        /* Disable pointer events that could cause focus */
        touch-action: manipulation !important;
        /* CRITICAL: Disable transitions on mobile to prevent visual state changes */
        transition: none !important;
    }

    /* Force FAQ items to maintain default appearance on mobile - no state changes whatsoever */
    .faq-item,
    .faq-item:active,
    .faq-item:focus,
    .faq-item:focus-within,
    .faq-item:focus-visible,
    .faq-item:hover,
    .faq-item:target {
        background: rgba(255, 255, 255, 0.03) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        outline: none !important;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: none !important;
        transition: none !important;
    }

    .faq-question,
    .faq-question:active,
    .faq-question:focus,
    .faq-question:focus-within,
    .faq-question:focus-visible,
    .faq-question:hover,
    .faq-question:target {
        color: #ffffff !important;
        background: transparent !important;
        outline: none !important;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: none !important;
        transition: none !important;
    }

    /* Also target any child elements - but preserve icon animation */
    .faq-question span,
    .faq-question span:active,
    .faq-question span:focus,
    .faq-question span:focus-visible {
        outline: none !important;
        background: transparent !important;
        transition: none !important;
    }

    /* Keep icon transition for arrow rotation animation */
    .faq-icon {
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    padding: 0 2rem 1.5rem 2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0 20rem 0;
    margin-top: 0;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem 0;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: none; /* Remove resize handle */
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: #ffffff;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.form-group.error input,
.form-group.error textarea {
    border-bottom-color: rgba(255, 100, 100, 0.8);
}

.form-group.error .input-line {
    width: 100%;
    background: rgba(255, 100, 100, 0.8);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Hover effect removed as per user request */

.info-icon {
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    opacity: 0.7;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

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

.footer-content {
    margin-bottom: 1rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom {
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}





@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

/* Responsive Design */

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Optimize background for mobile */
    body {
        background-attachment: scroll;
        background-size: cover;
    }

    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Optimize animations for mobile performance */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Tablet and smaller devices */
@media (max-width: 1024px) {
    .hero-container {
        padding: 3rem 2rem 2rem 4rem;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 7rem);
    }

    .process-content {
        grid-template-columns: 1fr 500px;
        gap: 2rem;
    }

    .animation-screen {
        width: 500px;
        height: 320px;
    }

    .contact-content {
        gap: 3rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Navigation */
    .nav {
        width: 100%;
        /* CRITICAL: Lock to 10px on mobile - never 0 */
        position: fixed;
        top: 10px !important;
        left: 50%;
        transform: translateX(-50%);

        /* Add safe area padding to push content down from notch/browser UI */
        padding-top: env(safe-area-inset-top, 0px);

        /* Smooth transitions for mobile - NO top transition */
        transition:
            width 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            background 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            backdrop-filter 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            border 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            border-radius 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            box-shadow 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);

        /* Performance optimization */
        will-change: width, background;

        /* Prevent subpixel rendering issues */
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .nav.floating {
        /* Keep at 10px - always visible */
        top: 10px !important;
        width: 95%;
        max-width: calc(100% - 20px);
    }

    .nav.floating.attached {
        /* CRITICAL: Override desktop rule with !important */
        top: 10px !important;
    }

    .nav.floating .nav-container {
        padding: 0 1rem;
        /* Fixed height to prevent page jumping on mobile */
        height: 50px;
    }

    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        /* Fixed height for attached state on mobile */
        height: 60px;
        /* Faster transition on mobile */
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav.floating.attached .nav-container {
        padding: 0 1rem;
        /* Maintain consistent height when attached on mobile */
        height: 60px;
    }

    .nav.scrolled .nav-container {
        padding: 0 1rem;
        height: 50px;
    }

    /* Simplify blur transitions on mobile - use same timing as base */
    .nav.fast-blur-removal,
    .nav.fast-blur-buildup {
        transition:
            width 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            background 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            backdrop-filter 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            border 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            border-radius 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
            box-shadow 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .logo {
        font-size: 1.2rem;
        pointer-events: auto !important;
    }

    .logo:hover {
        transform: none !important;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        align-items: center;
    }

    /* Hide Home and Contact links on mobile */
    .nav-link[href="#home"],
    .nav-link[href="#contact"] {
        display: none !important;
    }

    /* Keep language switcher visible on mobile */
    .lang-switcher {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    /* Hide custom cursor on mobile */
    .cursor,
    .cursor-follower {
        display: none !important;
    }

    /* Reset cursor to default on mobile */
    body,
    a, button, input, textarea, select, .info-item, .nav-link, .logo, .cta-image, .submit-image {
        cursor: default !important;
    }

    /* Disable all hover effects on mobile */
    .nav-link:hover,
    .info-item:hover,
    .faq-item:hover,
    .faq-question:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
        padding: 0;
    }

    .hero-container {
        padding: 2rem 1.5rem 1rem 1.5rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        align-items: center;
    }

    .hero-left {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    /* Prevent text selection on hero title on mobile */
    .hero-title,
    .title-line,
    .kinetic-letters-container,
    .kinetic-letter {
        user-select: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        -webkit-touch-callout: none !important;
    }

    .hero-logo {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 14vw, 5rem) !important;
        line-height: 0.9;
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }

    .title-line {
        margin-bottom: 1rem;
    }

    .hero-tagline {
        margin-bottom: 2rem;
    }

    .tagline-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

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

    .cta-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    /* Process Section */
    .process {
        min-height: auto !important;
        padding: 3rem 0 3rem 0 !important;
    }

    .process-container {
        padding: 0 1.5rem;
    }

    .process-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.8rem;
    }

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

    .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-animation-container {
        display: none;
    }

    .process-steps {
        gap: 0;
    }

    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        padding: 1.2rem 0;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .step-title-row {
        gap: 1.5rem;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .step-try-button {
        display: none;
    }

    .step-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .step-progress {
        left: 0;
        right: 0;
        width: 100%;
        top: auto;
        bottom: 0;
    }

    /* FAQ Section */
    .faq {
        padding: 4rem 0;
    }

    .faq-container {
        padding: 0 1.5rem;
    }

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

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.2rem 1.5rem;
    }

    /* Contact Section */
    .contact {
        padding: 6rem 0 3rem 0;
    }

    .contact-container {
        padding: 0 1.5rem;
    }

    .contact-header {
        margin-bottom: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.9rem 0;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .submit-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .info-item {
        padding: 1.2rem;
        flex-direction: row;
        align-items: center;
    }

    .info-icon {
        flex-shrink: 0;
    }

    .info-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-logo {
        font-size: 1rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    /* Hide floating elements */
    .floating-element {
        display: none;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Navigation */
    .nav.floating {
        width: 96%;
        top: 8px;
    }

    .nav-container {
        padding: 0.8rem;
    }

    .logo {
        font-size: 1rem;
    }

    .lang-switcher {
        font-size: 0.8rem;
    }

    /* Hero Section */
    .hero-container {
        padding: 1.5rem 1rem 1rem 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 4rem) !important;
        line-height: 0.9;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }

    .title-line {
        margin-bottom: 0.8rem;
    }

    .hero-logo {
        margin-bottom: 1.5rem;
    }

    .hero-tagline {
        margin-bottom: 1.5rem;
    }

    .tagline-text {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .cta-image {
        max-width: 100%;
        width: 100%;
    }

    /* Process Section */
    .process {
        min-height: auto !important;
        padding: 2.5rem 0 2.5rem 0 !important;
    }

    .process-container {
        padding: 0 1rem;
    }

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

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 0.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .process-step {
        grid-template-columns: 45px 1fr;
        gap: 0.8rem;
        padding: 1rem 0;
    }

    .step-number {
        font-size: 1.3rem;
    }

    .step-title-row {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .step-try-button {
        padding: 0.45rem 1rem;
        font-size: 0.85rem;
    }

    .step-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .step-progress {
        left: 0;
        right: 0;
        width: 100%;
        top: auto;
        bottom: 0;
    }

    /* FAQ Section */
    .faq {
        padding: 3rem 0;
    }

    .faq-container {
        padding: 0 1rem;
    }

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

    .faq-question {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        margin-left: 0.5rem;
    }

    .faq-icon svg {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        padding: 0 1.2rem 1rem 1.2rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Contact Section */
    .contact {
        padding: 5rem 0 2.5rem 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

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

    .contact-content {
        gap: 2rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }

    .form-group label {
        font-size: 0.85rem;
        top: 0.8rem;
    }

    .form-group input:focus + label,
    .form-group textarea:focus + label,
    .form-group input:valid + label,
    .form-group textarea:valid + label {
        font-size: 0.75rem;
    }

    .submit-image {
        max-width: 100%;
        width: 100%;
    }

    .info-item {
        padding: 1rem;
        gap: 0.8rem;
    }

    .info-icon img {
        width: 20px !important;
        height: 20px !important;
    }

    .info-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 1.2rem 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-logo {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.7rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(1.8rem, 11vw, 3.5rem) !important;
    }

    .tagline-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .process-step {
        grid-template-columns: 40px 1fr;
        gap: 0.6rem;
    }

    .step-number {
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-description {
        font-size: 0.8rem;
    }

    .info-item {
        padding: 0.8rem;
        gap: 0.6rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-container {
        padding: 1.5rem 2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem) !important;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        margin-bottom: 1.5rem;
    }

    .tagline-text {
        font-size: 1rem;
    }

    .hero-description {
        margin-bottom: 1.5rem;
    }

    .process {
        padding: 2rem 0 2rem 0 !important;
    }

    .contact {
        padding: 2rem 0;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap target sizes for better mobile UX */
    .nav-link,
    .lang-switcher,
    .cta-image,
    .submit-image {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .nav-link:hover::after {
        width: 0;
    }

    .cta-image:hover,
    .submit-image:hover {
        transform: none;
        filter: none;
    }

    /* Ensure form inputs are touch-friendly */
    .form-group input,
    .form-group textarea {
        min-height: 44px;
    }
}










