/* =========================================================
   アゲルキャリア 採用LP - style.css
   ========================================================= */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name, .footer-name, .btn-header-cta, .tag, .btn-primary,
.eyebrow, .empathy-callout-strong, .quiz-kicker, .quiz-step-label,
.quiz-question, .btn-quiz-submit, .compare-badge, .ct-head .ct-cell,
.ai-item span:last-child, .btn-sticky {
  font-family: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Page shell ---------- */
.page-bg {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url(./assets/sekokanbg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.lp-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: #F1FAFE;
  position: relative;
  box-shadow: 0 0 60px rgba(42, 58, 68, 0.12);
  overflow: hidden;
}

.accent-blue { color: #2FA8DD; }
.accent-blue-dark { color: #2596CC; }
.accent-yellow-light { color: #FFE9A8; }
.accent-cyan { color: #62D0F5; }
.accent-orange { color: #F2A516; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E3F0F7;
}

.header-logo img {
  width: 100%;
  max-width: 40%;
  margin-right: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2FA8DD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  font-size: 15px;
}

.brand-name {
  font-weight: 700;
  font-size: 15px;
  color: #2A3A44;
}

.btn-header-cta {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 8px 14px;
  background: #FF8A9B;
  border-radius: 999px;
  box-shadow: 0 3px 0 #E96E80;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 26px 22px 34px;
  text-align: center;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 16% 8%, #FFF1C2 0%, transparent 38%),
    radial-gradient(circle at 92% 14%, #CFECFA 0%, transparent 42%);
}

.hero-kicker {
  font-size: 13px;
  font-weight: 700;
  color: #5E6E78;
  margin-bottom: 10px;
}

.hero-title {
  font-weight: 900;
  font-size: 30px;
  line-height: 1.42;
  color: #2A3A44;
  text-wrap: pretty;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-top: 16px;
}

.tag {
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}

.tag-yellow { background: #FFC83D; color: #5A4500; }
.tag-pink { background: #FF8A9B; color: #fff; }
.tag-blue { background: #2FA8DD; color: #fff; }

.hero-lead {
  margin: 16px auto 0;
  max-width: 340px;
  font-size: 13.5px;
  line-height: 1.9;
  color: #5E6E78;
}

.hero-visual {
  position: relative;
  margin: 18px 0 0;
}

.hero-image-frame {
  border-radius: 26px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 26px rgba(47, 168, 221, 0.22);
}

.hero-visual .image-slot {
  width: 100%;
  height: 226px;
}

.mascot {
  position: absolute;
  right: -50px;
  bottom: 66px;
  width: 128px;
  filter: drop-shadow(0 6px 10px rgba(42, 58, 68, 0.18));
}

.mascot-bubble {
  position: absolute;
  left: -58px;
  top: 6px;
  background: #fff;
  border: 2px solid #FFC83D;
  border-radius: 14px;
  padding: 7px 10px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #2A3A44;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(42, 58, 68, 0.1);
}

.mascot-bubble-tail {
  position: absolute;
  right: -7px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 2px solid #FFC83D;
  border-bottom: 2px solid #FFC83D;
  transform: rotate(-45deg);
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 999px;
  background: #FF8A9B;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 7px 0 #E96E80;
  border: none;
}

.hero-note {
  margin-top: 10px;
  font-size: 11.5px;
  color: #8A9BA6;
}

/* ---------- Image slot placeholder ---------- */
.image-slot {
  display: block;
  background: #F2FAF8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%234C948C' stroke-width='1.5'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Ccircle cx='8' cy='10' r='1.5'/%3E%3Cpath d='M22 16l-5-5-7 7'/%3E%3C/svg%3E") no-repeat center 42%;
  background-size: 24px 24px;
  border: 1px dashed #CFECE7;
  position: relative;
  overflow: hidden;
}

.image-slot::after {
  content: attr(data-placeholder);
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  color: #7fa8a2;
}

.jt-image {
  width: 60px;
  height: 60px;
  flex: none;
  border-radius: 16px;
}

/* ---------- Shared section heading styles ---------- */
.section-title-lg {
  text-align: center;
  font-weight: 900;
  font-size: 23px;
  line-height: 1.5;
  color: #2A3A44;
}

.section-title-md {
  text-align: center;
  font-weight: 900;
  font-size: 21px;
  line-height: 1.5;
  color: #2A3A44;
}

.section-title-white {
  color: #fff;
}

.section-sub {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  color: #5E6E78;
}

.section-sub.narrow {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub-dark {
  color: #C6D6E0;
}

.eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow-yellow { color: #FFE9A8; }
.eyebrow-blue { color: #2FA8DD; }
.eyebrow-pink { color: #FF8A9B; }
.eyebrow-cyan { color: #62D0F5; letter-spacing: 0.1em; }
.eyebrow-orange { color: #F2A516; }

/* ---------- Empathy ---------- */
.empathy {
  padding: 46px 22px;
  background: #F1FAFE;
}

.empathy-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 22px;
}

.empathy-item {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(42, 58, 68, 0.05);
}

.empathy-icon {
  flex: none;
  font-size: 18px;
}

.empathy-item p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  color: #3A4A54;
}

.empathy-callout {
  margin-top: 22px;
  padding: 20px;
  background: #FFF6E0;
  border-radius: 20px;
  text-align: center;
}

.empathy-callout p:first-child {
  font-size: 12.5px;
  line-height: 1.75;
  color: #7A6A3A;
  margin-bottom: 8px;
}

.empathy-callout-strong {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.55;
  color: #2A3A44;
}

/* ---------- Solution ---------- */
.solution {
  padding: 46px 22px;
  background: #2FA8DD;
  background-image: linear-gradient(170deg, #46BBEC, #2596CC);
  color: #fff;
}

.solution h2 {
  margin-top: 8px;
}

.solution-card {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 22px;
}

.solution-card p {
  font-size: 13.5px;
  line-height: 1.95;
  color: #F0FAFE;
}

.solution-card p:first-child {
  margin-bottom: 12px;
}

/* ---------- Job content ---------- */
.job-content {
  padding: 46px 22px;
  background: #fff;
}

.job-content h2 {
  margin-top: 8px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.work-chip {
  padding: 13px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.work-chip span:first-child {
  font-size: 17px;
}

.work-chip span:last-child {
  font-size: 13px;
  font-weight: 700;
  color: #2A3A44;
}

.notice-box {
  margin-top: 18px;
  padding: 16px 18px;
  background: #F1FAFE;
  border-radius: 16px;
  border: 1.5px dashed #BFE4F4;
}

.notice-box p {
  font-size: 12.5px;
  line-height: 1.8;
  color: #3A4A54;
}

.notice-box-blue {
  margin-top: 18px;
  background: #F1FAFE;
  border: none;
  border-radius: 18px;
}

/* ---------- Compare ---------- */
.compare {
  padding: 46px 22px;
  background: #F1FAFE;
}

.compare h2 {
  margin-top: 8px;
}

.compare-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.compare-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(42, 58, 68, 0.06);
}

.compare-card p {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.85;
  color: #5E6E78;
}

.compare-card-highlight {
  box-shadow: 0 6px 18px rgba(47, 168, 221, 0.18);
  border: 2px solid #2FA8DD;
}

.compare-card-highlight p {
  color: #3A4A54;
}

.compare-arrow {
  display: flex;
  justify-content: center;
  margin: -4px 0;
  font-size: 22px;
}

.compare-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}

.compare-badge-gray {
  background: #EEF2F5;
  color: #6B7E89;
}

.compare-badge-blue {
  background: #2FA8DD;
  color: #fff;
}

/* ---------- Compare table ---------- */
.compare-table-section {
  padding: 46px 22px;
  background: #fff;
}

.compare-table-section h2 {
  margin-bottom: 4px;
}

.compare-table {
  margin-top: 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #E3F0F7;
}

.ct-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
}

.ct-head .ct-cell {
  padding: 12px 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.ct-head-label { background: #2A3A44; }
.ct-head-a { background: #7E909C; }
.ct-head-b { background: #2FA8DD; }

.ct-row:not(.ct-head) {
  border-top: 1px solid #EEF3F6;
}

.ct-row:not(.ct-head) .ct-cell {
  padding: 12px 9px;
  font-size: 11px;
  display: flex;
  align-items: center;
}

.ct-row:not(.ct-head) .ct-cell:first-child {
  font-weight: 700;
  color: #2A3A44;
}

.ct-row:not(.ct-head) .ct-cell:nth-child(2) {
  line-height: 1.5;
  color: #6B7E89;
  border-left: 1px solid #EEF3F6;
}

.ct-row:not(.ct-head) .ct-cell:nth-child(3) {
  line-height: 1.5;
  color: #1E6E96;
  font-weight: 600;
  border-left: 1px solid #EEF3F6;
  background: #F4FBFE;
}

/* ---------- AI era ---------- */
.ai-era {
  padding: 50px 22px;
  background: #2A3A44;
  background-image:
    linear-gradient(170deg, #33455180, transparent),
    radial-gradient(circle at 80% 10%, #2FA8DD33 0%, transparent 45%);
  color: #fff;
}

.ai-era h2 {
  margin-top: 10px;
}

.ai-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0;
}

.ai-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.ai-item span:first-child {
  font-size: 20px;
}

.ai-item span:last-child {
  font-size: 15px;
  font-weight: 700;
}

/* ---------- Job types ---------- */
.job-types {
  padding: 46px 22px;
  background: #fff;
}

.jt-title {
  margin: 8px 0 24px;
}

.jt-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jt-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
}

.jt-top {
  display: flex;
  gap: 14px;
}

.jt-top h3 {
  margin-bottom: 4px;
  font-size: 15.5px;
  font-weight: 700;
  color: #2A3A44;
}

.jt-top p {
  font-size: 12px;
  line-height: 1.7;
  color: #5E6E78;
}

.jt-detail {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  padding: 12px 13px;
}

.jt-detail-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
}

.jt-detail-head .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.jt-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.jt-badges span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 10.5px;
  font-weight: 700;
  color: #2A3A44;
}

.jt-detail p {
  margin-top: 9px;
  font-size: 11.5px;
  line-height: 1.7;
  color: #5E6E78;
}

/* ---------- Fit / Not fit ---------- */
.fit {
  padding: 46px 22px;
  background: #F1FAFE;
}

.fit h2 {
  margin-bottom: 22px;
}

.fit-list {
  background: #fff;
  border-radius: 22px;
  padding: 8px 18px;
  box-shadow: 0 3px 10px rgba(42, 58, 68, 0.06);
}

.fit-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 0;
  border-top: 1px solid #F0F5F8;
}

.fit-row:first-child {
  border-top: none;
}

.fit-check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #E7F5EC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.fit-row span.fit-text {
  font-size: 13px;
  line-height: 1.6;
  color: #3A4A54;
}

.not-fit {
  padding: 46px 22px;
  background: #fff;
}

.not-fit h2 {
  margin-bottom: 8px;
}

.not-fit-list {
  background: #FFF3F0;
  border-radius: 22px;
  padding: 8px 18px;
  margin-top: 18px;
}

.not-fit-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 0;
  border-top: 1px solid #FAE3DE;
}

.not-fit-row:first-child {
  border-top: none;
}

.not-fit-x {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FBDED7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: #E0775F;
  font-weight: 700;
  font-size: 13px;
}

.not-fit-row span.fit-text {
  font-size: 13px;
  line-height: 1.6;
  color: #3A4A54;
}

/* ---------- Service ---------- */
.service {
  padding: 46px 22px;
  background: #FFF6E0;
}

.service h2 {
  margin-top: 8px;
}

.service-card {
  margin-top: 20px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(242, 165, 22, 0.12);
}

.service-card p {
  font-size: 13px;
  line-height: 1.9;
  color: #3A4A54;
  margin-bottom: 12px;
}

.service-card p:last-child {
  margin-bottom: 0;
}

/* ---------- Quiz / Form ---------- */
.quiz-section {
  padding: 44px 20px 50px;
  background: #2FA8DD;
  background-image: linear-gradient(170deg, #46BBEC, #2596CC);
}

.quiz-kicker {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #FFE9A8;
  letter-spacing: 0.06em;
}

.quiz-title {
  margin-top: 6px;
  text-align: center;
  font-weight: 900;
  font-size: 23px;
  line-height: 1.45;
  color: #fff;
}

.quiz-lead {
  margin: 12px 0 18px;
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  color: #E2F4FC;
}

.quiz-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px 18px 22px;
}

.quiz-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.quiz-step-label {
  font-size: 11px;
  font-weight: 700;
  color: #2FA8DD;
}

.quiz-progress-label {
  font-size: 11px;
  font-weight: 700;
  color: #9AAAB4;
}

.quiz-progress-track {
  height: 7px;
  border-radius: 999px;
  background: #EAF2F6;
  overflow: hidden;
  margin-bottom: 18px;
}

.quiz-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFC83D, #FF8A9B);
  transition: width 0.35s ease;
}

.quiz-micro {
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1.65;
  color: #8A9BA6;
}

.quiz-question {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #2A3A44;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.quiz-option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #DCEEF6;
  border-radius: 14px;
  background: #fff;
  color: #2A3A44;
  font-size: 13.5px;
  font-weight: 700;
  text-align: left;
  transition: all 0.15s;
}

.quiz-option-btn.selected {
  border-color: #2FA8DD;
  background: #2FA8DD;
  color: #fff;
}

.quiz-option-btn .arrow {
  flex: none;
  font-size: 15px;
}

.quiz-basic-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.quiz-basic-form label {
  font-size: 11.5px;
  font-weight: 700;
  color: #5E6E78;
}

.quiz-basic-form .required {
  color: #FF8A9B;
}

.quiz-basic-form input {
  margin-top: 5px;
  width: 100%;
  padding: 13px 14px;
  border: 2px solid #DCEEF6;
  border-radius: 14px;
  background: #F7FCFE;
  font-size: 14px;
  color: #2A3A44;
  font-family: inherit;
}

/* ---------- 生年月日プルダウン ---------- */
.birth-select-row {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.birth-select-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.birth-select {
  width: 100%;
  padding: 13px 26px 13px 12px;
  border: 2px solid #DCEEF6;
  border-radius: 14px;
  background: #F7FCFE;
  font-size: 14px;
  color: #2A3A44;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239AAAB4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.birth-select:invalid {
  color: #9AAAB4;
}

.birth-select-suffix {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #5E6E78;
  pointer-events: none;
  background: #F7FCFE;
  padding-left: 2px;
}

/* ---------- プライバシーポリシー同意チェック ---------- */
.quiz-privacy-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.quiz-privacy-checkbox {
  flex: none;
  width: 18px !important;
  height: 18px !important;
  margin-top: 1px;
  accent-color: #FF8A9B;
  cursor: pointer;
}

.quiz-privacy-text {
  font-size: 11.5px;
  line-height: 1.6;
  color: #5E6E78;
  font-weight: 400;
}

.quiz-privacy-text a {
  color: #2596CC;
  text-decoration: underline;
}

.btn-quiz-submit {
  margin-top: 4px;
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: #FF8A9B;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 0 #E96E80;
}

.quiz-agree {
  text-align: center;
  font-size: 10.5px;
  color: #9AAAB4;
}

.btn-quiz-back {
  display: block;
  margin: 16px auto 0;
  padding: 6px 16px;
  background: transparent;
  border: none;
  color: #9AAAB4;
  font-size: 12px;
  font-weight: 700;
}

.quiz-footnote {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  color: #E2F4FC;
}

.quiz-done {
  background: #fff;
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
}

.quiz-done-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto;
  border-radius: 50%;
  background: #E7F5EC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-done h3 {
  margin: 18px 0 10px;
  font-weight: 900;
  font-size: 20px;
  color: #2A3A44;
}

.quiz-done p {
  font-size: 13px;
  line-height: 1.9;
  color: #5E6E78;
}

.quiz-done-note {
  margin-top: 16px;
  padding: 14px;
  background: #F1FAFE;
  border-radius: 14px;
  font-size: 11.5px;
  line-height: 1.7;
  color: #6B7E89;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 46px 22px;
  background: #fff;
}

.faq h2 {
  margin: 8px 0 22px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.faq-item {
  background: #F1FAFE;
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: flex-start;
  padding: 16px;
  background: transparent;
  border: none;
  text-align: left;
}

.faq-q-mark {
  flex: none;
  font-weight: 900;
  font-size: 15px;
  color: #2FA8DD;
}

.faq-q-text {
  flex: 1;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.55;
  color: #2A3A44;
}

.faq-chevron {
  flex: none;
  transition: transform 0.25s;
  margin-top: 2px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 16px 34px;
  font-size: 12.5px;
  line-height: 1.85;
  color: #5E6E78;
}

/* ---------- Closing ---------- */
.closing {
  padding: 42px 22px 50px;
  background: #2FA8DD;
  background-image: linear-gradient(170deg, #46BBEC, #2596CC);
  color: #fff;
  text-align: center;
}

.mascot-cheer {
  position: static;
  width: 120px;
  margin: 0 auto 6px;
  filter: drop-shadow(0 6px 10px rgba(42, 58, 68, 0.18));
}

.closing-lead {
  margin: 16px auto 0;
  max-width: 340px;
  font-size: 13px;
  line-height: 1.95;
  color: #E2F4FC;
}

.closing-note {
  margin-top: 12px;
  font-size: 11px;
  color: #CDEAF7;
}

/* ---------- Footer ---------- */
.footer {
  padding: 24px 22px 100px;
  background: #2A3A44;
  color: #8FA3AE;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  width: 100%;
  max-width: 60%;
  margin: 0 auto;
}

.footer-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  font-size: 12px;
}

.footer-name {
  font-weight: 700;
  font-size: 13px;
  color: #EAF7FD;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  font-size: 11.5px;
}

.footer-copy {
  margin-top: 16px;
  font-size: 10.5px;
  color: #5E7180;
}

/* ---------- Sticky bottom CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 60;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #E3F0F7;
}

.btn-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  border-radius: 999px;
  background: #FF8A9B;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 0 #E96E80;
}

.mascot-wave img {
  width: 100%;
  max-width: 70%;
  z-index: -1;
}