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

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('./images/hero-background.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #14a800;
  color: #fff;
  padding: 18px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0e8f00;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(20, 168, 0, 0.4);
}

.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-arrow svg {
  fill: #fff;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 150px 0;
  background: #f7fafc;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.step-arrow {
  position: absolute;
  top: 40px;
  right: -50px;
  width: 60px;
}

.step-item:last-child .step-arrow {
  display: none;
}

.step-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  padding: 150px 0;
  background: #fff;
}

.benefits-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 15px 0;
}

.benefit-icon svg {
  display: block;
}

.benefit-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

/* ===== DELIVERABLES ===== */
.deliverables {
  padding: 90px 0;
  background: #f7fafc;
}

.deliverables-box {
  max-width: 700px;
  margin: 0 auto;
  background: #f7f7f7;
  border: 2px solid #000;
  padding: 40px;
  margin-left: calc(50% - 350px - 2px);
}

.deliverables-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #000;
}

.deliverables-list {
  list-style: none;
}

.deliverables-list li {
  font-size: 16px;
  line-height: 40px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.deliverables-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 24px;
  line-height: 40px;
}

/* ===== FORM SECTION ===== */
.form-section {
  padding: 120px 0;
  background: #fff;
}

.profile-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input[type="email"],
.form-group input[type="url"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  color: #000;
  transition: border-color 0.2s;
}

.form-group input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-group input:focus {
  outline: none;
  border-color: #14a800;
}

.checkbox-group {
  margin-bottom: 30px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  background: #14a800;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.btn-submit:hover {
  background: #0e8f00;
}

.btn-submit:disabled {
  background: #9fccb0;
  cursor: not-allowed;
}

.btn-submit:disabled:hover {
  background: #9fccb0;
}

.btn-submit.loading {
  color: transparent;
}

.btn-submit .spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-submit.loading .spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ===== SUCCESS POPUP ===== */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-content {
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
}

.success-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: #000;
}

.success-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.btn-ok {
  background: #14a800;
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-ok:hover {
  background: #0e8f00;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 90px 0;
  background: #f7fafc;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #0d0d0d;
  margin-bottom: 1px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.faq-question span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #aaa;
  transition: color 0.2s;
}

.faq-question:hover span:first-child {
  color: #14a800;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon svg line {
  stroke: #14a800;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  padding: 40px 0;
  border-top: 1px solid #1a1a1a;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: #fff;
  font-size: 14px;
}

.footer-email {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer-email:hover {
  opacity: 0.7;
}

/* ===== PAGE LOAD ANIMATION ===== */
body.loading {
  opacity: 0;
}

body.loaded {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .step-arrow {
    display: none;
  }

  .how-it-works,
  .why-choose-us {
    padding: 80px 0;
  }

  .deliverables-box {
    margin-left: auto;
    margin-right: auto;
  }

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

  .faq-question span:first-child {
    font-size: 16px;
  }
}
