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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fef7f5 0%, #ffffff 50%, #fdf4f1 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1400px;
}

.logo a {
    display: block;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.nav a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav a:hover {
    color: #f5a485;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5a485, #f8b195);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after {
    width: 100%;
}

.btn-demo {
    background: linear-gradient(135deg, #f5a485, #f8b195);
    color: white !important;
    padding: 12px 24px ! important;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 164, 133, 0.3);
    border: none;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 164, 133, 0.4);
    background: linear-gradient(135deg, #e89372, #f5a485);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
    background: linear-gradient(135deg,
            #fef7f5 0%,
            #fdf4f1 25%,
            #fcebe3 50%,
            #fae8df 75%,
            #f8e6dc 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(245, 164, 133, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(248, 177, 149, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(252, 139, 100, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(245, 164, 133, 0.08) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.8;
    }

    66% {
        transform: translateY(-15px) rotate(240deg);
        opacity: 0.9;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 164, 133, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 164, 133, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-icon {
    font-size: 1.1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.title-main {
    display: block;
    color: #8b4513;
    text-shadow: 0 2px 20px rgba(245, 164, 133, 0.3);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #f5a485, #f8b195, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: highlightGlow 3s ease-in-out infinite;
}

@keyframes highlightGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(139, 69, 19, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #1a1d29;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 164, 133, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(245, 164, 133, 0.15);
    color: #8b4513;
    border: 2px solid rgba(245, 164, 133, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(245, 164, 133, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(245, 164, 133, 0.2);
}

.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.phone-main {
    position: relative;
    z-index: 3;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1d29, #2d3748);
    border-radius: 45px;
    padding: 8px;
    position: relative;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1d29;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 37px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.1);
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 20px 20px;
    color: #8b4513;
    font-weight: 600;
    font-size: 0.9rem;
}

.screen-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signal-bars {
    width: 18px;
    height: 12px;
    background: linear-gradient(90deg, #f5a485 0%, #f8b195 100%);
    border-radius: 2px;
    position: relative;
}

.signal-bars::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 3px;
    height: 8px;
    background: #ffffff;
    border-radius: 1px;
    box-shadow: 5px 0 #ffffff, 10px 0 #ffffff, 15px 0 #ffffff;
}

.battery {
    width: 24px;
    height: 12px;
    border: 2px solid #8b4513;
    border-radius: 2px;
    position: relative;
}

.battery::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 2px;
    width: 2px;
    height: 4px;
    background: #8b4513;
    border-radius: 0 1px 1px 0;
}

.battery::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 14px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 1px;
}

.app-interface {
    padding: 0 20px 30px;
}

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

.app-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 8px;
}

.photo-count {
    font-size: 0.9rem;
    color: rgba(139, 69, 19, 0.7);
    font-weight: 500;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

.photo-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fef7f5, #fdf4f1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-item.active {
    background: linear-gradient(135deg, #f5a485, #f8b195);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 164, 133, 0.4);
}

.photo-item::before {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    opacity: 0.7;
}

.photo-item.active::before {
    content: '✨';
    opacity: 1;
}

.upload-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #f5a485, #f8b195);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(245, 164, 133, 0.3);
    animation: uploadPulse 2s ease-in-out infinite;
}

@keyframes uploadPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(245, 164, 133, 0.3);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 35px rgba(245, 164, 133, 0.4);
    }
}

.qr-container {
    position: absolute;
    right: -100px;
    top: 20%;
    z-index: 2;
    animation: qrFloat 8s ease-in-out infinite;
}

@keyframes qrFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

.qr-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(245, 164, 133, 0.2);
    backdrop-filter: blur(10px);
}

.qr-header,
.qr-footer {
    text-align: center;
    font-weight: 600;
    color: #1a1d29;
    font-size: 0.9rem;
}

.qr-header {
    margin-bottom: 16px;
    color: #f5a485;
}

.qr-footer {
    margin-top: 16px;
    color: #64748b;
    font-size: 0.8rem;
}

.qr-code {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto;
}

.qr-pattern {
    width: 100%;
    height: 100%;
    position: relative;
    background: #8b4513;
    border-radius: 8px;
}

.qr-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #8b4513;
}

