
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --secondary: #00a8e1;
    --accent: #ffd700;
    --text: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #06162E 0%, #15F4EE 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

a:hover {
    text-decoration: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/></svg>');
    opacity: 0.1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    color: #fff;
}

.hero .subline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 20px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Situation Block */
.situation-block {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.situation-block h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 0px;
}

.situation-block p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 400;
}

/* Theme Cards */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.theme-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.theme-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.theme-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 500;
}

.theme-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Vehicle Cards */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vehicle-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vehicle-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.vehicle-content {
    padding: 25px;
}

.vehicle-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.spec-badge {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text);
}

.vehicle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 15px 0;
}

/* Booster Section */
.booster-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 80px auto;
    max-width: 1200px;
}

.booster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.booster-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--primary);
}

.booster-item span {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
    padding: 80px 20px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.contact-info {
    margin-bottom: 30px;
}

.advisor-card {
    text-align: center;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.advisor-avatar {
    width: 225px;
    height: 225px;
    border-radius: 50%;
    background: var(--gradient);
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.advisor-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.advisor-info p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    margin-top: 15px;
    text-align: center;
    flex-direction: column;
}

.contact-btn {
    padding: 10px 20px;
    background: var(--secondary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #0088bb;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .section {
        padding: 60px 0px;
    }

    .situation-block,
    .booster-section {
        padding: 40px 25px;
    }

    .theme-grid,
    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .advisor-card {
        flex-direction: column;
        text-align: center;
    }
    .situation-block h2 {
	    font-size: 2rem;
	}
	.booster-section {
	    margin: 20px auto;
	}
	.booster-item span {
	    font-size: 1rem;
	}
	.contact-card {
	    padding: 0px;
	}
	.contact-section {
	    padding: 80px 0px;
	}
}

/* Badge */
.guarantee-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

h1 > span {
	font-weight: 900;
	font-size: 1.125em;
	color: #fff;
}
.cta-group {
    margin-top: 3rem;
}

i {
    background: #15f4ee;
    color: #000;
    font-style: normal;
    padding: 5px 10px;
    transform: rotate(-2deg);
    display: inline-block;
    margin-left: 6px;
}

.uk-link, a {
    color: #15f4ee;
   
}

.uk-button-primary {
    background-color: #15f4ee;
    color: #000;
    border: 1px solid transparent;
}

.uk-button-primary {
    background-color: #15f4ee;
    color: #000;
    border: 1px solid transparent;
}

.theme-card.primary {
    background: #15f4ee;
}
.theme-card.secondary {
    background: #073145;
}

.theme-card.secondary h2{
    color: #fff;
    
}

.theme-card.guarantee-badge {
    margin-bottom: 10px;
}

.advisor-avatar img {
    border-radius: 50%;
    margin-top: -8px;
    margin-left: -40px;
    max-width: 100%;
    box-shadow: 1px 1px 3px #111;
}

.invisible
 {
    display: none;
}
label {
    display: block;
    margin-top: 10px;
}

input {
    width: 100%;
    height: 2rem;
    border-radius: 5px;
    padding: 10px;
    border-color: #f7f7f7;
    border-style: ridge;
}

section#formular {
    padding: 60px 15px;
}

button#ctrl_428 {
    margin-top: 26px;
}