:root {
  --primary-color: #FB4141;
  --secondary-color: #EE4266;
  --accent-color: #5E1675;
  --light-color: #B6B09F;
  --dark-color: #000000;
  --gradient-primary: linear-gradient(135deg, #FB4141 0%, #EE4266 100%);
  --hover-color: #E73C3C;
  --background-color: #F2F2F2;
  --text-color: #2C3E50;
  --border-color: rgba(251, 65, 65, 0.2);
  --divider-color: rgba(238, 66, 102, 0.1);
  --shadow-color: rgba(251, 65, 65, 0.15);
  --highlight-color: #F1C40F;
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.65;
}

/* Neomorphic styles */
.neu-card {
  background: var(--background-color);
  border-radius: 28px;
  box-shadow:
    14px 14px 28px rgba(251, 65, 65, 0.08),
    -14px -14px 28px rgba(255, 255, 255, 0.9);
}

.neu-inset {
  background: var(--background-color);
  border-radius: 16px;
  box-shadow:
    inset 7px 7px 14px rgba(251, 65, 65, 0.08),
    inset -7px -7px 14px rgba(255, 255, 255, 0.9);
}

.neu-button {
  background: var(--background-color);
  border: none;
  border-radius: 16px;
  padding: 14px 28px;
  box-shadow:
    7px 7px 14px rgba(251, 65, 65, 0.08),
    -7px -7px 14px rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
}

.neu-button:hover {
  box-shadow:
    3px 3px 7px rgba(251, 65, 65, 0.08),
    -3px -3px 7px rgba(255, 255, 255, 0.9);
  transform: translateY(2px);
}

.neu-button:active {
  box-shadow:
    inset 2px 2px 5px rgba(251, 65, 65, 0.08),
    inset -2px -2px 5px rgba(255, 255, 255, 0.9);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(242, 242, 242, 0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1.3rem 0;
  box-shadow: 0 5px 15px rgba(251, 65, 65, 0.08);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo img {
  height: 44px;
  width: auto;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2.3rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 0;
}

.navigation a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.navigation a:hover::before {
  width: 100%;
  left: 0;
}

.navigation a:hover {
  color: var(--primary-color);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Main content */
main {
  margin-top: 88px;
}

.hero {
  position: relative;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 2.8rem;
}

.hero h1 {
  font-family: var(--main-font);
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.6rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(251, 65, 65, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: var(--highlight-color);
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(241, 196, 15, 0.4);
}

/* Sections */
section {
  padding: 5.2rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--main-font);
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 3.2rem;
  color: var(--primary-color);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Two column layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.2rem;
  align-items: center;
}

.column img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(251, 65, 65, 0.15);
}

.column h2 {
  margin-bottom: 2rem;
}

.column p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  color: var(--text-color);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2.8rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 1.6rem;
}

.feature-card h3 {
  font-family: var(--main-font);
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
}

/* CTA sections */
.cta-section {
  position: relative;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 7rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 65, 65, 0.8);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--main-font);
  font-size: 3.2rem;
  margin-bottom: 1.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.8rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.8rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.8rem;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.8rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.05rem;
}

/* Contact section */
.contact-section {
  background: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.2rem;
}

.contact-info h3 {
  font-family: var(--main-font);
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
  color: var(--primary-color);
  text-transform: uppercase;
}

.contact-info p {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-form {
  padding: 2.8rem;
}

.contact-form h3 {
  font-family: var(--main-font);
  font-size: 1.6rem;
  margin-bottom: 2.2rem;
  color: var(--primary-color);
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.1rem;
  border: none;
  border-radius: 16px;
  background: var(--background-color);
  color: var(--text-color);
  font-family: var(--alt-font);
  font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(44, 62, 80, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow:
    inset 3px 3px 6px rgba(251, 65, 65, 0.08),
    inset -3px -3px 6px rgba(255, 255, 255, 0.9),
    0 0 0 3px rgba(251, 65, 65, 0.2);
}

/* FAQ */
.faq-item {
  margin-bottom: 2.8rem;
  padding: 2.8rem;
}

.faq-item h3 {
  font-family: var(--main-font);
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 3.5rem 0 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background-color);
    box-shadow: 0 5px 15px rgba(251, 65, 65, 0.08);
    padding: 1.8rem 0;
  }

  .navigation.active {
    display: block;
  }

  .navigation ul {
    flex-direction: column;
    text-align: center;
    gap: 1.3rem;
  }

  .header-content {
    flex-direction: column;
    position: relative;
  }

  .logo {
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .footer-main {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}