@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* VIP Luxury Colors */
    --bg-page: #08080A;
    --bg-card: #121316;
    --bg-glass: rgba(18, 19, 22, 0.7);
    --bg-input: #1A1C20;
    
    --text-primary: #F4F5F6;
    --text-secondary: #9CA3AF;
    --text-dark: #1F2937;
    
    --accent-gold: #D4AF37;
    --accent-gold-light: #FFDF73;
    --accent-gold-dark: #997A00;
    --accent-gradient: linear-gradient(135deg, #FFDF73 0%, #D4AF37 50%, #997A00 100%);
    
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-light: rgba(255, 255, 255, 0.05);

    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.6);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Reset & Basics */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, figure { margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-page);
    background-image: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Enhancements */
.gold-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header__logo svg {
    width: 32px;
    height: 32px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__phone a {
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
}
.header__phone a:hover {
    color: var(--accent-gold);
}

.btn-outline-gold {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

/* Button Component */
.btn-gold {
    display: inline-block;
    padding: 15px 36px;
    background: var(--accent-gradient);
    color: var(--text-dark);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    text-align: center;
    width: 100%;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hero Section (Centered VIP Style) */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.hero__title {
    font-size: 56px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* VIP Form Widget */
.widget-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-dark), inset 0 0 20px rgba(212, 175, 55, 0.05);
    position: relative;
    text-align: left;
}

/* Form Styles */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.form-step.active {
    display: block;
}

.widget__header {
    text-align: center;
    margin-bottom: 30px;
}
.widget__header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.input-group input:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.input-group input::placeholder {
    color: #555;
}

.input-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

/* Sliders */
.slider-container { margin-bottom: 30px; }
.slider-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
.slider-label { color: var(--text-secondary); font-size: 14px; }
.slider-value { color: var(--accent-gold); font-weight: 600; font-size: 18px; }

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px; width: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%; height: 4px;
    cursor: pointer;
    background: var(--bg-input);
    border-radius: 2px;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    margin-top: 15px;
}
.checkbox-group input[type="checkbox"] {
    appearance: none;
    min-width: 20px; width: 20px; height: 20px;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    background: var(--bg-input);
    cursor: pointer;
    position: relative;
    margin-top: 2px;
}
.checkbox-group input[type="checkbox"]:checked {
    background: var(--accent-gold);
}
.checkbox-group input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: bold;
    left: 4px; top: -1px;
}
.checkbox-group label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    max-width: 90%;
}
.checkbox-group a {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Loader */
#preloader {
    display: none;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 19, 22, 0.9);
    border-radius: var(--border-radius-lg);
    z-index: 10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Notification */
.notification {
    position: fixed;
    top: 20px; right: 20px;
    background: var(--bg-card);
    border-left: 4px solid #ef4444;
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: var(--shadow-dark);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}
.notification.show { transform: translateX(0); }

/* Dadata Suggestions Override (Dark Theme) */
.suggestions-wrapper {
    position: relative;
}
.suggestions-suggestions {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: 8px !important;
    box-shadow: var(--shadow-dark) !important;
    margin-top: 4px !important;
    overflow: hidden;
}
.suggestions-suggestion {
    color: var(--text-primary) !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    border-bottom: 1px solid var(--border-light) !important;
    cursor: pointer;
    background: transparent !important;
}
.suggestions-suggestion:last-child {
    border-bottom: none !important;
}
.suggestions-suggestion.suggestions-selected,
.suggestions-suggestion:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    color: var(--accent-gold-light) !important;
}
.suggestions-hint {
    color: var(--text-secondary) !important;
    font-size: 12px !important;
    padding: 8px 15px !important;
    border-bottom: 1px solid var(--border-light) !important;
    background: rgba(0, 0, 0, 0.3) !important;
}
.suggestions-subtext {
    color: var(--text-secondary) !important;
}
.suggestions-subtext_inline {
    color: var(--text-secondary) !important;
}
.suggestions-subtext-delimiter {
    color: var(--text-secondary) !important;
}

/* Features (VIP Cards) */
.features {
    padding: 100px 0;
    position: relative;
}
.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.vip-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vip-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: 0.4s ease;
}

.vip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(212, 175, 55, 0.05);
}
.vip-card:hover::before { opacity: 1; }

.vip-card__icon {
    width: 60px; height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: var(--accent-gold);
    font-size: 24px;
}

.vip-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.vip-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Process Timeline (Vertical) */
.process {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-page) 0%, #0d0e12 100%);
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 19px;
    width: 2px;
    background: var(--border-light);
}

.timeline-step {
    position: relative;
    margin-bottom: 50px;
}
.timeline-step:last-child { margin-bottom: 0; }

.timeline-step::before {
    content: '';
    position: absolute;
    left: -48px; top: 5px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--bg-page);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-step h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #050506;
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 13px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__company {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.footer__info p {
    margin-bottom: 8px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a:hover {
    color: var(--accent-gold);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 12px;
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero__title { font-size: 36px; }
    .vip-cards { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .header__right { display: none; } /* Hide button on mobile to save space */
}
