:root {
  --primary:   #3E54D3;
  --primary-2: #4F80E2;
  --turquoise: #15CDCA;
  --mint:      #4FE0B6;
  --text:      #2E2E38;
  --muted:     #68708A;
  --line:      #e6eaf3;
  --soft:      #f5f8ff;
  --white:     #fff;
  --shadow:    0 24px 70px rgba(20,49,120,.14);
  --radius:    18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(62,84,211,.08), transparent 34%),
    #fff;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block}
a{text-decoration:none; color:inherit}
button{font:inherit}
.container{width:min(1180px, calc(100% - 40px)); margin-inline:auto}

.topbar{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand img{width:142px; height:auto}
.login{
  border:1px solid #dfe4ee;
  background:#fff;
  padding:12px 18px;
  border-radius:10px;
  font-weight:700;
  box-shadow:0 4px 16px rgba(25,40,90,.04);
}

.hero{text-align:center; padding:18px 0 10px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:15px;
  border-radius:999px;
  padding:9px 16px;
  background:rgba(62,84,211,.08);
  color:var(--primary);
  font-weight:700;
  letter-spacing:.035em;
  font-size:.95rem;
  text-transform:uppercase;
}
.eyebrow::before{
  content:"✓";
  display:grid;
  place-items:center;
  width:20px;
  height:20px;
  border-radius:50%;
  color:#fff;
  background:var(--primary);
  font-size:12px;
}
h1{
  margin:0 auto;
  max-width:900px;
  font-size:clamp(2.45rem, 6vw, 4.55rem);
  line-height:.98;
  letter-spacing:-.045em;
  font-weight:700;
}
.hero-sub{
  margin:17px auto 25px;
  color:var(--muted);
  font-size:clamp(1.06rem, 2vw, 1.33rem);
}

.demo{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  background:#111;
  box-shadow:var(--shadow);
  aspect-ratio:2.9/1;
}
.demo > img{width:100%; height:100%; object-fit:cover}
.demo::after{
  content:"";
  position:absolute; inset:auto 0 0;
  height:34%;
  background:linear-gradient(transparent, rgba(0,0,0,.75));
  pointer-events:none;
}
.play{
  position:absolute;
  inset:50% auto auto 50%;
  z-index:2;
  width:82px;
  height:82px;
  translate:-50% -50%;
  border:0;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 14px 35px rgba(62,84,211,.42);
  transition:.2s ease;
}
.play:hover{transform:scale(1.05)}
.play span{
  width:0;height:0;
  border-top:13px solid transparent;
  border-bottom:13px solid transparent;
  border-left:21px solid #fff;
  margin-left:5px;
}

.demo-label{
  position:absolute; z-index:2; top:15px;
  padding:7px 10px;
  border-radius:8px;
  color:#fff;
  background:rgba(0,0,0,.58);
  font-size:.76rem;
  font-weight:700;
}
.demo-label.left{left:15px}
.demo-label.right{right:15px}
.demo-label.center{
  top:50%;
  left:50%;
  right:auto;
  translate:-50% -50%;
}

.controls{
  position:absolute; z-index:2; bottom:15px; left:18px; right:18px;
  display:flex; align-items:center; gap:14px; color:#fff;
  font-size:.9rem;
}
.bar{height:5px; border-radius:99px; background:rgba(255,255,255,.35); flex:1; overflow:hidden}
.bar::before{content:""; display:block; width:20%; height:100%; background:var(--primary)}

.primary{
  margin-top:22px;
  width:100%;
  min-height:66px;
  border:0;
  border-radius:10px;
  color:#fff;
  font-size:clamp(1.15rem,2vw,1.48rem);
  font-weight:700;
  cursor:pointer;
  background:linear-gradient(100deg, var(--primary), var(--primary-2) 52%, var(--turquoise));
  box-shadow:0 15px 35px rgba(62,84,211,.2);
}
.price-note{
  margin:12px 0 0;
  color:#6d748d;
  font-size:1rem;
}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  margin:28px 0 24px;
}
.feature{
  display:grid;
  grid-template-columns:66px 1fr;
  gap:15px;
  padding:10px 22px;
  text-align:left;
  border-right:1px solid var(--line);
}
.feature:first-child{padding-left:0}
.feature:last-child{border-right:0; padding-right:0}
.feature img{width:60px; height:60px}
.feature h3{font-size:1rem; line-height:1.35; margin:3px 0 11px; font-weight:600}
.feature p{font-size:.88rem; line-height:1.55; color:#626b81; margin:0}

.how{
  margin-top:12px;
  padding:18px 24px 22px;
  border-radius:20px;
  background:linear-gradient(135deg, var(--primary), var(--turquoise) 60%, var(--mint));
}
.section-title{
  margin:0 0 14px;
  text-align:center;
  font-size:1.85rem;
  line-height:1.1;
}
.how .section-title{color:#fff}
.steps{
  display:grid;
  grid-template-columns:1fr 38px 1fr 38px 1.15fr;
  align-items:center;
  gap:10px;
}
.step{
  height:245px;
  overflow:hidden;
  padding:17px;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,92,104,.08);
}
.step-head{display:flex; gap:9px; align-items:center; font-weight:600; margin-bottom:12px}
.step-no{
  width:27px;height:27px;border-radius:50%;
  display:grid;place-items:center;
  color:#fff;background:var(--primary);font-size:.85rem;
}
.photo-stage,
.audio-card,
.result-stage{
  height:175px;
  border-radius:12px;
  overflow:hidden;
  background:#f7f9ff;
  display:block;
  padding:0;
  box-shadow:none;
}
.photo-stage img,
.audio-card img,
.result-stage img{
  width:100%;
  height:100%;
  object-fit:contain;
  border:0;
  border-radius:12px;
  box-shadow:none;
  transform:none;
}
.arrow{text-align:center; color:#fff; font-size:2rem; font-weight:300}

.showcase{
  padding:54px 0 34px;
  text-align:center;
}
.showcase-sub{
  max-width:700px;
  margin:0 auto 26px;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.65;
}
.video-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  align-items:start;
}
.video-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 14px 35px rgba(20,49,120,.09);
}
.video-frame{
  position:relative;
  width:100%;
  aspect-ratio:9/16;
  overflow:hidden;
  background:#0d1020;
}
.video-frame video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.video-frame-placeholder{
  width:100%;
  height:100%;
  background:linear-gradient(160deg, #1c2150, #0d1020);
  display:flex;
  align-items:center;
  justify-content:center;
}
.video-card-body{
  padding:14px 14px 16px;
  text-align:left;
}
.video-card h3{
  margin:0 0 5px;
  font-size:.98rem;
  font-weight:600;
  line-height:1.35;
}
.video-card p{
  margin:0;
  color:#68708a;
  font-size:.82rem;
  line-height:1.5;
}
.showcase-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:24px;
  min-height:48px;
  padding:0 20px;
  border:1px solid #dfe4ee;
  border-radius:10px;
  background:#fff;
  color:var(--text);
  font-weight:700;
  box-shadow:0 6px 18px rgba(25,40,90,.05);
}

