/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #1E1E1E;
    background-color: #FFFFFF;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #F59E0B;
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #F59E0B;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #D97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #F59E0B;
    border: 2px solid #F59E0B;
}

.btn-secondary:hover {
    background-color: #F59E0B;
    color: #FFFFFF;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1E1E1E;
    color: #FFFFFF;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: all 0.3s ease;
    padding: 0px 0;
	height: 100px
}

.navbar {
    height: 100%;
    padding: 0;                
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo img {
    height: 100px;
    width: auto;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1E1E1E;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #F59E0B;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #1E1E1E;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFFFFF;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background-color: #F8F9FA;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1E1E1E;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.progress-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background-color: #F59E0B;
    transform: scale(1.2);
}

.timeline-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-container::-webkit-scrollbar {
    display: none;
}

.timeline-step {
    min-width: 100%;
    scroll-snap-align: start;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.timeline-step.active {
    opacity: 1;
}

.step-content {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.step-title {
    color: #1E1E1E;
    margin-bottom: 1rem;
}

.step-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.step-bullets {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.step-bullets li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.step-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: bold;
}

.timeline-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.timeline-nav-btn {
    background-color: #F59E0B;
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-nav-btn:hover {
    background-color: #D97706;
    transform: scale(1.1);
}

.timeline-nav-btn:disabled {
    background-color: #D9D9D9;
    cursor: not-allowed;
    transform: none;
}
/* Горизонтальный контейнер + снап */
.timeline-container{
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.timeline-step{
  flex: 0 0 100%;
  scroll-snap-align: start;
}

/* Точки прогресса */
.progress-indicator{
  display:flex;
  gap: 10px;
  justify-content:center;
  align-items:center;
  margin: 12px 0 24px;
}
.progress-dot{
  width: 12px; height: 12px; border-radius: 50%;
  background: #ddd; border: 2px solid #bbb; cursor: pointer;
}
.progress-dot.active{ background:#F59E0B; border-color:#F59E0B; }

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #1E1E1E;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #F59E0B;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #1E1E1E;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: #F59E0B;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #F59E0B;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #D9D9D9;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.service-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    color: #1E1E1E;
    margin-bottom: 1rem;
}

.service-text {
    color: #666;
    line-height: 1.6;
}

/* USP Strip */
.usp-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background-color: #1E1E1E;
    padding: 3rem;
    border-radius: 16px;
    color: #FFFFFF;
}

.usp-item {
    text-align: center;
}

.usp-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.usp-item h4 {
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

.usp-item p {
    color: #D9D9D9;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #F8F9FA;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #1E1E1E;
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #F59E0B;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-map {
    margin-top: 2rem;
}

.contact-map img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Contact Form */
.contact-form {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1E1E1E;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #D9D9D9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #F59E0B;
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.error-message {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Footer */
.footer {
    background-color: #1E1E1E;
    color: #FFFFFF;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #D9D9D9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #F59E0B;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
    color: #1E1E1E;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header Mobile */
    .nav {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        padding: 2rem;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 10px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero Mobile */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Timeline Mobile */
    .progress-indicator {
        gap: 10px;
    }

    .progress-dot {
        width: 12px;
        height: 12px;
    }

    .step-content {
        padding: 2rem;
    }

    .timeline-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 2rem;
    }

    .usp-strip {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 2rem;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .step-content {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .usp-strip {
        padding: 1.5rem;
    }

    /* Legal Pages Mobile */
    .legal-page {
        padding: 100px 0 40px;
    }

    .legal-content {
        padding: 2rem;
        margin: 0 15px;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }
}

/* === BRIGHTNESS BOOST OVERRIDES === */

.hero-background::after { background: rgba(30,30,30,0.35); }

.section-title,
.step-title { color: #0f172a; }             
.step-subtitle { color: #3a3a3a; }           
.step-bullets li { color: #1f2937; }          

.step-content{
  background:#ffffff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.timeline-step { opacity: 0.95; }             
.timeline-step.active { opacity: 1; transform: translateY(-2px); }

.progress-dot { width: 14px; height: 14px; background:#e5e7eb; border:2px solid #cbd5e1; }
.progress-dot.active{
  background:#F59E0B; border-color:#F59E0B;
  box-shadow: 0 0 0 6px rgba(245,158,11,0.18);
  transform: scale(1.15);
}

.btn-primary{
  background: linear-gradient(135deg,#ff9800,#F59E0B);
  box-shadow: 0 10px 24px rgba(245,158,11,0.45);
}
.btn-primary:hover{ background:#ea8a00; transform: translateY(-2px) scale(1.02); }

.btn-secondary{
  color:#F59E0B; border-color:#F59E0B; background: #fff;
}
.btn-secondary:hover{ background:#F59E0B; color:#fff; }

.timeline-section{ background: linear-gradient(180deg,#ffffff 0%, #f6f7f9 100%); }

.service-card{
  background:#fff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.service-title{ color:#0f172a; }
.service-text{ color:#374151; }

.nav-link:hover{ color:#ea8a00; }

.usp-item p{ color:#e5e7eb; }
