@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #050507;
    --bg-card: rgba(20, 20, 25, 0.6);
    --gold-light: #FBF5B7;
    --gold-main: #D4AF37;
    --gold-dark: #AA771C;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --text-main: #EAEAEA;
    --text-muted: #A0A0A5;
    --border-glass: rgba(212, 175, 55, 0.15);
    --border-glass-hover: rgba(212, 175, 55, 0.4);
    --accent-red: #ff3333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.lang-bar .brand-mini {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    white-space: nowrap;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.lang-bar .brand-mini {
    margin-right: auto;
}

.lang-switcher a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-switcher a:hover {
    color: var(--gold-light);
    border-color: var(--border-glass-hover);
}

.lang-switcher a.active {
    color: #000;
    background: var(--gold-gradient);
    border-color: var(--gold-main);
    font-weight: 800;
}

/* ===== BACKGROUND ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0a0a0f 0%, #000000 100%);
}

.bg-animation .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: floatOrb 25s ease-in-out infinite;
}

.bg-animation .orb:nth-child(1) {
    width: 50vw; height: 50vw;
    background: var(--gold-main);
    top: -20vh; left: -10vw;
    animation-duration: 30s;
}

.bg-animation .orb:nth-child(2) {
    width: 40vw; height: 40vw;
    background: #1a1a2e;
    bottom: -10vh; right: -10vw;
    animation-duration: 25s;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(3vw, -5vh) scale(1.1); }
    66% { transform: translate(-2vw, 4vh) scale(0.9); }
}

.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--gold-main);
    animation: rise linear infinite;
}

@keyframes rise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-main);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(5px);
}

.logo-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.logo-shield {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4)); }
    50% { transform: translateY(-12px); filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)); }
}

.domain-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(60px, 12vw, 130px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    letter-spacing: 2px;
}

.domain-extension {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 300;
    color: var(--gold-main);
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    color: var(--text-muted);
    max-width: 760px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.hero-subtitle strong {
    color: #fff;
    font-weight: 500;
}

.price-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 35px 60px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-main);
    margin-bottom: 12px;
    font-weight: 600;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.price-currency {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--gold-main);
    margin-left: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--gold-gradient);
    color: #000;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.cta-button:hover::after {
    left: 200%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0 80px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--gold-gradient);
    opacity: 0.5;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-main);
    margin-bottom: 16px;
    display: inline-block;
    border-bottom: 1px solid var(--gold-main);
    padding-bottom: 5px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glass-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.05);
    background: rgba(30, 30, 35, 0.8);
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 24px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.advantage-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.advantage-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

/* ===== WHY INVESTORS BUY (VALUE CARDS) ===== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.value-card {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(10, 10, 12, 0.6) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 36px 26px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gold-gradient);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.08);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.value-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

.value-card ul {
    list-style: none;
    text-align: left;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.value-card ul li {
    font-size: 13.5px;
    color: var(--text-main);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.value-card ul li::before {
    content: '✦';
    color: var(--gold-main);
    font-size: 11px;
}

/* ===== COMPARISON ===== */
.comparison-wrapper {
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 60px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-col {
    padding: 40px;
    border-radius: 16px;
}

.comparison-col.kufar {
    background: rgba(255, 51, 51, 0.03);
    border: 1px dashed rgba(255, 51, 51, 0.2);
}

.comparison-col.ours {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 12, 0) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.08);
    position: relative;
}

.vip-label {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gold-gradient);
    color: #000;
    padding: 6px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.kufar .col-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 25px; }
.ours .col-desc { color: var(--gold-main); font-size: 14px; margin-bottom: 25px; font-weight: 500;}

.col-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 30px;
}

.kufar .col-price { color: #888; text-decoration: line-through; text-decoration-color: var(--accent-red); font-size: 32px;}
.kufar .col-price span { font-family: 'Montserrat', sans-serif; font-size: 16px; display: block; text-decoration: none; margin-top: 5px;}

.ours .col-price {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.col-list {
    list-style: none;
}

.col-list li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.col-list li:last-child { border-bottom: none; }

.col-list li .icon { font-size: 18px; margin-top: 2px; }
.kufar .col-list li .icon { color: var(--accent-red); }
.ours .col-list li .icon { color: var(--gold-main); }

/* ===== USE CASES ===== */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.use-case-card:hover {
    border-color: var(--gold-main);
    background: rgba(212, 175, 55, 0.05);
}

.use-case-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 15px 0 10px;
}

.use-case-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.use-case-domain {
    display: inline-block;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-main);
    border-radius: 4px;
    letter-spacing: 1px;
    margin-top: auto;
    align-self: center;
}

/* ===== INVESTMENT ===== */
.investment-wrapper {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(20,20,30,0.9) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 50px;
    margin: 60px 0;
}
.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.investment-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}
.investment-card:hover {
    transform: translateY(-5px);
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.3);
}
.investment-card h3 {
    font-size: 24px;
    margin: 20px 0 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== BONUS ===== */
.bonus-block {
    background: rgba(212,175,55,0.1);
    border-radius: 24px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.4);
}
.bonus-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}
.bonus-item {
    background: #00000055;
    padding: 15px 25px;
    border-radius: 60px;
    font-weight: bold;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}
.faq-item {
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 16px;
    border-left: 3px solid var(--gold-main);
}
.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--gold-light);
}

/* ===== CTA ===== */
.cta-section {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(180deg, rgba(20,20,25,0.8) 0%, rgba(5,5,7,1) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 16px 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-item:hover {
    border-color: var(--gold-main);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 50px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 14px;
    background: #000;
}

footer strong {
    color: var(--gold-main);
    font-weight: 600;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .use-cases-grid, .investment-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .investment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .comparison-table { grid-template-columns: 1fr; }
    .comparison-wrapper { padding: 30px 20px; }
    .price-tag { padding: 30px 40px; }
    .cta-section { padding: 60px 20px; }
    .advantages-grid { grid-template-columns: 1fr; }
    .use-cases-grid { grid-template-columns: 1fr; }
    .investment-wrapper { padding: 30px 20px; }
    .value-grid { grid-template-columns: 1fr; }
    .lang-bar { padding: 10px 12px; }
    .lang-switcher { width: 100%; justify-content: flex-start; }
    .lang-switcher a { font-size: 11px; padding: 5px 8px; }
    .hero { padding-top: 150px; }
}
@media (max-width: 500px) {
    .stats-row { grid-template-columns: 1fr; }
}