.qr-corner.tl {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.qr-corner.tr {
    top: 8px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.qr-corner.bl {
    bottom: 8px;
    left: 8px;
    border-right: none;
    border-top: none;
}

.qr-corner.br {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
}

.qr-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    width: 60px;
    height: 60px;
}

.qr-dots .qr-dot {
    background: #fef7f5;
    border-radius: 2px;
    animation: qrDotPulse 3s ease-in-out infinite;
}

.qr-dots .qr-dot:nth-child(odd) {
    animation-delay: 0.5s;
}

.qr-dots .qr-dot:nth-child(4n) {
    animation-delay: 1s;
}

@keyframes qrDotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: floatIcon 15s linear infinite;
    opacity: 0.8;
}

.floating-icon.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon.icon-3 {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.floating-icon.icon-4 {
    top: 70%;
    right: 10%;
    animation-delay: 6s;
}

.floating-icon.icon-5 {
    top: 40%;
    left: 15%;
    animation-delay: 8s;
}

.floating-icon.icon-6 {
    top: 80%;
    right: 5%;
    animation-delay: 10s;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #fef7f5 0%, #ffffff 50%, #f9fafb 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 164, 133, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(248, 177, 149, 0.05) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #1a1d29;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(135deg, #f5a485, #f8b195);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
    margin-top: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 164, 133, 0.1);
    box-shadow: 0 8px 32px rgba(245, 164, 133, 0.06);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(245, 164, 133, 0.12);
    border-color: rgba(245, 164, 133, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f5a485, #f8b195);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(245, 164, 133, 0.3);
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: #ffffff;
    border-radius: 17px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: #f5a485;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(245, 164, 133, 0.4);
}

.feature-card:hover .feature-icon svg {
    color: #e89372;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1d29;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, #fef7f5 0%, #ffffff 50%, #f9fafb 100%);
    text-align: center;
    position: relative;
    contain: layout style paint;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(245, 164, 133, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(248, 177, 149, 0.05) 0%, transparent 50%);
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: #ffffff;
    padding: 80px 56px;
    border-radius: 32px;
    box-shadow:
        0 40px 100px rgba(245, 164, 133, 0.15),
        0 0 0 1px rgba(245, 164, 133, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 164, 133, 0.1);
    transition: box-shadow 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.pricing-card:hover {
    box-shadow:
        0 50px 120px rgba(245, 164, 133, 0.25),
        0 0 0 1px rgba(245, 164, 133, 0.2);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, #f5a485, #f8b195);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(245, 164, 133, 0.02) 50%, transparent 60%);
    animation: shine 4s ease-in-out infinite;
    will-change: transform;
}

@keyframes shine {
    0% {
        transform: translate3d(-100%, -100%, 0) rotate(45deg);
    }

    100% {
        transform: translate3d(100%, 100%, 0) rotate(45deg);
    }
}

.pricing-header {
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.price-tag {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.old-price {
    display: block;
    font-size: 2rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: 8px;
}

.current-price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.current-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: #1a1d29;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f5a485, #f8b195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 600;
}

.price-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.features-list {
    text-align: left;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(245, 164, 133, 0.1);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(245, 164, 133, 0.05);
    border-radius: 12px;
    padding-left: 12px;
    padding-right: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f5a485, #f8b195);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 164, 133, 0.3);
}

.feature-item span:last-child {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.pricing-btn {
    width: 100%;
    padding: 24px 32px;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f5a485, #f8b195);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(245, 164, 133, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    will-change: transform;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-btn:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 16px 50px rgba(245, 164, 133, 0.5);
    background: linear-gradient(135deg, #e89372, #f5a485);
}

.pricing-btn:active {
    transform: translate3d(0, 0, 0);
    transition: transform 0.1s ease;
}

.faq {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(245, 164, 133, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(248, 177, 149, 0.03) 0%, transparent 50%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(245, 164, 133, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 164, 133, 0.1);
}

.faq-item:hover {
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(245, 164, 133, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    padding: 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1d29;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a485;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245, 164, 133, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(245, 164, 133, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 32px;
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

.contact {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.contact-info {
    max-width: 1000px;
    margin: 64px auto 0;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, #fef7f5 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid rgba(245, 164, 133, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(245, 164, 133, 0.06);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(245, 164, 133, 0.1);
    border-color: rgba(245, 164, 133, 0.2);
}

.contact-icon {
    font-size: 32px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5a485, #f8b195);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(245, 164, 133, 0.3);
}

.contact-method h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1d29;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.contact-method p,
.contact-method a {
    color: #64748b;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
}

.contact-link {
    color: #f5a485;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(245, 164, 133, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 8px;
}

.contact-link:hover {
    background: rgba(245, 164, 133, 0.2);
    transform: translateY(-2px);
}

.footer {
    background: linear-gradient(135deg, #1a1d29 0%, #2d3748 100%);
    color: white;
    padding: 62px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(245, 164, 133, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(248, 177, 149, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.footer-section h3 span {
    color: #f8b195;
}

.footer-section a {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-section a:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 42px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: block;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f1f5f9;
    font-weight: 700;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #f5a485, #f8b195);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-section a:hover {
    color: #f8b195;
    padding-left: 16px;
}

.footer-section a:hover::before {
    width: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(203, 213, 225, 0.2);
    padding-top: 32px;
    text-align: center;
    color: #cbd5e1;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.footer-bottom a {
    color: #f8b195;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom .two {
    margin-top: 5px;
    font-weight: 400;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, #f5a485, #f8b195);
    border: none;
    font-size: 1.1rem;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(245, 164, 133, 0.3);
    position: relative;
    overflow: hidden;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle::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.6s ease;
}

.mobile-menu-toggle:hover::before {
    left: 100%;
}

.mobile-menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 164, 133, 0.4);
    background: linear-gradient(135deg, #e89372, #f5a485);
}

.mobile-menu-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 164, 133, 0.5);
}

.mobile-menu-toggle:active {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(245, 164, 133, 0.3);
}

.mobile-menu-toggle svg {
    pointer-events: none;
}

.mobile-menu-toggle svg * {
    pointer-events: none;
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f5a485, #f8b195);
    border-radius: 6px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e89372, #f5a485);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-gradient {
    background: linear-gradient(135deg, #f5a485, #f8b195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-demo:focus {
    outline: 2px solid #f5a485;
    outline-offset: 2px;
}

.nav a:focus {
    outline: 2px solid #f5a485;
    outline-offset: 4px;
    border-radius: 4px;
}

@media (max-width: 768px) {

    .qr-container {
        display: none;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .header .container {
        padding: 15px 20px;
    }

    .logo img {
        height: 40px;
        max-width: 180px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 25px 20px 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(245, 164, 133, 0.2);
        z-index: 999;
        gap: 20px;
    }

    .nav.mobile-active {
        display: flex;
        top: 70px;
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

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

    .nav a {
        padding: 14px 20px;
        border-radius: 12px;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        position: relative;
        color: #1a1d29;
    }

    .nav a.btn-demo {
        background: linear-gradient(135deg, #f5a485, #f8b195);
        color: #ffffff !important;
        margin-top: 12px;
        padding: 16px 20px !important;
        box-shadow: 0 6px 25px rgba(245, 164, 133, 0.4);
        border: none;
        font-weight: 700;
    }

    .nav a.btn-demo:hover {
        background: linear-gradient(135deg, #e89372, #f5a485);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(245, 164, 133, 0.5);
    }

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

    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 60px 20px 0px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        min-width: 200px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .qr-demo {
        scale: 0.8;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

    .pricing {
        padding: 60px 0;
    }

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

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

    .demo {
        padding: 60px 0;
    }

    .demo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .demo-photo {
        height: 100px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-methods {
        gap: 25px;
    }

    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form input,
    .form select,
    .form textarea {
        font-size: 16px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 15px;
    }

    .footer-section a {
        display: block;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {

    .hero_button svg {
        display: none;
    }

    .container {
        padding: 0 15px;
    }

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

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

    .btn-primary,
    .btn-secondary {
        min-width: 180px;
        padding: 12px 24px;
        font-size: 0.95rem;
        gap: 8px;
        justify-content: center;
    }

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

    .feature-card {
        padding: 25px 15px;
    }

    .demo-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .demo-photo {
        height: 80px;
    }

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

    .faq-question h4 {
        font-size: 1rem;
    }

    .contact-method {
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card {
        transition: none;
    }

    .pricing-card::after {
        animation: none;
    }

    .pricing-btn {
        transition: none;
    }

    .pricing-btn:hover {
        transform: none;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f5a485, #f8b195);
    border-radius: 6px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e89372, #f5a485);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-gradient {
    background: linear-gradient(135deg, #f5a485, #f8b195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-demo:focus {
    outline: 2px solid #f5a485;
    outline-offset: 2px;
}

.nav a:focus {
    outline: 2px solid #f5a485;
    outline-offset: 4px;
    border-radius: 4px;
}