.policy,
.success {
  padding-block: 120px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 27px;
}

.success {
  display: flex;
  justify-content: center;
  align-items: center;
}

.policy__text h2 {
  text-align: left;
  font-size: 22px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 17px;
}

.policy__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-inline: 20px;
}

/* Global Styles */
:root {
  --primary-gradient: linear-gradient(135deg, #2d1b69 0%, #8b5a3c 100%);
  --secondary-gradient: linear-gradient(135deg, #1e0e47 0%, #ff6b35 100%);
  --accent-orange: #ff8c42;
  --dark-blue: #1a1033;
  --dark-purple: #2d1b69;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-gray: #cccccc;
  --border-radius: 12px;
  --border-radius-large: 20px;
  --container-max-width: 1200px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Unbounded", sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--primary-gradient);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  background: var(--white);
  color: #333;
  max-width: 600px;
  margin: 20px;
  padding: 30px;
  border-radius: var(--border-radius-large);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cookie-content h3 {
  color: var(--accent-orange);
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}

.cookie-content p {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #555;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
  min-width: 200px;
}

.cookie-btn.accept-all {
  background: var(--accent-orange);
  color: var(--white);
}

.cookie-btn.accept-all:hover {
  background: #e55722;
  transform: translateY(-2px);
}

.cookie-btn.manage {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.cookie-btn.manage:hover {
  background: var(--accent-orange);
  color: var(--white);
}

/* Header */
.header {
  background: rgba(26, 16, 51, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
main {
  margin-top: 80px;
}

/* Hero Section */
.hero {
  background: var(--primary-gradient);
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--accent-orange);
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: var(--text-gray);
  line-height: 1.7;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Mission Section */
.mission {
  background: var(--secondary-gradient);
  padding: 100px 0;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--accent-orange);
  line-height: 1.2;
}

.mission-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--white);
  padding: 15px 35px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: "Unbounded", sans-serif;
}

.cta-button:hover {
  background: #e55722;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.center-button {
  text-align: center;
  margin-top: 50px;
}

/* Bike Categories Section */
.bike-categories {
  background: var(--primary-gradient);
  padding: 100px 0;
}

.bike-categories h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--accent-orange);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.category-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-image {
  height: 250px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-content {
  padding: 30px 25px;
}

.category-content h3 {
  color: var(--accent-orange);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.category-content p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Statistics Section */
.statistics {
  background: var(--secondary-gradient);
  padding: 100px 0;
}

.statistics h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--accent-orange);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 40px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-large);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-orange);
  margin-bottom: 15px;
  line-height: 1;
}

.stat-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.stat-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Popular Models Section */
.popular-models {
  background: var(--primary-gradient);
  padding: 100px 0;
}

.popular-models h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--accent-orange);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.model-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.model-card.featured {
  background: var(--accent-orange);
  color: var(--white);
  transform: scale(1.05);
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.model-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.model-image {
  height: 250px;
  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.model-card:hover .model-image img {
  transform: scale(1.1);
}

.model-content {
  padding: 30px 25px;
}

.model-content h3 {
  color: var(--accent-orange);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.model-card.featured .model-content h3 {
  color: var(--white);
}

.model-content p {
  color: var(--text-gray);
  line-height: 1.6;
}

.model-card.featured .model-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Customer Reviews Section */
.customer-reviews {
  background: var(--secondary-gradient);
  padding: 100px 0;
}

.customer-reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--accent-orange);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-large);
  padding: 40px 30px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.review-stars {
  color: var(--accent-orange);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-card p {
  color: var(--text-gray);
  line-height: 1.7;
  font-style: italic;
}

/* Contact Form Section */
.contact-form {
  background: var(--primary-gradient);
  padding: 100px 0;
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--accent-orange);
  line-height: 1.2;
}

.form-text p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item div {
  color: var(--white);
  line-height: 1.6;
}

.form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-large);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-fields input,
.contact-form-fields textarea {
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form-fields input::placeholder,
.contact-form-fields textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-fields input:focus,
.contact-form-fields textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.submit-button {
  background: var(--accent-orange);
  color: var(--white);
  padding: 15px 35px;
  border: none;
  border-radius: var(--border-radius);
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover {
  background: #e55722;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

/* Footer */
.footer {
  background: var(--dark-blue);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: var(--accent-orange);
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .mission-content,
  .form-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .mission-text h2,
  .bike-categories h2,
  .statistics h2,
  .popular-models h2,
  .customer-reviews h2 {
    font-size: 2rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--dark-blue);
    transition: var(--transition);
    overflow-y: auto;
    justify-content: center;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding: 40px 20px;
    height: 100%;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    display: block;
    padding: 20px 0;
    font-size: 1.1rem;
  }

  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .mission,
  .bike-categories,
  .statistics,
  .popular-models,
  .customer-reviews,
  .contact-form {
    padding: 80px 0;
  }

  .categories-grid,
  .stats-grid,
  .models-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-content {
    margin: 10px;
    padding: 25px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .mission-text h2,
  .form-text h2 {
    font-size: 1.8rem;
  }

  .bike-categories h2,
  .statistics h2,
  .popular-models h2,
  .customer-reviews h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .form-container {
    padding: 25px;
  }

  .contact-form-fields input,
  .contact-form-fields textarea {
    padding: 12px 15px;
  }
}
