@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --pink-primary: #E91E8C;
  --pink-light: #FCE4F3;
  --pink-soft: #FDF0F8;
  --pink-medium: #F48DC5;
  --gold: #C9A84C;
  --gold-light: #EDD98A;
  --gold-gradient: linear-gradient(135deg, #C9A84C, #EDD98A, #C9A84C);
  --white: #FFFFFF;
  --gray-light: #F8F8F8;
  --gray-medium: #999;
  --text-dark: #2D1B2E;
  --text-body: #4A3550;
  --shadow-pink: 0 8px 32px rgba(233, 30, 140, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', 'Noto Sans JP', serif;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray-medium);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 300;
}

.section-label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink-primary);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #E91E8C, #F472B6);
  color: white;
  box-shadow: 0 6px 24px rgba(233, 30, 140, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(233, 30, 140, 0.45);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.45);
}

.btn-line {
  background: #06C755;
  color: white;
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.35);
}

.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(6, 199, 85, 0.45);
}

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

.btn-outline:hover {
  background: var(--pink-primary);
  color: white;
}

.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 30, 140, 0.1);
  padding: 1rem 1.5rem;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.55rem;
  color: var(--gray-medium);
  letter-spacing: 0.2em;
  font-weight: 300;
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: inline-flex;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #FDF0F8 0%, #FFFFFF 50%, #FFF8E7 100%);
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(201, 168, 76, 0.1));
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--pink-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--pink-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-title-accent {
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.9;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-medium);
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-card-mockup {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-pink);
  max-width: 320px;
  width: 100%;
  position: relative;
}

.hero-card-mockup::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  z-index: -1;
  opacity: 0.3;
}

.mockup-label {
  font-size: 0.7rem;
  color: var(--pink-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.mockup-salary {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.mockup-salary-sub {
  font-size: 0.8rem;
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
}

.mockup-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mockup-bar-label {
  font-size: 0.75rem;
  color: var(--text-body);
  width: 60px;
  flex-shrink: 0;
}

.mockup-bar-track {
  flex: 1;
  height: 8px;
  background: var(--pink-light);
  border-radius: 50px;
  overflow: hidden;
}

.mockup-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #E91E8C, #F472B6);
}

.mockup-bar-fill.gold {
  background: linear-gradient(90deg, #C9A84C, #EDD98A);
}

.floating-badge {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-card);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.floating-badge-1 {
  top: -1rem;
  right: -1rem;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.floating-badge-2 {
  bottom: 1rem;
  left: -1.5rem;
  color: var(--pink-primary);
  border: 1px solid rgba(233, 30, 140, 0.2);
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-bg-pink {
  background: var(--pink-soft);
}

.section-bg-dark {
  background: linear-gradient(135deg, #2D1B2E, #4A1942);
  color: white;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(233, 30, 140, 0.05);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(201, 168, 76, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== JOB TYPE SECTION ===== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .jobs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .jobs-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.job-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}

.job-card:hover, .job-card.active {
  border-color: var(--pink-primary);
  background: var(--pink-soft);
  transform: translateY(-2px);
}

.job-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

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

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-item {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ===== VOICE / TESTIMONIAL ===== */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .voice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.voice-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.voice-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--pink-light);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.voice-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.voice-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.voice-name {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.voice-job {
  font-size: 0.75rem;
  color: var(--gray-medium);
}

.voice-salary {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--pink-primary);
  font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 480px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===== LINE SECTION ===== */
.line-section {
  background: linear-gradient(135deg, #04A541, #06C755);
  padding: 4rem 1.5rem;
  text-align: center;
}

.line-inner {
  max-width: 600px;
  margin: 0 auto;
}

.line-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.line-title {
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.line-desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.line-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  text-align: left;
  display: inline-flex;
}

.line-benefit {
  color: white;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--pink-medium);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ===== FORM PAGE ===== */
.form-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #FDF0F8 0%, #FFFFFF 60%, #FFF8E7 100%);
  padding: 7rem 1.5rem 4rem;
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.progress-bar {
  background: var(--pink-light);
  border-radius: 50px;
  height: 6px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #E91E8C, #C9A84C);
  border-radius: 50px;
  transition: width 0.5s ease;
}

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(233, 30, 140, 0.07);
  margin-bottom: 1.5rem;
}

.form-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-badge {
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  color: white;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-step-desc {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 500px) {
  .options-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.option-btn {
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.option-btn:hover, .option-btn.selected {
  border-color: var(--pink-primary);
  background: var(--pink-soft);
  color: var(--pink-primary);
}

.option-btn .option-icon {
  font-size: 1.75rem;
}

.option-btn .option-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.option-btn .option-sub {
  font-size: 0.72rem;
  color: var(--gray-medium);
  font-weight: 300;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #EEE;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: white;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--pink-primary);
}

.form-input-prefix {
  position: relative;
}

.form-input-prefix .prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--gray-medium);
  pointer-events: none;
}

.form-input-prefix .form-input {
  padding-left: 2.5rem;
}

.input-with-unit {
  position: relative;
}

.input-unit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--gray-medium);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.checkbox-item:hover, .checkbox-item.checked {
  background: var(--pink-soft);
  border-color: rgba(233, 30, 140, 0.3);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
}

.form-submit-area {
  text-align: center;
  padding-top: 1rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray-medium);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ===== RESULT PAGE ===== */
.result-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #FDF0F8 0%, #FFFFFF 60%, #FFF8E7 100%);
  padding: 7rem 1.5rem 4rem;
}

.result-container {
  max-width: 700px;
  margin: 0 auto;
}

.result-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.result-header-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.result-header-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.result-header-sub {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.result-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(233, 30, 140, 0.07);
}

.result-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink-primary);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.salary-display {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--pink-soft), #FFF8E7);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.salary-current {
  margin-bottom: 1.5rem;
}

.salary-label {
  font-size: 0.8rem;
  color: var(--gray-medium);
  margin-bottom: 0.25rem;
}

.salary-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.salary-unit {
  font-size: 1rem;
  font-weight: 300;
}

.salary-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  margin: 1rem 0;
}

.salary-potential {
  position: relative;
}

.salary-potential .salary-amount {
  font-size: 3.5rem;
}

.salary-up-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(201, 168, 76, 0.1));
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: var(--pink-primary);
  font-weight: 700;
  margin-top: 0.5rem;
}

.score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.score-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--gray-light);
  border-radius: var(--radius);
}

