:root {
  --page-ink: #0f172a;
  --page-muted: #64748b;
  --page-line: rgba(15, 23, 42, 0.08);
  --page-blue: #2563eb;
  --page-violet: #6d28d9;
  --page-surface: #f7f9fd;
}


/* =========================================================
   SUBPAGE HERO
   ========================================================= */

.subpage-main {
  min-height: 100vh;
  background: #fff;
}

.subpage-hero {
  position: relative;
  overflow: hidden;

  padding: 148px 0 92px;

  color: #fff;

  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(56, 189, 248, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 82% 28%,
      rgba(168, 85, 247, 0.22),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #071126,
      #16245b 52%,
      #35136c
    );
}

.subpage-hero::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;

  height: 70px;

  background:
    linear-gradient(
      to bottom right,
      transparent 49%,
      #fff 50%
    );
}

.subpage-hero-content {
  position: relative;
  z-index: 2;

  max-width: 760px;
}

.subpage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 18px;
  padding: 8px 12px;

  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;

  color: #dbeafe;
  background: rgba(255,255,255,0.07);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.subpage-kicker-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #38bdf8;

  box-shadow:
    0 0 0 5px rgba(56,189,248,0.11);
}

.subpage-hero h1 {
  max-width: 760px;

  margin: 0;

  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.subpage-hero h1 span {
  display: block;

  color: #a5c7ff;
}

.subpage-hero p {
  max-width: 660px;

  margin: 24px 0 0;

  color: #cbd5e1;

  font-size: 17px;
  line-height: 1.75;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.info-section {
  padding: 84px 0;
}

.info-section.alt {
  background: var(--page-surface);
}

.info-heading {
  max-width: 700px;

  margin-bottom: 38px;
}

.info-heading .mini-label {
  display: block;

  margin-bottom: 10px;

  color: var(--page-blue);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.info-heading h2 {
  margin: 0;

  color: var(--page-ink);

  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.info-heading p {
  max-width: 620px;

  margin: 16px 0 0;

  color: var(--page-muted);

  font-size: 15px;
  line-height: 1.75;
}


/* =========================================================
   CARDS
   ========================================================= */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 26px;

  border: 1px solid var(--page-line);
  border-radius: 24px;

  background: #fff;

  box-shadow:
    0 18px 45px rgba(15,23,42,0.055);
}

.info-card-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  margin-bottom: 20px;

  border-radius: 15px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      var(--page-blue),
      var(--page-violet)
    );

  font-size: 20px;
}

.info-card h3 {
  margin: 0 0 10px;

  color: var(--page-ink);

  font-size: 18px;
}

.info-card p {
  margin: 0;

  color: var(--page-muted);

  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.about-copy h2 {
  margin: 0;

  color: var(--page-ink);

  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-copy p {
  margin: 18px 0 0;

  color: var(--page-muted);

  font-size: 15px;
  line-height: 1.8;
}

.about-visual {
  position: relative;

  min-height: 390px;

  overflow: hidden;

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(56,189,248,0.24),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #0b1839,
      #243784 55%,
      #5b21b6
    );

  box-shadow:
    0 28px 70px rgba(30,41,59,0.18);
}

.about-visual img {
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 88%;
  max-height: 360px;

  object-fit: contain;

  transform: translateX(-50%);
}

.about-visual-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;

  padding: 10px 13px;

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;

  color: #fff;
  background: rgba(255,255,255,0.09);

  backdrop-filter: blur(14px);

  font-size: 11px;
  font-weight: 800;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-panel {
  padding: 30px;

  border: 1px solid var(--page-line);
  border-radius: 28px;

  background: #fff;

  box-shadow:
    0 20px 55px rgba(15,23,42,0.06);
}

.contact-panel.dark {
  color: #fff;

  border: 0;

  background:
    linear-gradient(
      145deg,
      #0d1836,
      #24327a 58%,
      #53199a
    );
}

.contact-panel h2,
.contact-panel h3 {
  margin-top: 0;
}

.contact-panel.dark p {
  color: #cbd5e1;
}

.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;

  padding: 18px 0;

  border-bottom:
    1px solid rgba(15,23,42,0.07);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  flex: 0 0 auto;

  border-radius: 14px;

  color: var(--page-blue);
  background: #edf4ff;
}

.contact-method strong {
  display: block;

  color: var(--page-ink);

  font-size: 13px;
}

.contact-method p,
.contact-method a {
  display: block;

  margin: 5px 0 0;

  color: var(--page-muted);

  font-size: 13px;
  line-height: 1.6;
}

.contact-method a {
  text-decoration: none;
}

.contact-method a:hover {
  color: var(--page-blue);
}


/* =========================================================
   SUPPORT
   ========================================================= */

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.support-card {
  min-height: 230px;

  display: flex;
  flex-direction: column;

  padding: 26px;

  border: 1px solid var(--page-line);
  border-radius: 25px;

  background: #fff;

  box-shadow:
    0 18px 45px rgba(15,23,42,0.055);
}

.support-card h3 {
  margin: 17px 0 9px;

  color: var(--page-ink);

  font-size: 18px;
}

.support-card p {
  margin: 0;

  color: var(--page-muted);

  font-size: 13px;
  line-height: 1.7;
}

.support-card a {
  margin-top: auto;
  padding-top: 22px;

  color: var(--page-blue);

  text-decoration: none;

  font-size: 12px;
  font-weight: 900;
}

.support-notice {
  margin-top: 28px;
  padding: 20px 22px;

  border: 1px solid #fed7aa;
  border-radius: 20px;

  color: #9a3412;
  background: #fff7ed;

  font-size: 12px;
  line-height: 1.65;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  display: grid;
  gap: 12px;

  max-width: 820px;
}

.faq-item {
  padding: 22px;

  border: 1px solid var(--page-line);
  border-radius: 20px;

  background: #fff;
}

.faq-item h3 {
  margin: 0 0 8px;

  color: var(--page-ink);

  font-size: 15px;
}

.faq-item p {
  margin: 0;

  color: var(--page-muted);

  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   PAGE CTA
   ========================================================= */

.page-cta {
  padding: 0 0 84px;
}

.page-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;

  padding: 38px;

  overflow: hidden;

  border-radius: 30px;

  color: #fff;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(99,102,241,0.35),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #08152f,
      #182968 58%,
      #4c1d95
    );
}

