/* ============================================ */
/* MAIN SECTIONS - Hero, Problem, How It Works */
/* ============================================ */

/* Profile Selector */
.profile-selector {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: var(--white);
}

.profile-selector-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.profile-selector h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: var(--spacing-16);
  letter-spacing: -1px;
  line-height: 1.1;
}

.profile-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 60px;
}

.profile-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.profile-card {
  background: var(--white);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-card);
  padding: var(--spacing-48) var(--spacing-32);
  text-align: center;
  transition: all 220ms ease;
  cursor: pointer;
}

.profile-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.profile-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.profile-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.profile-card p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 32px;
}

.profile-card .btn {
  width: 100%;
}

.profile-selector.fade-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-24);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: var(--spacing-24);
  line-height: 1.5;
}

.hero-bullets {
  list-style: none;
  margin-bottom: var(--spacing-32);
}

.hero-bullets li {
  font-size: 16px;
  color: var(--black);
  margin-bottom: var(--spacing-16);
  padding-left: var(--spacing-24);
  position: relative;
  line-height: 1.5;
}

.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: var(--black);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 30px;
  padding: 60px 20px 20px;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background: var(--black);
  border-radius: 0 0 20px 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-card:first-child {
  margin-top: 20px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.product-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
}

.product-discount {
  background: #FEE2E2;
  color: #DC2626;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.product-location {
  font-size: 9px;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-current {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
}

.price-original {
  font-size: 10px;
  color: var(--gray-text);
  text-decoration: line-through;
}

.commerce-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.stat-mini {
  background: #F0FDF4;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.stat-mini-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}

.stat-mini-label {
  font-size: 9px;
  color: var(--gray-text);
}

/* Problem Section */
.problem {
  background: var(--gray-bg);
  padding: 100px 40px;
}

.section-content {
  max-width: var(--text-width);
  margin: 0 auto;
  text-align: center;
}

.section-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-16);
  letter-spacing: -0.5px;
}

.section-content p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-text);
}

.problem-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.icon-item {
  text-align: center;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.icon-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

/* How It Works */
.how-works {
  padding: 100px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-works h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

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

.step-number {
  font-size: 120px;
  font-weight: 800;
  color: #F3F4F6;
  line-height: 1;
  margin-bottom: -40px;
  position: relative;
  z-index: 0;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Savings Block */
.savings {
  background: linear-gradient(135deg, var(--green) 0%, #22A565 100%);
  padding: 80px 40px;
  color: var(--white);
}

.savings-content {
  max-width: var(--text-width);
  margin: 0 auto;
  text-align: center;
}

.savings h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

.savings-example {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
}

.savings-calc {
  font-size: 18px;
  margin-bottom: 12px;
}

.savings-result {
  font-size: 36px;
  font-weight: 800;
}

/* Emotional Section */
.emotional {
  padding: 120px 40px;
  background: var(--white);
}

.emotional-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.emotional h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.emotional-lines {
  margin-top: 40px;
}

.emotional-line {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-text);
  margin: 8px 0;
}

.emotional-line:last-child {
  color: var(--green);
}

/* Form Section */
.form-section {
  padding: 100px 40px;
  background: var(--gray-bg);
}

.form-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--spacing-64);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.5px;
}

.form-subtitle {
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 40px;
  font-size: 16px;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 14px var(--spacing-16);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-input);
  font-size: 16px;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: 2px solid rgba(43, 182, 115, 0.35);
  outline-offset: 2px;
  border-color: var(--green);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.radio-label {
  display: flex;
  align-items: center;
  padding: 14px var(--spacing-16);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-input);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.radio-label:hover {
  border-color: var(--green);
  background: #F0FDF4;
}

.radio-label:focus-within {
  outline: 2px solid rgba(43, 182, 115, 0.35);
  outline-offset: 2px;
}

.radio-label input {
  margin-right: 12px;
  cursor: pointer;
  accent-color: var(--green);
}

.form-card .btn {
  width: 100%;
  margin-top: 16px;
}

.launch-info {
  text-align: center;
  color: var(--gray-text);
  font-size: 13px;
  margin-top: 24px;
}

select {
  width: 100%;
  padding: 14px var(--spacing-16);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-input);
  font-size: 16px;
  font-family: inherit;
  transition: border-color var(--transition-fast);
  background: var(--white);
  cursor: pointer;
}

select:focus {
  outline: 2px solid rgba(43, 182, 115, 0.35);
  outline-offset: 2px;
  border-color: var(--green);
}

.form-success {
  display: none;
  background: #F0FDF4;
  border: 2px solid var(--green);
  color: var(--black);
  padding: var(--spacing-16);
  border-radius: var(--radius-input);
  margin-top: var(--spacing-24);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  animation: fadeIn 0.3s ease-out;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  background: #FEE2E2;
  border: 2px solid #DC2626;
  color: #DC2626;
  padding: var(--spacing-16);
  border-radius: var(--radius-input);
  margin-top: var(--spacing-24);
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  animation: fadeIn 0.3s ease-out;
}

.form-error.show {
  display: block;
}

/* Founder Block */
.founder {
  background: var(--black);
  color: var(--white);
  padding: 100px 40px;
}

.founder-box {
  max-width: 600px;
  margin: 0 auto;
  border: 3px solid var(--green);
  border-radius: 20px;
  padding: 60px;
  text-align: center;
}

.founder h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.founder-subtitle {
  color: #9CA3AF;
  margin-bottom: 40px;
  font-size: 16px;
}

.price-box {
  margin: 40px 0;
}

.price {
  font-size: 56px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}

.price-discount {
  color: #9CA3AF;
  font-size: 14px;
}

.founder-includes {
  text-align: left;
  margin: 40px 0;
}

.founder-includes p {
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 15px;
}

.include-item::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  font-size: 20px;
}