:root{
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-dark: #6d28d9;
  --bg-dark: #0d0620;
  --bg-dark2: #150a2e;
  --bg-light: #f2f1f6;
  --card-dark: #1b1035;
  --card-border: #3a2a5c;
  --text-light: #e9e6f5;
  --text-muted: #b9b0d6;
  --text-dark: #1a1330;
  --text-dark-muted: #5c5473;
}

body{
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

a{ text-decoration:none; }

/* ===== HERO (dark section) ===== */
.hero{
  position: relative;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, #2a1257 0%, var(--bg-dark) 55%, var(--bg-dark) 100%);
  color: var(--text-light);
  padding: 64px 6vw 160px;
  overflow: hidden;
  text-align: center;
}
.hero::before,
.hero::after{
  content:'';
  position:absolute;
  border-radius:50%;
  filter: blur(110px);
  pointer-events:none;
  z-index:0;
}
.hero::before{
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(139,92,246,0.35), transparent 70%);
  top: -160px; left: 50%;
  transform: translateX(-50%);
}
.hero::after{
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(167,139,250,0.2), transparent 70%);
  bottom: -140px; right: 8%;
}

.hero-grid{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-copy{
  display:flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(167,139,250,0.35);
  color: var(--purple-light);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1{
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 24px;
  font-weight: 800;
}
.hero h1 .accent{
  display:block;
  background: linear-gradient(90deg, var(--purple-light), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p{
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 18px;
  text-align: left;
}

.hero-cta{
  align-self: center;
}

.notice-box{
  margin-top: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 24px;
  display:flex;
  gap: 16px;
  max-width: 560px;
  text-align: left;
}
.notice-box svg{ flex-shrink:0; margin-top:2px; }
.notice-box h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.notice-box p{
  margin:0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ===== STEPS SECTION ===== */
.steps-wrap{
  padding: 0 6vw 50px;
}
.steps-card{
  position: relative;
  top: -140px;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto -140px;
  background: linear-gradient(180deg, #1b1035, #170c2e);
  border-radius: 20px;
  padding: 44px 30px 40px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(20,10,50,0.25);
}
.steps-card h2{
  text-align:center;
  font-size: 26px;
  margin: 0 0 40px;
  font-weight: 800;
}
.steps-row{
  display:flex;
  align-items: flex-start;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
}
.step{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  flex: 1 1 180px;
  min-width: 160px;
  max-width: 220px;
}
.step-badge{
  width: 30px; height:30px;
  border-radius:50%;
  background: var(--purple);
  color:#fff;
  font-weight:700;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
}
.step-icon{
  width:64px; height:64px;
  border-radius: 16px;
  background: rgba(139,92,246,0.12);
  border: 1.5px solid rgba(167,139,250,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.step h4{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}
.step p{
  margin:0;
  font-size: 13px;
  line-height:1.6;
  color: var(--text-muted);
}
.step-arrow{
  align-self: center;
  color: var(--purple-light);
  opacity:0.6;
  margin-top: 40px;
}

/* ===== PHOTO GUIDE SECTION ===== */
.guide-section{
  padding: 20px 6vw 40px;
  text-align:center;
}
.guide-section h2{
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 40px;
}
.guide-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 0;
  max-width: 1100px;
  margin: 0 auto;
}
.guide-item{
  padding: 0 18px;
  position: relative;
}
.guide-item::after{
  content:'';
  position:absolute;
  top:0; right:-1px; bottom:0;
  width:1px;
  background:#d8d5e6;
}
.guide-item:nth-child(3n)::after{ display:none; }
.guide-icon{
  width: 88px; height: 88px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: #efe9ff;
  display:flex;
  align-items:center;
  justify-content:center;
}
.guide-item h4{
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text-dark);
}
.guide-item p{
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin:0;
}

/* ===== INFO STRIP ===== */
.info-strip{
  max-width: 1000px;
  margin: 30px auto 40px;
  background: #eee7fb;
  border-radius: 14px;
  padding: 18px 26px;
  display:flex;
  align-items:center;
  gap: 14px;
  color: #4c3d80;
  font-size: 14px;
}
.info-strip svg{ flex-shrink:0; }

/* ===== CTA FOOTER ===== */
.cta-wrap{
  padding: 0 6vw 60px;
}
.cta-box{
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(100deg, #1b1035, #241246 60%, #2c1250);
  border-radius: 20px;
  padding: 34px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-left{
  display:flex;
  align-items:center;
  gap: 22px;
}
.cta-icon{
  width: 60px; height:60px;
  border-radius: 16px;
  border: 1.5px solid var(--purple-light);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.cta-left h3{
  margin:0 0 8px;
  font-size: 19px;
  font-weight:700;
}
.cta-left p{
  margin:0;
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 420px;
  line-height:1.6;
}
.cta-btn{
  background: #52267D;
  color:#fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 10px;
  white-space: nowrap;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition: background 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.cta-btn:hover{
  background: #3f1d63;
  transform: translateY(-1px);
}
.hero-cta{
  margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .hero h1{ font-size: 34px; }
  .steps-row{ gap: 24px 30px; }
  .step-arrow{ display:none; }
  .step{ flex-basis: 30%; }
}

@media (max-width: 640px){
  .hero{ padding: 24px 5vw 130px; }
  .hero h1{ font-size: 30px; }
  .notice-box{ flex-direction:column; padding: 18px 20px; }
  .guide-grid{ grid-template-columns: repeat(2, 1fr); }
  .guide-item:nth-child(3n)::after{ display:block; }
  .guide-item:nth-child(2n)::after{ display:none; }
  .steps-card{ padding: 34px 18px 30px; top: -110px; margin-bottom: -110px; }
  .step{ flex-basis: 100%; max-width: 280px; }
  .cta-box{ flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .cta-left{ flex-direction:column; align-items:flex-start; gap:14px; }
  .cta-btn{ width:100%; justify-content:center; }
  .hero-cta{ margin-top: 20px; }
  .info-strip{ margin: 24px 5vw; align-items:flex-start; }
  .guide-section{ padding: 10px 5vw 30px; }
  .cta-wrap{ padding: 0 5vw 40px; }
  .steps-wrap{ padding: 0 5vw 40px; }
}

@media (max-width: 400px){
  .hero h1{ font-size: 26px; }
  .hero{ padding-bottom: 110px; }
  .steps-card{ top: -90px; margin-bottom: -90px; padding: 28px 16px 26px; }
  .steps-card h2{ font-size: 22px; }
}
