@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-VariableFont_wght.otf");
  font-display: swap;
}
:root {
  --primary-bright: #ff6b35;
  --secondary-bright: #ffb347;
  --accent-pink: #ff4d6d;
  --dark-bg: #1e1e2f;
  --card-bg: rgba(30, 30, 47, 0.7);
  --text-light: #ffffff;
  --text-muted: #f0e6d0;
  --gradient-hero: linear-gradient(135deg, #ff6b35, #ff4d6d);
  --gradient-bg: radial-gradient(circle at 10% 20%, #2a1b3d, #1a0b2e);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gradient-bg);
  color: var(--text-light);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  background: rgba(30, 30, 47, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--secondary-bright);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  flex-wrap: wrap;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 700;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-line1, .logo-line2 {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.logo-line1 {
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-line2 {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--secondary-bright);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1rem;
}

.nav-menu a:hover {
  color: var(--primary-bright);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  transition: 0.2s;
}

.header-notice {
  font-size: 0.75rem;
  background: rgba(255, 107, 53, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 40px;
  color: var(--secondary-bright);
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.hero {
  padding: 4rem 0 5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff, var(--secondary-bright));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-subheadline {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}
.text-accent {
  color: var(--secondary-bright);
  font-weight: 700;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 30px rgba(0,0,0,0.3);
}
select option {
  background-color: #2a1b3d !important;
}

.steps-section {
  padding: 4rem 0;
}
.steps-section h2, .testimonials-section h2, .brands-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-bright);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-card {
  background: var(--card-bg);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 53, 0.4);
  transition: transform 0.2s;
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-bright);
}
.step-icon {
  font-size: 3rem;
  color: var(--primary-bright);
  margin-bottom: 1rem;
}
.step-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255, 107, 53, 0.5);
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 1rem;
}

.testimonials-section {
  padding: 4rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary-bright);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-bright);
}
.testimonial-card p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.testimonial-name {
  font-weight: 700;
  color: var(--text-muted);
}

.brands-section {
  padding: 4rem 0;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}
.brand-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.5rem;
  color: var(--secondary-bright);
  background: rgba(255,255,255,0.03);
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
  transition: all 0.2s;
}
.brand-icon span {
  font-size: 0.8rem;
  font-weight: 500;
}
.brand-icon:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: scale(1.05);
}

.cta-section {
  padding: 4rem 0;
  text-align: center;
}
.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.footer {
  background: #0e0e1a;
  border-top: 2px solid var(--secondary-bright);
  margin-top: auto;
  font-size: 0.9rem;
  padding: 2rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: start;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-logo img {
  width: 50px;
  height: 50px;
}
.footer-logo-text {
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-contact p {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.footer-disclaimer p {
  font-size: 0.8rem;
  color: #b0a8c0;
  line-height: 1.5;
}
.footer-copyright {
  text-align: center;
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .steps-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .header-container {
    flex-wrap: wrap;
  }
  .nav {
    order: 3;
    width: 100%;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #2a1b3d;
    padding: 1rem;
    border-radius: 1rem;
    gap: 1rem;
  }
  .nav-menu.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .header-notice {
    order: 2;
    white-space: normal;
    font-size: 0.7rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .btn-large {
    padding: 0.8rem 1.8rem;
  }
  .footer-grid {
    gap: 1.5rem;
  }
}
.footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #12122b 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
    font-family: 'Open Sans', sans-serif;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  /* Логотип: иконка + текст в строку */
  .footer-brand {
    display: flex;
    align-items: center;
  }
  .footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }
  .footer-logo-link img {
    border-radius: 12px;
    flex-shrink: 0;
  }
  .footer-brand-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
  }
  .brand-white {
    color: #ffffff;
  }
  .brand-accent {
    color: #ffb347;
  }
  .footer-contact h4, .footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffb347;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }
  .footer-contact address {
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ccddee;
  }
  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ccddee;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffb347;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    color: #99aacc;
    line-height: 1.5;
    border-left: 2px solid rgba(255, 107, 53, 0.5);
    padding-left: 1rem;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #8899bb;
  }
  @media (max-width: 768px) {
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-disclaimer {
      border-left: none;
      padding-left: 0;
    }
    .footer-brand-text {
      font-size: 1rem;
    }
  }