.page-cta-box h2 {
  margin: 0;

  font-size: clamp(26px, 4vw, 40px);
}

.page-cta-box p {
  max-width: 580px;

  margin: 10px 0 0;

  color: #cbd5e1;

  font-size: 13px;
  line-height: 1.7;
}

.page-cta-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.page-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 0 18px;

  border-radius: 14px;

  color: #172554;
  background: #fff;

  text-decoration: none;

  font-size: 12px;
  font-weight: 900;
}


/* =========================================================
   SUBPAGE FOOTER
   ========================================================= */

.subpage-footer {
  padding: 48px 0 26px;

  color: #cbd5e1;
  background: #07101f;
}

.subpage-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

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

.subpage-footer-brand img {
  width: 46px;
  height: 46px;

  object-fit: contain;
}

.subpage-footer-brand strong {
  display: block;

  color: #fff;

  font-size: 15px;
}

.subpage-footer-brand span {
  display: block;

  margin-top: 3px;

  color: #94a3b8;

  font-size: 10px;
}

.subpage-footer h4 {
  margin: 0 0 13px;

  color: #fff;

  font-size: 12px;
}

.subpage-footer-links {
  display: grid;
  gap: 9px;
}

.subpage-footer-links a {
  color: #94a3b8;

  text-decoration: none;

  font-size: 11px;
}

.subpage-footer-links a:hover {
  color: #fff;
}

.subpage-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;

  margin-top: 38px;
  padding-top: 20px;

  border-top:
    1px solid rgba(255,255,255,0.08);

  color: #64748b;

  font-size: 10px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 820px) {

  .info-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .about-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 330px;
  }

  .subpage-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}