.comparison{
  padding:38px 0 34px;
}
.comparison-intro{
  max-width:760px;
  margin:0 auto 24px;
  text-align:center;
  color:var(--muted);
  font-size:1rem;
  line-height:1.7;
}
.compare-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:stretch;
}
.compare-card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  background:#fff;
  box-shadow:0 12px 30px rgba(20,49,120,.07);
}
.compare-card.wazzy{
  border-color:rgba(21,205,202,.45);
  background:linear-gradient(180deg, rgba(21,205,202,.09), #fff);
}
.compare-card h3{
  margin:0 0 14px;
  font-size:1.2rem;
  font-weight:600;
}
.compare-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.compare-list li{
  position:relative;
  padding-left:26px;
  color:#5f687e;
  line-height:1.5;
  font-size:.95rem;
}
.compare-card.traditional .compare-list li::before{
  content:"×";
  position:absolute;
  left:0;
  top:0;
  color:#d24d57;
  font-weight:700;
}
.compare-card.wazzy .compare-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#0f9f9c;
  font-weight:700;
}
.comparison-price{
  margin:22px auto 0;
  text-align:center;
  color:var(--text);
  font-size:1.05rem;
  font-weight:700;
}

.audience{
  padding:28px 0 38px;
  text-align:center;
}
.audience-sub{
  max-width:720px;
  margin:0 auto 24px;
  color:var(--muted);
  line-height:1.7;
}
.audience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.audience-card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:20px 16px;
  background:var(--soft);
  text-align:left;
}
.audience-card h3{
  margin:0 0 7px;
  font-size:1rem;
  font-weight:600;
}
.audience-card p{
  margin:0;
  color:#667087;
  font-size:.86rem;
  line-height:1.55;
}