.score-label {
  font-size: 0.75rem;
  color: var(--gray-medium);
  margin-bottom: 0.5rem;
}

.score-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.score-bar {
  height: 6px;
  background: var(--pink-light);
  border-radius: 50px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #E91E8C, #C9A84C);
  border-radius: 50px;
}

.advice-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.advice-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--pink-primary);
}

.advice-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.advice-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

.action-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .action-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.action-card {
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.action-card-pink {
  background: linear-gradient(135deg, #FDF0F8, #FCE4F3);
  border: 2px solid rgba(233, 30, 140, 0.2);
}

.action-card-gold {
  background: linear-gradient(135deg, #FFFBF0, #FFF8E7);
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.action-card-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  display: block;
}

.action-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.action-card-desc {
  font-size: 0.8rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.action-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
}

.action-card-pink .action-card-btn {
  background: linear-gradient(135deg, #E91E8C, #F472B6);
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

.action-card-gold .action-card-btn {
  background: var(--gold-gradient);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.result-line-banner {
  background: linear-gradient(135deg, #04A541, #06C755);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: white;
  margin-bottom: 1.5rem;
}

.result-line-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.result-line-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.result-line-desc {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

/* ===== DIVIDER ===== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.gold-divider-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-q-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.8;
  border-top: 1px solid var(--pink-light);
  padding-top: 1rem;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.hidden { display: none !important; }

/* ===== LOADING ANIMATION ===== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(253, 240, 248, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loading-dots {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.loading-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E91E8C, #C9A84C);
  animation: loadingBounce 1.2s infinite;
}

.loading-dot:nth-child(2) { animation-delay: 0.2s; }
.loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingBounce {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1.2); opacity: 1; }
}

.loading-text {
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 300;
}

.loading-sub {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-top: 0.5rem;
}
