/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: #fff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
}

/* ===== HEADER ===== */
.header {
  background-color: #e8542e;
  padding: 16px 40px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-dot {
  color: #fff;
}

.header-tagline {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Avatar Overlay */
.avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 16px;
  pointer-events: all;
}

.avatar-overlay p {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 60px 40px;
  background: #fff;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Avatar Container */
.avatar-container {
  flex: 0 0 auto;
  width: 380px;
  height: 624px;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.avatar-note {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 8px;
}

/* Hero Text */
.hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-text h1 strong {
  font-weight: 900;
  color: #222;
}

.cta-text {
  font-size: 22px;
  font-weight: 700;
  color: #e8542e;
  font-style: italic;
  margin-bottom: 16px;
}

.free-text {
  font-size: 18px;
  color: #333;
}

.free-text strong {
  font-weight: 800;
}

.disclaimer-text {
  font-size: 13px;
  color: #666;
  margin-top: 12px;
  line-height: 1.5;
}

/* Start Button */
.btn-start {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e8542e;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-start:hover {
  background-color: #f0f0f0;
  transform: scale(1.03);
}

.btn-start:active {
  transform: scale(0.98);
}

.btn-start:disabled,
.btn-send-code:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Send Code Button */
.btn-send-code {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e8542e;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-send-code:hover {
  background-color: #f0f0f0;
  transform: scale(1.03);
}

.btn-send-code:active {
  transform: scale(0.98);
}

/* Feedback Messages */
.feedback-msg {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

.feedback-msg.success {
  color: #fff;
}

.feedback-msg.error {
  color: #ffdddd;
}

/* ===== REGISTRATION SECTION ===== */
.registration {
  background-color: #e8542e;
  padding: 50px 40px 60px;
  text-align: center;
}

.registration-content {
  max-width: 700px;
  margin: 0 auto;
}

/* Steps */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-input {
  width: 100%;
  max-width: 500px;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #333;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.step-input::placeholder {
  color: #999;
}

.step-input:focus {
  box-shadow: 0 0 0 3px rgba(232, 84, 46, 0.3);
}

.registration h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* Privacy Checkbox */
.privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #e8542e;
}

.privacy-check label {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.privacy-check label a {
  color: #fff;
  text-decoration: underline;
}

.privacy-check label a:hover {
  color: #ffffffcc;
}

/* Registration Form */
.registration-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.registration-form input {
  width: 100%;
  max-width: 500px;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: #fff;
  color: #333;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.registration-form input::placeholder {
  color: #999;
}

.registration-form input:focus {
  box-shadow: 0 0 0 3px rgba(232, 84, 46, 0.3);
}

/* ===== PRIVACY PAGE ===== */
.logo-link {
  text-decoration: none;
}

.privacy-page {
  padding: 50px 40px 60px;
  background: #fff;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-content h1 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}

.privacy-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.privacy-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 40px;
}

.privacy-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-top: 35px;
  margin-bottom: 12px;
}

.privacy-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}

.privacy-content ul {
  margin: 10px 0 16px 24px;
  font-size: 15px;
  color: #444;
}

.privacy-content ul li {
  margin-bottom: 6px;
}

.privacy-highlight {
  margin: 30px 0;
  padding: 24px 28px;
  background: #fff3f0;
  border-left: 5px solid #e8542e;
  border-radius: 6px;
}

.privacy-highlight h3 {
  color: #e8542e;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.privacy-highlight p,
.privacy-highlight ul {
  color: #333;
}

.privacy-consent-summary {
  margin: 35px 0;
  padding: 24px 28px;
  background: #f7f7f7;
  border-radius: 6px;
  border: 2px solid #ddd;
}

.privacy-consent-summary h3 {
  color: #333;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-back {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #e8542e;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-back:hover {
  background-color: #d14425;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #1a1a1a;
  padding: 20px 40px;
  text-align: center;
}

.footer p {
  color: #888;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }

  .logo {
    font-size: 22px;
  }

  .header-tagline {
    font-size: 11px;
  }

  .hero {
    padding: 30px 20px;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .avatar-container {
    width: 100%;
    max-width: 340px;
    height: 420px;
  }

  .hero-text {
    min-width: auto;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .cta-text {
    font-size: 18px;
  }

  .free-text {
    font-size: 15px;
  }

  .registration {
    padding: 30px 20px 40px;
  }

  .registration h2 {
    font-size: 18px;
  }

  .registration-form input {
    max-width: 100%;
  }
}
