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

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

strong {
  color: var(--primary-orange);
  font-weight: 700;
}

.section-value-inner strong,
.section-how-inner strong,
.section-example-inner strong,
.section-faq-inner strong,
.hero-content strong,
.faq-question strong,
.unsure-section strong,
.section-cta-inner strong {
  color: var(--primary-orange);
  font-weight: 700;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  font-size: 0.92rem;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-login {
  background: var(--primary-orange);
  color: var(--white);
}

.btn-login:hover {
  background: #E08E00;
  transform: translateY(-1px);
}

.btn-signup {
  background: var(--primary-orange);
  color: var(--white);
}

.btn-signup:hover {
  background: #E08E00;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  border: 2px solid var(--primary-orange);
}

.btn-primary:disabled {
  background: #b0b0b0;
  border-color: #b0b0b0;
  color: #fff;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary:hover {
  background: #E08E00;
  border-color: #E08E00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 157, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent-bronze);
  border: 2px solid var(--accent-bronze);
}

.btn-outline:hover {
  background: var(--accent-bronze);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  margin-top: 10px;
}

.btn-logout {
  background: transparent;
  color: var(--text-medium);
  border: 2px solid var(--accent-tan);
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-logout:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

/* User menu */
.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

/* Field-level validation errors */
.field-error {
  display: block;
  color: #D32F2F;
  font-size: 0.8rem;
  margin-top: 5px;
}

.input-invalid {
  border-color: #D32F2F !important;
}

/* ============================
   TOAST NOTIFICATIONS
   ============================ */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(calc(100% + 32px));
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.toast.success {
  background: linear-gradient(135deg, #1a9e5c, #178750);
  border-left: 4px solid #12c96e;
}

.toast.error {
  background: linear-gradient(135deg, #d63031, #b71c1c);
  border-left: 4px solid #ff6b6b;
}

.toast::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast.success::before {
  content: '\f058';
}

.toast.error::before {
  content: '\f06a';
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-container {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-container h2 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
  color: #1a1a1a;
}

.modal-plan-name {
  font-size: 0.95rem;
  color: #F49D00;
  font-weight: 600;
  margin: 0 0 1rem;
}

.modal-body {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.modal-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.modal-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