.faq{padding:8px 0 26px}
.faq-grid{display:grid; grid-template-columns:1fr 1fr; gap:10px}
details{
  border:1px solid var(--line);
  border-radius:10px;
  padding:14px 18px;
  background:#fff;
}
summary{
  cursor:pointer;
  font-weight:600;
  list-style:none;
  position:relative;
  padding-right:26px;
}
summary::-webkit-details-marker{display:none}
summary::after{content:"⌄"; position:absolute; right:0; top:-3px; color:#34405f; font-size:1.2rem}
details[open] summary::after{content:"⌃"}
details p{margin:8px 0 0; color:#677087; font-size:.9rem}

.bottom-cta{max-width:560px; margin:4px auto 28px; text-align:center}
.bottom-cta .primary{min-height:54px; margin-top:0; font-size:1.1rem}
.bottom-cta .price-note{font-size:.84rem}

footer{
  margin-bottom:24px;
  padding:23px 25px;
  border:1px solid #dfe6f0;
  border-radius:20px;
  background:linear-gradient(90deg, rgba(62,84,211,.08), #fff 46%, rgba(21,205,202,.09));
}
.footer-grid{
  display:grid;
  grid-template-columns:1.7fr 1fr 1.25fr 1fr;
  gap:30px;
}
.footer-logo{width:130px; margin-bottom:12px}
footer p, footer a{font-size:.8rem; color:#667087}
footer h4{margin:0 0 9px; font-size:.82rem; font-weight:600}
footer nav{display:grid; gap:5px}
.copyright{margin-top:16px}

@media (max-width:900px){
  .features{grid-template-columns:1fr 1fr}
  .video-grid{grid-template-columns:repeat(2,1fr)}
  .audience-grid{grid-template-columns:repeat(2,1fr)}
  .feature{border-right:0; border-bottom:1px solid var(--line); padding:18px}
  .steps{grid-template-columns:1fr}
  .arrow{transform:rotate(90deg)}
  .step{height:auto}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:620px){
  .container{width:min(100% - 24px, 1180px)}
  .topbar{min-height:68px}
  .brand img{width:112px}
  .login{padding:9px 14px}
  .hero{padding-top:10px}
  h1{font-size:2.55rem}
  .eyebrow{font-size:.72rem}
  .demo{aspect-ratio:1.45/1}
  .demo > img{object-position:center}
  .play{width:66px;height:66px}
  .features{grid-template-columns:1fr}
  .video-grid{grid-template-columns:1fr 1fr; gap:12px}
  .compare-grid{grid-template-columns:1fr}
  .audience-grid{grid-template-columns:1fr}
  .feature{grid-template-columns:58px 1fr; padding:16px 4px}
  .feature img{width:52px;height:52px}
  .how{padding:16px 12px}
  .faq-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr; gap:22px}
  .footer-brand{grid-column:1/-1}
}

/* ============================================================
   AUTH PAGES (login / register)
   ============================================================ */
.auth-bg{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:32px 20px;
  background:linear-gradient(140deg,#e6ecf8 0%,#eef2ff 35%,#e8f6ff 65%,#edfaf8 100%);
}
.auth-logo{display:block; margin-bottom:28px}
.auth-logo img{width:160px; height:auto}
.auth-card{
  background:#fff;
  border-radius:22px;
  box-shadow:0 8px 48px rgba(62,84,211,.10);
  padding:40px 44px 36px;
  width:100%;
  max-width:490px;
}
.auth-title{
  text-align:center;
  font-size:1.5rem;
  font-weight:700;
  color:#1e2240;
  margin:0 0 6px;
}
.auth-subtitle{
  text-align:center;
  color:var(--muted);
  font-size:.93rem;
  margin:0 0 24px;
}
.auth-underline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  margin-bottom:26px;
}
.auth-underline span:first-child{width:36px;height:4px;border-radius:99px;background:var(--primary);display:block}
.auth-underline span:last-child{width:10px;height:4px;border-radius:99px;background:var(--turquoise);display:block}
.auth-field{margin-bottom:18px}
.auth-field label{
  display:block;
  font-size:.85rem;
  font-weight:600;
  color:#1e2240;
  margin-bottom:7px;
}
.auth-field-wrap{position:relative}
.auth-field-wrap .fi{
  position:absolute;
  left:14px;
  top:50%;
  translate:0 -50%;
  color:var(--primary);
  width:18px;height:18px;
  pointer-events:none;
}
.auth-field-wrap input{
  width:100%;
  box-sizing:border-box;
  padding:13px 44px 13px 44px;
  border:1.5px solid #e2e6f0;
  border-radius:10px;
  font-size:.95rem;
  font-family:inherit;
  color:#1e2240;
  background:#fff;
  outline:none;
  transition:border-color .15s;
}
.auth-field-wrap input:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(62,84,211,.08)}
.auth-field-wrap input::placeholder{color:#aab0c4}
.auth-field-wrap input.no-icon{padding-left:16px}
.eye-btn{
  position:absolute;
  right:12px;top:50%;translate:0 -50%;
  background:none;border:none;cursor:pointer;
  color:#aab0c4;padding:0;
  display:flex;align-items:center;
}
.eye-btn:hover{color:#68708a}
.auth-row{
  display:flex;align-items:center;
  justify-content:space-between;
  margin-bottom:22px;
  font-size:.88rem;
}
.auth-row label{display:flex;align-items:center;gap:7px;color:#4a5068;cursor:pointer}
.auth-row input[type=checkbox]{accent-color:var(--primary)}
.auth-row a{color:var(--primary);font-weight:600}
.auth-btn{
  width:100%;min-height:52px;border:0;
  border-radius:10px;color:#fff;
  font-size:1.05rem;font-weight:700;
  cursor:pointer;font-family:inherit;
  background:linear-gradient(90deg, var(--primary), var(--turquoise));
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:opacity .15s;
}
.auth-btn:hover{opacity:.92}
.auth-footer{
  text-align:center;margin-top:20px;
  font-size:.88rem;color:var(--muted);
}
.auth-footer a{color:var(--primary);font-weight:700}
.auth-error{color:#d24d57;font-size:.82rem;margin-top:5px}
.auth-status{color:#15cdca;font-size:.85rem;font-weight:600;margin-bottom:14px;text-align:center}

@media(max-width:540px){
  .auth-card{padding:30px 22px 28px}
}

/* ============================================================
   APP LAYOUT — nav + page shell
   ============================================================ */
.app-bg{
  min-height:100vh;
  background:linear-gradient(160deg,#eef1f8 0%,#f4f6ff 45%,#fff 100%);
}
.app-nav{
  background:#fff;
  border-bottom:1px solid #e8ecf4;
  padding:0 24px;
  position:sticky;top:0;z-index:40;
}
.app-nav-inner{
  max-width:1180px;margin:0 auto;
  height:60px;display:flex;align-items:center;gap:0;
}
.app-nav-logo{margin-right:32px}
.app-nav-logo img{width:110px;height:auto;display:block}
.app-nav-links{display:flex;align-items:stretch;gap:2px;flex:1}
.app-nav-link{
  display:flex;align-items:center;gap:7px;
  padding:0 16px;height:60px;
  font-size:.875rem;font-weight:600;color:#68708a;
  border-bottom:2px solid transparent;
  transition:color .15s,border-color .15s;
  white-space:nowrap;
}
.app-nav-link:hover{color:var(--primary)}
.app-nav-link.active{color:var(--primary);border-bottom-color:var(--primary)}
.app-nav-link svg{width:15px;height:15px;flex-shrink:0}
.app-nav-right{margin-left:auto;position:relative}
.app-nav-user-btn{
  display:flex;align-items:center;gap:6px;
  background:none;border:none;cursor:pointer;
  font-family:inherit;font-size:.875rem;font-weight:600;
  color:#1e2240;padding:6px 10px;border-radius:8px;
  transition:background .15s;
}
.app-nav-user-btn:hover{background:var(--soft)}
.app-nav-dropdown{
  position:absolute;right:0;top:calc(100% + 6px);
  background:#fff;border:1px solid #e2e6f0;
  border-radius:12px;
  box-shadow:0 8px 32px rgba(62,84,211,.10);
  min-width:160px;overflow:hidden;z-index:50;
}
.app-nav-dropdown a,
.app-nav-dropdown button{
  display:block;width:100%;padding:10px 16px;
  text-align:left;font-size:.87rem;font-weight:500;
  color:#1e2240;background:none;border:none;
  cursor:pointer;font-family:inherit;text-decoration:none;
}
.app-nav-dropdown a:hover,
.app-nav-dropdown button:hover{background:var(--soft)}

/* ============================================================
   PROFILE PAGE
   ============================================================ */
.profile-main{
  max-width:860px;margin:0 auto;
  padding:36px 24px 60px;
}
.profile-page-title{
  font-size:2rem;font-weight:700;color:#1e2240;
  margin:0 0 28px;display:flex;align-items:center;gap:10px;
}
.profile-card{
  background:#fff;border-radius:18px;
  box-shadow:0 4px 24px rgba(62,84,211,.07);
  padding:28px 32px 28px 24px;
  margin-bottom:20px;display:flex;gap:22px;
}
.picon{
  width:52px;height:52px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.picon.blue{background:#eef0ff}
.picon.teal{background:#e0f9f8}
.picon.red{background:#ffecec}
.picon svg{width:24px;height:24px}
.profile-section{flex:1;min-width:0}
.profile-section h2{font-size:1.05rem;font-weight:700;color:#1e2240;margin:0 0 4px}
.profile-section > p{font-size:.86rem;color:var(--muted);margin:0 0 20px;line-height:1.5}
.pfield{margin-bottom:16px}
.pfield label{display:block;font-size:.82rem;font-weight:600;color:#4a5068;margin-bottom:6px}
.pfield input{
  width:100%;max-width:420px;box-sizing:border-box;
  padding:11px 14px;border:1.5px solid #e2e6f0;
  border-radius:10px;font-size:.92rem;font-family:inherit;
  color:#1e2240;background:#fff;outline:none;
  transition:border-color .15s;
}
.pfield input:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(62,84,211,.08)}
.pfield .pw-wrap{position:relative;max-width:420px}
.pfield .pw-wrap input{max-width:100%;padding-right:42px}
.pfield .pw-wrap .eye-btn{position:absolute;right:12px;top:50%;translate:0 -50%}
.pfield-error{color:#d24d57;font-size:.8rem;margin-top:4px}
.save-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 22px;border:0;border-radius:10px;
  color:#fff;font-size:.92rem;font-weight:700;
  cursor:pointer;font-family:inherit;
  background:linear-gradient(90deg, var(--primary), var(--turquoise));
  transition:opacity .15s;
}
.save-btn:hover{opacity:.9}
.delete-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 20px;border:1.5px solid #e05060;
  border-radius:10px;color:#e05060;
  font-size:.92rem;font-weight:700;
  cursor:pointer;background:none;font-family:inherit;
  transition:background .15s;
}
.delete-btn:hover{background:#fff0f1}
.saved-flash{font-size:.85rem;color:#15cdca;font-weight:600}

/* delete modal overlay */
.modal-overlay{
  position:fixed;inset:0;z-index:60;
  display:flex;align-items:center;justify-content:center;
  background:rgba(30,34,64,.45);
  padding:20px;
}
.modal-box{
  background:#fff;border-radius:18px;
  padding:32px;max-width:430px;width:100%;
  box-shadow:0 16px 60px rgba(30,34,64,.18);
}
.modal-box h3{font-size:1.1rem;font-weight:700;color:#1e2240;margin:0 0 8px}
.modal-box p{font-size:.88rem;color:var(--muted);margin:0 0 20px;line-height:1.55}
.modal-actions{display:flex;gap:10px;justify-content:flex-end;margin-top:20px}
.cancel-btn{
  padding:10px 18px;border:1.5px solid #e2e6f0;
  border-radius:10px;background:#fff;font-family:inherit;
  font-size:.9rem;font-weight:600;color:#4a5068;cursor:pointer;
}
.cancel-btn:hover{background:var(--soft)}

/* ============================================================
   GUIDE / ARTICLE PAGES
   ============================================================ */
.guide-wrap{
  max-width:820px;
  margin:0 auto;
  padding:48px 24px 80px;
}
.guide-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:7px 14px;
  border-radius:999px;
  background:rgba(62,84,211,.08);
  color:var(--primary);
  font-weight:700;
  letter-spacing:.03em;
  font-size:.88rem;
  text-transform:uppercase;
}
.guide-wrap h1{
  max-width:100%;
  font-size:clamp(1.9rem,5vw,2.9rem);
  line-height:1.1;
  letter-spacing:-.03em;
  margin:0 0 18px;
}
.guide-lead{
  font-size:1.13rem;
  color:var(--muted);
  line-height:1.72;
  margin:0 0 30px;
  max-width:720px;
}
.guide-box{
  background:rgba(62,84,211,.06);
  border:1px solid rgba(62,84,211,.16);
  border-radius:16px;
  padding:22px 26px;
  margin:0 0 36px;
  font-size:.97rem;
  line-height:1.65;
  color:var(--text);
}
.guide-box strong{color:var(--primary)}
.guide-section{margin-bottom:36px}
.guide-section h2{
  font-size:1.3rem;
  font-weight:700;
  color:#1e2240;
  margin:0 0 12px;
  letter-spacing:-.02em;
}
.guide-section p{
  color:#5a6270;
  line-height:1.72;
  font-size:.97rem;
  margin:0 0 14px;
}
.guide-steps{display:grid;gap:14px;margin:14px 0}
.guide-step{
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px 22px;
  background:#fff;
  box-shadow:0 4px 16px rgba(20,49,120,.05);
}
.guide-step b{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:1rem;
  font-weight:700;
  color:#1e2240;
  margin-bottom:6px;
}
.guide-step-no{
  width:26px;height:26px;
  border-radius:50%;
  background:var(--primary);
  color:#fff;
  display:grid;place-items:center;
  font-size:.8rem;
  font-weight:700;
  flex-shrink:0;
}
.guide-step p{color:#5a6270;font-size:.9rem;line-height:1.6;margin:0}
.guide-faq{margin-bottom:36px}
.guide-faq h2{font-size:1.3rem;font-weight:700;color:#1e2240;margin:0 0 14px;letter-spacing:-.02em}
.guide-faq details{
  border:1px solid var(--line);
  border-radius:10px;
  padding:14px 18px;
  background:#fff;
  margin-bottom:10px;
}
.guide-faq summary{
  cursor:pointer;font-weight:600;
  list-style:none;position:relative;
  padding-right:26px;color:#1e2240;
}
.guide-faq summary::-webkit-details-marker{display:none}
.guide-faq summary::after{content:"⌄";position:absolute;right:0;top:-3px;color:#34405f;font-size:1.2rem}
.guide-faq details[open] summary::after{content:"⌃"}
.guide-faq details p{margin:10px 0 0;color:#677087;font-size:.9rem;line-height:1.6}
.guide-cta-box{
  background:linear-gradient(135deg,rgba(62,84,211,.09),rgba(21,205,202,.09));
  border:1px solid rgba(62,84,211,.18);
  border-radius:18px;
  padding:30px 32px;
  text-align:center;
  margin-bottom:32px;
}
.guide-cta-box h2{font-size:1.25rem;font-weight:700;color:#1e2240;margin:0 0 8px}
.guide-cta-box p{color:var(--muted);font-size:.95rem;margin:0 0 20px}
.guide-cta-btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;min-height:52px;padding:0 32px;
  border:0;border-radius:10px;color:#fff;
  font-size:1rem;font-weight:700;cursor:pointer;
  font-family:inherit;text-decoration:none;
  background:linear-gradient(90deg,var(--primary),var(--turquoise));
  box-shadow:0 8px 22px rgba(62,84,211,.22);
  transition:opacity .15s;
}
.guide-cta-btn:hover{opacity:.9}
.guide-note{font-size:.82rem;color:#9aa0b0;line-height:1.6;margin-bottom:32px}
.guide-related{margin-bottom:20px}
.guide-related h3{font-size:1rem;font-weight:700;color:#1e2240;margin:0 0 10px}
.guide-related ul{display:flex;flex-wrap:wrap;gap:8px;list-style:none;padding:0;margin:0}
.guide-related li a{
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 14px;border:1px solid var(--line);border-radius:8px;
  background:#fff;color:var(--primary);font-size:.88rem;font-weight:600;
  text-decoration:none;transition:background .15s;
}
.guide-related li a:hover{background:var(--soft)}
/* guides index */
.guides-index-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:28px;
}
.guide-card{
  border:1px solid var(--line);border-radius:16px;
  padding:24px;background:#fff;
  box-shadow:0 6px 20px rgba(20,49,120,.07);
  text-decoration:none;color:inherit;
  transition:box-shadow .15s,transform .15s;
  display:block;
}
.guide-card:hover{box-shadow:0 12px 32px rgba(20,49,120,.12);transform:translateY(-2px)}
.guide-card-tag{
  font-size:.75rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;color:var(--primary);margin-bottom:8px;
}
.guide-card h3{font-size:1.05rem;font-weight:700;color:#1e2240;margin:0 0 8px;line-height:1.3}
.guide-card p{font-size:.87rem;color:var(--muted);line-height:1.6;margin:0}
@media(max-width:680px){
  .guide-wrap{padding:32px 18px 60px}
  .guides-index-grid{grid-template-columns:1fr}
  .guide-cta-box{padding:22px 18px}
}
/* ============================================================
   Create form — selectable cards and tab buttons
   ============================================================ */
.tap-card{
  cursor:pointer;
  border:1.5px solid #e4e0f0;
  background:#fff;
  color:#1a1535;
  transition:border-color .15s,background .15s,box-shadow .15s;
}
.tap-card:hover:not(:disabled){border-color:#b8a8d9}
.tap-card.selected{
  border-color:#7c5cbf;
  background:#f5f0fa;
  box-shadow:0 0 0 3px rgba(124,92,191,.10);
}
.tab-btn{cursor:pointer;transition:background .15s,color .15s}
.tab-btn.active{background:#f5f0fa;color:#7c5cbf;font-weight:600}