@media (max-width: 680px) {

  .subpage-hero {
    padding: 118px 0 75px;
  }

  .subpage-hero::after {
    height: 38px;
  }

  .subpage-hero h1 {
    font-size: 42px;
  }

  .subpage-hero p {
    font-size: 14px;
  }

  .info-section {
    padding: 62px 0;
  }

  .info-card,
  .contact-panel,
  .support-card {
    padding: 21px;
    border-radius: 21px;
  }

  .about-visual {
    min-height: 270px;
    border-radius: 24px;
  }

  .page-cta {
    padding-bottom: 62px;
  }

  .page-cta-box {
    display: block;

    padding: 26px;

    border-radius: 24px;
  }

  .page-cta-actions {
    margin-top: 22px;
  }

  .page-cta-btn {
    width: 100%;
  }

  .subpage-footer-grid {
    grid-template-columns: 1fr;
  }

  .subpage-footer-bottom {
    display: block;
  }

  .subpage-footer-bottom span {
    display: block;
    margin-top: 6px;
  }

}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.legal-wrap {
  max-width: 920px;
}

.legal-intro {
  margin-bottom: 30px;
  padding: 24px;

  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      #f8fbff,
      #f7f5ff
    );
}

.legal-intro strong {
  display: block;

  margin-bottom: 8px;

  color: #0f172a;

  font-size: 14px;
}

.legal-intro p {
  margin: 0;

  color: #64748b;

  font-size: 13px;
  line-height: 1.75;
}

.legal-list {
  display: grid;
  gap: 14px;
}

.legal-card {
  padding: 24px;

  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 22px;

  background: #fff;

  box-shadow:
    0 12px 34px rgba(15,23,42,0.045);
}

.legal-card h2 {
  margin: 0 0 10px;

  color: #0f172a;

  font-size: 17px;
  line-height: 1.35;
}

.legal-card p {
  margin: 0;

  color: #64748b;

  font-size: 13px;
  line-height: 1.78;
}

.legal-card a {
  color: #2563eb;

  font-weight: 800;
  text-decoration: none;
}

.legal-card-actions {
  margin-top: 17px;
}

.legal-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 0 16px;

  border-radius: 13px;

  color: #fff !important;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #6d28d9
    );

  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.legal-note {
  margin-top: 22px;

  color: #64748b;

  text-align: center;

  font-size: 11px;
  line-height: 1.7;
}


/* =========================================================
   PRIVACY REQUEST FORM
   ========================================================= */

.privacy-request-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: start;
}

.privacy-request-info {
  position: sticky;
  top: 110px;

  padding: 27px;

  border-radius: 26px;

  color: #fff;

  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(56,189,248,0.2),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #101c3e,
      #29367f 58%,
      #511b93
    );
}

.privacy-request-info h2 {
  margin: 0 0 12px;

  font-size: 25px;
}

.privacy-request-info p {
  margin: 0 0 15px;

  color: #cbd5e1;

  font-size: 13px;
  line-height: 1.72;
}

.privacy-request-info ul {
  margin: 18px 0 0;
  padding-left: 19px;

  color: #dbeafe;

  font-size: 12px;
  line-height: 1.75;
}

.privacy-form-card {
  padding: 28px;

  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 27px;

  background: #fff;

  box-shadow:
    0 20px 55px rgba(15,23,42,0.06);
}

.privacy-form-card label {
  display: block;

  margin: 15px 0 7px;

  color: #0f172a;

  font-size: 12px;
  font-weight: 850;
}

.privacy-form-card input,
.privacy-form-card select,
.privacy-form-card textarea {
  width: 100%;

  padding: 12px 13px;

  border: 1px solid #d3dce8;
  border-radius: 13px;

  outline: none;

  color: #0f172a;
  background: #fff;

  font: inherit;
  font-size: 13px;
}

.privacy-form-card textarea {
  min-height: 125px;

  resize: vertical;
}

.privacy-form-card input:focus,
.privacy-form-card select:focus,
.privacy-form-card textarea:focus {
  border-color: #7aa6ff;

  box-shadow:
    0 0 0 4px rgba(37,99,235,0.08);
}

