:root {
    --sg-orange: #e67e22; 
    --sg-orange-dark: #cc6a1a;
    --text-light: #ffffff;
    --text-muted: #f1f5f9; 
    --bg-dark: #0f172a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

a { 
    text-decoration: none !important; 
    color: inherit; 
    outline: none; 
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    padding: 20px 0;
}

.background-image {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.97) 100%);
    z-index: -1;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    padding: 60px 40px;
    max-width: 1150px; 
    width: 95%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.main-header { margin-bottom: 60px; }

.main-logo {
    max-width: 100%; 
    width: 480px; 
    height: auto;
    margin-bottom: 50px;
    border-radius: 12px; 
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.title-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px; 
    margin-bottom: 15px;
}

.text-group { text-align: left; }

.prime-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1;
}

.badge {
    display: inline-block;
    background: var(--sg-orange);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-top: 15px;
    text-transform: uppercase;
    color: white;
}

.subtitle {
    font-size: 1.4rem; 
    color: var(--text-muted);
    margin-top: 35px;
}

.price-badge {
    width: 175px; height: 175px;
    background-color: var(--sg-orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0 15px 45px rgba(230, 126, 34, 0.6);
    animation: pulse 2s infinite;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.4); 
    color: white;
}

.price-badge .label { font-size: 1.1rem; text-transform: uppercase; }
.price-badge .amount { font-size: 2.1rem; font-weight: 800; }

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7); }
    70% { transform: scale(1.04); box-shadow: 0 0 0 18px rgba(230, 126, 34, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin: 55px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.icon { color: var(--sg-orange); width: 55px; height: 55px; margin: 0 auto 25px; }

.feature-item h3 { margin-bottom: 15px; font-size: 1.4rem; font-weight: 700; }
.feature-item p { font-size: 1.1rem; line-height: 1.7; color: var(--text-muted); }

.info-tags {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 25px; margin-bottom: 55px;
    font-size: 1.1rem; 
    color: var(--sg-orange); 
    font-weight: 700;
}

.cta-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px; 
}

.phone-lead { font-size: 1.4rem; font-weight: 600; color: var(--text-muted); }

.phone-link {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--sg-orange) !important;
}

.cta-button {
    display: inline-block; 
    padding: 24px 60px;
    background: var(--sg-orange);
    color: white !important;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 12px;
    font-size: 1.2rem;
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.5);
}

footer { margin-top: 80px; font-size: 1rem; }
.legal-links { margin-bottom: 20px; }
.legal-links a { color: white !important; margin: 0 15px; opacity: 0.7; }
.legal-links a:hover { opacity: 1; text-decoration: underline !important; }
.footer-note { font-size: 0.95rem; color: var(--text-muted); opacity: 0.8; }

@media (max-width: 768px) {
    .title-price-container { flex-direction: column; gap: 30px; }
    .text-group { text-align: center; }
    .price-badge { width: 165px; height: 165px; }
    .phone-link { font-size: 1.8rem; }
    .cta-button { width: 100%; padding: 20px; font-size: 1.1rem; }
    .cta-container { gap: 25px; }
}