:root {
    --bg-color: #F9F5F6;
    --text-main: #2D2424;
    --text-muted: #6D5D5D;
    --accent-gold: #D4AF37;
    --accent-rose: #C58F93;
    --accent-rose-dark: #A66D71;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(197, 143, 147, 0.15);
    --card-shadow: 0 20px 40px -10px rgba(45, 36, 36, 0.05);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJnoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2cpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    pointer-events: none;
    z-index: -1;
}

.ambient-glow {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(197, 143, 147, 0.05) 40%, transparent 70%);
    filter: blur(80px);
    z-index: -2;
    animation: float-glow 20s infinite alternate;
}

.ambient-glow::after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: -100%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(197, 143, 147, 0.08) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 70%);
    filter: blur(100px);
}

@keyframes float-glow {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-5%, 5%);
    }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-rose-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--text-main) 0%, #4a3b3b 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(45, 36, 36, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(45, 36, 36, 0.3);
}

.btn-primary .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: rgba(45, 36, 36, 0.03);
    border-color: var(--accent-rose-dark);
    color: var(--accent-rose-dark);
}

.full-width {
    width: 100%;
    margin: 0.5rem 0;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 143, 147, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-rose-dark);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.heart-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.subtitle-block {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.price-tag {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price-tag .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.price-tag .amount {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
}

.price-tag .note {
    font-size: 0.9rem;
    color: var(--accent-rose-dark);
    font-style: italic;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
    padding: 3rem;
    width: 400px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.glass-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-10px);
}

.browser-dots {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E0E0E0;
}

.browser-dots span:nth-child(1) {
    background-color: #FF5F57;
}

.browser-dots span:nth-child(2) {
    background-color: #FFBD2E;
}

.browser-dots span:nth-child(3) {
    background-color: #28C130;
}

.domain-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #28C130;
    background: rgba(40, 193, 48, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    background-color: #28C130;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px #28C130;
}

/* Value Section */
.value-section {
    padding: 6rem 0;
}

.stats-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.stat-info h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.stat-unit {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.stat-note {
    font-size: 0.9rem;
    color: #28C130;
    margin-bottom: 0.2rem;
}

.stat-subnote {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.section-label {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-rose);
}

.luxury-list {
    list-style: none;
}

.luxury-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-rose-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-right: 1.2rem;
    font-size: 1rem;
}

.list-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

.list-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Brand Vision */
.brand-vision {
    background-color: #1A1A1A;
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-title {
    font-size: 2.5rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-weight: 400;
}

.vision-mockup {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.mockup-screen {
    background: #fff;
    border-radius: 12px;
    height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 60px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.logo-placeholder {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-main);
}

.nav-lines span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #ddd;
    margin-left: 10px;
}

.mockup-body {
    flex: 1;
    padding: 2rem;
    background: #f9f9f9;
}

.hero-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #fcebeb 0%, #fff0f0 100%);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.content-lines span {
    display: block;
    height: 10px;
    background: #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
}

.content-lines span:nth-child(1) {
    width: 80%;
}

.content-lines span:nth-child(2) {
    width: 90%;
}

.content-lines span:nth-child(3) {
    width: 60%;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(197, 143, 147, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Scarcity */
.scarcity-section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.icon-crown {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.scarcity-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.investment-note {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    color: #9A7D0A;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
}

.investment-note i {
    margin-right: 0.5rem;
}

/* Contact */
.contact-section {
    padding-bottom: 6rem;
}

.contact-panel {
    background: #fff;
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-panel p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    text-align: left;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-details .value {
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
}

.action-buttons {
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        margin-bottom: 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    .glass-card {
        width: 100%;
        max-width: 350px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-delayed {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide-in-left {
    animation: slideInLeft 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}