.form-hint {
  margin-top: 6px;

  color: #64748b;

  font-size: 10px;
  line-height: 1.6;
}

.form-check {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;

  margin-top: 18px !important;

  color: #475569 !important;

  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.65;
}

.form-check input {
  width: auto;

  flex: 0 0 auto;

  margin-top: 3px;
}

.privacy-submit {
  width: 100%;
  min-height: 48px;

  margin-top: 18px;

  border: 0;
  border-radius: 14px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #dc2626,
      #b42318
    );

  font-size: 13px;
  font-weight: 900;

  cursor: pointer;
}

.privacy-submit:disabled {
  opacity: 0.55;
  cursor: default;
}

.privacy-status {
  display: none;

  margin-top: 15px;
  padding: 13px 14px;

  border-radius: 13px;

  font-size: 11px;
  line-height: 1.65;
}

.privacy-status.ok {
  display: block;

  color: #166534;
  background: #ecfdf3;

  border: 1px solid #bbf7d0;
}

.privacy-status.err {
  display: block;

  color: #9f1239;
  background: #fff1f2;

  border: 1px solid #fecdd3;
}

.privacy-hp {
  position: absolute;
  left: -10000px;

  width: 1px;
  height: 1px;

  overflow: hidden;
}


/* =========================================================
   LEGAL RESPONSIVE
   ========================================================= */

@media (max-width: 820px) {

  .privacy-request-layout {
    grid-template-columns: 1fr;
  }

  .privacy-request-info {
    position: static;
  }

}

@media (max-width: 680px) {

  .legal-card,
  .legal-intro {
    padding: 20px;

    border-radius: 19px;
  }

  .privacy-request-info,
  .privacy-form-card {
    padding: 21px;

    border-radius: 21px;
  }

}

/* =========================================================
   SERVICE DETAIL PAGE
   ========================================================= */

.service-detail-list {
  display: grid;
  gap: 22px;
}

.service-detail {
  scroll-margin-top: 105px;

  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;

  padding: 30px;

  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;

  background: #fff;

  box-shadow:
    0 18px 50px rgba(15, 23, 42, 0.055);
}

.service-detail:nth-child(even) {
  background: #f8faff;
}

.service-detail-visual {
  min-height: 250px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #eef4ff,
      #f7f3ff
    );
}

.service-detail-visual img {
  width: 88%;
  max-width: 330px;
  max-height: 220px;

  object-fit: contain;
}

.service-detail-copy .service-tag {
  display: inline-flex;

  margin-bottom: 12px;
  padding: 7px 10px;

  border-radius: 999px;

  color: #2563eb;
  background: #eef4ff;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-copy h2 {
  margin: 0;

  color: #0f172a;

  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-detail-copy p {
  margin: 15px 0 0;

  color: #64748b;

  font-size: 14px;
  line-height: 1.8;
}

.service-points {
  display: grid;
  gap: 9px;

  margin: 20px 0 0;
  padding: 0;

  list-style: none;
}

.service-points li {
  position: relative;

  padding-left: 24px;

  color: #475569;

  font-size: 12px;
  line-height: 1.65;
}

.service-points li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  color: #2563eb;

  font-weight: 900;
}

.service-detail-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 45px;
  margin-top: 22px;
  padding: 0 17px;

  border-radius: 13px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #6d28d9
    );

  text-decoration: none;

  font-size: 11px;
  font-weight: 900;
}

.service-detail-note {
  margin-top: 28px;
  padding: 18px 20px;

  border: 1px solid #dbeafe;
  border-radius: 18px;

  color: #475569;
  background: #f8fbff;

  font-size: 11px;
  line-height: 1.7;
}


@media (max-width: 820px) {

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail-visual {
    min-height: 220px;
  }

}


@media (max-width: 680px) {

  .service-detail {
    gap: 22px;

    padding: 20px;

    border-radius: 22px;
  }

  .service-detail-visual {
    min-height: 190px;

    border-radius: 19px;
  }

  .service-detail-visual img {
    max-height: 175px;
  }

}
