@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/libre-baskerville-variable.woff2') format('woff2');
}

:root {
  --navy: #0a2b4f;
  --navy-deep: #06213f;
  --blue: #143e6e;
  --red: #c81f26;
  --red-dark: #a9161d;
  --gold: #d6a13b;
  --gold-soft: #f8efe0;
  --ink: #18324e;
  --muted: #64748b;
  --line: #dfe7f1;
  --soft: #f7f9fc;
  --white: #ffffff;
  --green: #2ca45c;
  --shadow: 0 18px 45px rgba(9, 39, 73, 0.11);
  --soft-shadow: 0 10px 30px rgba(9, 39, 73, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.65;
}

img,
svg {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all .25s ease;
}

h1,
h2,
h3,
h4 {
  font-family: "Libre Baskerville", serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.18;
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(1.45rem, 1.9vw, 2.1rem);
  line-height: 1.25;
}

p {
  color: var(--muted);
  margin-bottom: 0;
}

.container {
  max-width: 1200px;
}

.section-padding {
  padding: 56px 0;
}

.section-padding-sm {
  padding: 44px 0;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(10, 43, 79, .08);
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 20px rgba(10, 43, 79, .04);
}

.navbar {
  min-height: 68px;
  padding: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(10, 43, 79, .08);
}

.brand-sun {
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 50%;
  right: 3px;
  top: 7px;
}

.brand-wave {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 52px;
  height: 22px;
  background: var(--navy);
  clip-path: polygon(0 48%, 18% 35%, 38% 55%, 60% 36%, 82% 52%, 100% 40%, 100% 100%, 0 100%);
}

.brand-text {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .02em;
  font-size: 1.12rem;
}

.navbar-nav {
  flex-wrap: nowrap;
}

.navbar .nav-link {
  font-size: 13px;
  color: #223b56;
  font-weight: 700;
  padding: 26px 10px !important;
  white-space: nowrap;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--red);
}

.dropdown-menu {
  border: 0;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  padding: 10px;
}

.dropdown-item {
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.dropdown-item:hover {
  background: #fff2f2;
  color: var(--red);
}

.verify-top {
  padding: 10px 14px !important;
  white-space: nowrap;
}

/* Buttons */
.btn {
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 24px;
  border-width: 1.5px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 12px;
  padding: 9px 15px;
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(200, 31, 38, .22);
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}

.btn-outline-navy {
  color: var(--navy);
  border-color: var(--navy);
  background: #fff;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-deep);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #bd8424;
  border-color: #bd8424;
  color: #fff;
}

/* Hero */
.section-bg {
  background:
    radial-gradient(circle at 82% 22%, rgba(200, 31, 38, .09), transparent 14%),
    radial-gradient(circle at 18% 30%, rgba(10, 43, 79, .04), transparent 22%),
    linear-gradient(180deg, #f9fbfd 0%, #ffffff 55%, #f8fafc 100%);
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 34px 0 44px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 45%;
  height: 100%;
  background:
    repeating-radial-gradient(circle at 90% 35%, rgba(10, 43, 79, .065) 0 1px, transparent 1px 14px);
  opacity: .42;
  pointer-events: none;
}

.min-vh-hero {
  min-height: 460px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 20px;
}

.eyebrow span {
  display: inline-block;
  width: 3px;
  height: 17px;
  background: var(--gold);
  border-radius: 20px;
}

.eyebrow.small {
  font-size: 12px;
  margin-bottom: 13px;
}

.hero-text {
  font-size: 16px;
  max-width: 510px;
  margin-bottom: 30px;
}

.hero-actions {
  margin-bottom: 30px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #8f5b3f, #f4c9a1);
  box-shadow: 0 5px 10px rgba(10, 43, 79, .12);
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(135deg, #334155, #cbd5e1);
}

.avatar-stack span:nth-child(3) {
  background: linear-gradient(135deg, #aa6632, #ffd7a8);
}

.avatar-stack span:nth-child(4) {
  background: linear-gradient(135deg, #155e75, #a5f3fc);
}

.stars {
  color: #f7b521;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1.1;
}

.hero-social small {
  color: var(--muted);
  font-weight: 600;
}

.hero-visual {
  height: 500px;
  position: relative;
}

.japan-map {
  position: absolute;
  left: 45px;
  top: 40px;
  width: 235px;
  height: 330px;
  opacity: .18;
  background: #536575;
  clip-path: polygon(65% 0, 80% 12%, 69% 23%, 86% 34%, 71% 50%, 88% 65%, 72% 77%, 73% 94%, 55% 100%, 43% 82%, 53% 66%, 37% 49%, 49% 35%, 33% 18%);
}

.map-pin {
  color: var(--red);
  opacity: 1;
  font-size: 25px;
  position: absolute;
  left: 80px;
  top: 188px;
  filter: drop-shadow(0 6px 7px rgba(200, 31, 38, .3));
}

.red-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
}

.circle-one {
  width: 135px;
  height: 135px;
  top: 88px;
  right: 33px;
  opacity: .95;
}

.circle-two {
  width: 78px;
  height: 78px;
  bottom: 98px;
  right: 54px;
  opacity: .12;
}

.doc-stack,
.doc-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(10, 43, 79, .1);
  box-shadow: 0 25px 55px rgba(10, 43, 79, .15);
  position: absolute;
  padding: 22px;
  min-height: 250px;
}

.doc-jp {
  width: 205px;
  top: 22px;
  right: 205px;
  transform: rotate(-5deg);
}

.doc-en {
  width: 220px;
  top: 86px;
  right: 10px;
  transform: rotate(7deg);
}

.doc-label {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 700;
}

.doc-en .doc-label {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(10,43,79,.15);
}

.doc-title {
  font-family: "Libre Baskerville", serif;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  font-size: 19px;
  line-height: 1.3;
}

.doc-title small {
  font-family: "Inter", sans-serif;
  font-size: 11px;
}

.doc-lines span,
.doc-lines i {
  display: block;
  height: 9px;
  margin: 12px 0;
  background: linear-gradient(90deg, rgba(10,43,79,.16), rgba(10,43,79,.04));
  border-radius: 8px;
}

.doc-lines span:nth-child(even),
.doc-lines i:nth-child(even) {
  width: 72%;
}

.stamp {
  position: absolute;
  right: 14px;
  bottom: 16px;
  width: 66px;
  height: 66px;
  border: 3px solid rgba(200, 31, 38, .62);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  transform: rotate(-12deg);
}

.stamp.red {
  font-size: 10px;
  text-transform: uppercase;
}

.quick-card {
  position: absolute;
  left: 148px;
  bottom: 90px;
  width: 245px;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,43,79,.1);
  z-index: 8;
}

.quick-card h6 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
}

.quick-card h6 i {
  color: var(--gold);
}

.quick-card label,
.verify-form label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 5px;
}

.quick-card input,
.verify-form input {
  height: 40px;
  width: 100%;
  border: 1px solid #dce5ef;
  border-radius: 5px;
  padding: 0 12px;
  font-size: 12px;
  margin-bottom: 13px;
  outline: none;
}

.quick-card input:focus,
.verify-form input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 43, 79, .08);
}

.quick-card button {
  width: 100%;
  height: 42px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.quick-card button:disabled,
.verify-form button:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.quick-card select,
.verify-form select,
.verify-form textarea {
  width: 100%;
  border: 1px solid #dce5ef;
  border-radius: 5px;
  padding: 0 12px;
  font-size: 12px;
  margin-bottom: 13px;
  outline: none;
  color: var(--ink);
}

.quick-card select,
.verify-form select {
  height: 40px;
}

.verify-form select {
  height: 44px;
  margin-bottom: 16px;
}

.verify-form textarea {
  padding: 10px 12px;
  margin-bottom: 16px;
  resize: vertical;
}

.quick-card select:focus,
.verify-form select:focus,
.verify-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 43, 79, .08);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.form-feedback.is-success {
  display: block;
  background: rgba(22, 163, 74, .1);
  color: #16a34a;
}

.form-feedback.is-error {
  display: block;
  background: rgba(224, 87, 95, .1);
  color: var(--red);
}

.car {
  position: absolute;
  width: 285px;
  height: 115px;
  right: 36px;
  bottom: 68px;
  z-index: 6;
  background:
    radial-gradient(circle at 21% 84%, #151f2b 0 18px, #e5e7eb 19px 24px, transparent 25px),
    radial-gradient(circle at 75% 84%, #151f2b 0 18px, #e5e7eb 19px 24px, transparent 25px),
    linear-gradient(155deg, transparent 0 12%, #eef2f7 13% 53%, transparent 54%),
    linear-gradient(180deg, #fff 0%, #d7dee8 100%);
  border-radius: 65px 75px 22px 18px;
  box-shadow: 0 14px 20px rgba(10, 43, 79, .18);
}

.car::before {
  content: "";
  position: absolute;
  left: 72px;
  top: 18px;
  width: 118px;
  height: 38px;
  background: linear-gradient(135deg, #bfd7eb, #fff);
  clip-path: polygon(0 100%, 18% 0, 75% 0, 100% 100%);
  border-radius: 4px;
  opacity: .85;
}

.car::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 54px;
  width: 38px;
  height: 10px;
  background: var(--red);
  border-radius: 20px;
}

.ship {
  position: absolute;
  left: 2px;
  bottom: 70px;
  width: 255px;
  height: 90px;
  z-index: 3;
  background:
    linear-gradient(180deg, #203c5c 0 30%, transparent 31%),
    linear-gradient(165deg, transparent 0 10%, #bf252a 11% 38%, transparent 39%),
    linear-gradient(180deg, transparent 0 45%, #102b4b 46% 100%);
  clip-path: polygon(0 35%, 78% 35%, 100% 57%, 88% 100%, 12% 100%);
}

.ship::before {
  content: "";
  position: absolute;
  left: 55px;
  top: 4px;
  width: 104px;
  height: 34px;
  background: repeating-linear-gradient(90deg, #e9eef5 0 18px, #d9e2ec 18px 22px);
  border-radius: 3px 3px 0 0;
}

.wave-line {
  position: absolute;
  left: -10px;
  right: -40px;
  bottom: 55px;
  height: 80px;
  opacity: .18;
  background: repeating-radial-gradient(ellipse at center, transparent 0 18px, var(--navy) 19px 20px, transparent 21px 37px);
}

/* Feature strip */
.feature-strip {
  position: relative;
  z-index: 5;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,43,79,.08);
  border-radius: 10px;
  padding: 24px 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 22px;
  transform: translateY(36px);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-item i {
  color: var(--navy);
  font-size: 38px;
  line-height: 1;
}

.feature-item span {
  font-weight: 800;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.35;
}

.divider {
  width: 1px;
  min-height: 44px;
  background: #e7cf9e;
}

/* Titles */
.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  max-width: 730px;
  margin: 0 auto;
}

.section-title.compact {
  margin-bottom: 24px;
}

/* Services */
.services {
  position: relative;
  padding-top: 85px;
  background: linear-gradient(180deg, #fbfaf7 0%, #fff 40%);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%23d6a13b' stroke-width='1' opacity='0.35'%3E%3Cpath d='M-80 620 C 60 520, 60 380, 220 340'/%3E%3Cpath d='M-100 560 C 40 460, 40 320, 200 280'/%3E%3Cpath d='M-120 500 C 20 400, 20 260, 180 220'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%23d6a13b' stroke-width='1' opacity='0.3'%3E%3Cpath d='M680 -20 C 540 80, 540 220, 380 260'/%3E%3Cpath d='M700 40 C 560 140, 560 280, 400 320'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right top;
  background-size: 420px 420px, 380px 380px;
}

.services .container {
  position: relative;
  z-index: 1;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.title-divider span {
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: .55;
}

.title-divider i {
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  display: block;
  flex: none;
}

.service-card {
  position: relative;
  height: 100%;
  min-height: 260px;
  padding: 36px 26px 28px;
  border: 1px solid rgba(214,161,59,.35);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(10,43,79,.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(10,43,79,.1);
  border-color: var(--gold);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(214,161,59,.6);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.06);
  background: var(--navy);
  border-color: var(--navy);
}

.service-card i {
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  display: block;
  transition: color .3s ease, transform .3s ease;
}

.service-card:hover i {
  color: #fff;
}

.service-card h3 {
  font-size: 18px;
  line-height: 1.32;
  min-height: 48px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13px;
  line-height: 1.6;
  min-height: 64px;
  color: #66727e;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  margin-top: auto;
  padding-top: 16px;
  align-self: center;
  transition: gap .25s ease, color .25s ease;
}

.service-card a i {
  font-size: 12px;
  color: var(--gold);
  transition: transform .25s ease;
}

.service-card a:hover {
  color: var(--gold);
  gap: 12px;
}

.service-card a:hover i {
  transform: translateX(3px);
}

/* Verification */
.verify {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.verify-box {
  background:
    radial-gradient(circle at 0 0, rgba(214,161,59,.08), transparent 30%),
    #fff;
  border-radius: 12px;
  padding: 40px;
}

.verify-box h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.check-list {
  padding: 0;
  list-style: none;
  margin: 24px 0 0;
}

.check-list li {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list i {
  color: var(--green);
}

.verification-panel {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,43,79,.09);
}

.custom-tabs {
  border-color: #e1e9f2;
}

.custom-tabs .nav-link {
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 9px 18px;
}

.custom-tabs .nav-link.active {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}

.verify-form label {
  display: block;
}

.verify-form label b {
  color: var(--red);
}

.verify-form input {
  height: 44px;
  margin-bottom: 16px;
}

.verify-form small {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  margin-top: 14px;
}

.need-box {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: #fbfaf7;
  border-radius: 0 10px 10px 0;
}

.need-box h6 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}

.need-box h6 i {
  color: var(--gold);
}

.need-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.need-box li {
  position: relative;
  padding-left: 16px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.need-box li:last-child {
  margin-bottom: 0;
}

.need-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.result-title {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
}

.result-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(10,43,79,.07);
}

.result-card i {
  font-size: 18px;
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
}

.result-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.result-card p {
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.verified {
  border: 1px solid #9dd8b6;
  background: #f0fff5;
}

.turnaround-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 10px;
  background: #fbfaf7;
  border: 1px solid rgba(214,161,59,.3);
}

.turnaround-note i {
  font-size: 18px;
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(214,161,59,.15);
  color: var(--gold);
}

.turnaround-note strong {
  display: block;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 4px;
}

.turnaround-note p {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  color: var(--muted);
}

.verified i,
.verified strong {
  color: var(--green);
}

.not-verified {
  border: 1px solid #f0aaa8;
  background: #fff5f5;
}

.not-verified i,
.not-verified strong {
  color: #d4423d;
}

/* Process */
.process {
  background: #fff;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  margin-top: 36px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 45px;
  border-top: 2px dashed var(--gold);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-icon {
  width: 82px;
  height: 82px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 0 0 1px #dce6f0, 0 12px 25px rgba(10,43,79,.16);
}

.step-icon i {
  font-size: 31px;
}

.process-step span {
  display: block;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  font-size: 11px;
  margin-bottom: 7px;
}

.process-step h4 {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  line-height: 1.55;
}

/* Why choose */
.why {
  background: #fff;
}

.japan-photo {
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--soft-shadow);
  background:
    linear-gradient(180deg, #bde0ff 0%, #eaf7ff 45%, #f7fbff 45%, #d8eef6 100%);
}

.mountain {
  position: absolute;
  left: 72px;
  bottom: 52px;
  width: 260px;
  height: 150px;
  background: linear-gradient(135deg, #fff 0 28%, #dde6ef 29% 48%, #8da8bd 49% 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.pagoda {
  position: absolute;
  left: 138px;
  bottom: 20px;
  width: 135px;
  height: 205px;
  background:
    linear-gradient(#29384e, #29384e) center 0 / 8px 100% no-repeat,
    repeating-linear-gradient(180deg, transparent 0 28px, #b21e27 29px 39px, transparent 40px 45px);
}

.pagoda::before,
.pagoda::after {
  content: "";
  position: absolute;
  left: -44px;
  width: 225px;
  height: 20px;
  background: #bf252a;
  clip-path: polygon(0 70%, 50% 0, 100% 70%, 94% 100%, 6% 100%);
}

.pagoda::before {
  top: 64px;
}

.pagoda::after {
  top: 118px;
  width: 190px;
  left: -26px;
}

.tree-branch {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 6% 12%, #f6a6ac 0 8px, transparent 9px),
    radial-gradient(circle at 14% 18%, #f6a6ac 0 7px, transparent 8px),
    radial-gradient(circle at 88% 15%, #f6a6ac 0 7px, transparent 8px),
    radial-gradient(circle at 94% 27%, #f6a6ac 0 6px, transparent 7px),
    linear-gradient(25deg, transparent 0 20%, rgba(101,60,41,.55) 21% 22%, transparent 23%);
}

.why h2 {
  margin-bottom: 28px;
}

.why-item {
  display: flex;
  gap: 17px;
  padding: 0 0 18px;
  border-bottom: 1px solid #e1e8f0;
}

.why-item i {
  color: var(--gold);
  font-size: 33px;
  flex: 0 0 40px;
}

.why-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
}

.why-item p {
  font-size: 12px;
  line-height: 1.45;
}

/* Translation */
.translation {
  background:
    radial-gradient(circle at 95% 35%, rgba(214,161,59,.12), transparent 23%),
    repeating-radial-gradient(circle at 100% 48%, rgba(10,43,79,.05) 0 1px, transparent 1px 12px),
    #fbf7ef;
  border-top: 1px solid #f0e2c6;
  border-bottom: 1px solid #f0e2c6;
}

.translation h2 {
  margin-bottom: 18px;
}

.translation p {
  margin-bottom: 30px;
}

.translation-visual {
  min-height: 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 85px;
}

.doc-card.large {
  position: relative;
  width: 220px;
  min-height: 300px;
  padding: 22px;
  transform: rotate(-2deg);
}

.doc-card.large.translated {
  transform: rotate(2deg);
}

.doc-card.large span {
  position: absolute;
  left: 12px;
  top: -18px;
  background: var(--gold);
  color: #fff;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 800;
}

.doc-card.large.translated span {
  background: var(--navy);
}

.doc-card.large h3 {
  text-align: center;
  font-size: 19px;
  margin-top: 20px;
}

.doc-card.large h3 small {
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.translate-arrow {
  color: var(--navy);
  font-size: 35px;
  display: grid;
  gap: 13px;
  place-items: center;
}

/* Pricing */
.pricing {
  background: #fff;
}

.pricing-card {
  position: relative;
  height: 100%;
  padding: 34px 30px 28px;
  border: 1px solid #d9e3ee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(10,43,79,.03);
  transition: .28s ease;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.popular {
  border: 2px solid var(--gold);
  box-shadow: 0 15px 35px rgba(214,161,59,.15);
}

.badge-popular {
  position: absolute;
  top: -2px;
  right: 25px;
  background: var(--gold);
  color: #fff;
  padding: 9px 17px;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
  font-size: 11px;
  font-weight: 800;
}

.price-icon {
  font-size: 48px;
  color: var(--navy);
  display: block;
  margin-bottom: 18px;
}

.pricing-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 9px;
}

.pricing-card p {
  font-size: 13px;
  min-height: 42px;
}

.pricing-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  margin: 22px 0 19px;
  color: var(--navy);
}

.pricing-card ul {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  margin-bottom: 11px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card li i {
  color: var(--navy);
}

.custom-note {
  text-align: center;
  color: var(--navy);
  font-weight: 800;
  margin-top: 22px;
}

/* FAQ */
.faq {
  background: #fff;
}

.faq-accordion .accordion-item {
  border: 1px solid #dfe7f1;
  border-radius: 7px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 800;
  color: var(--navy);
  font-size: 13px;
  padding: 14px 18px;
  box-shadow: none;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f8fbfe;
  color: var(--red);
}

.faq-accordion .accordion-body {
  color: var(--muted);
  font-size: 13px;
}

.bottom-cta {
  margin-top: 36px;
  min-height: 170px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 100%, rgba(255,255,255,.13), transparent 20%),
    linear-gradient(135deg, #082343 0%, #0b3560 100%);
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 34px 48px;
  position: relative;
  overflow: hidden;
}

.bottom-cta::after {
  content: "";
  position: absolute;
  right: 210px;
  bottom: -22px;
  width: 170px;
  height: 95px;
  background: rgba(255,255,255,.12);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cta-icon {
  width: 92px;
  height: 92px;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 42px;
  flex: 0 0 auto;
}

.cta-copy {
  flex: 1;
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.cta-copy p {
  color: rgba(255,255,255,.76);
}

.cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-actions .btn-light {
  color: var(--navy);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #08284b 0%, #061d38 100%);
  color: #c9d7e6;
  padding: 34px 0 0;
}

.footer .brand-mark.small-logo {
  width: 43px;
  height: 43px;
  flex-basis: 43px;
}

.footer strong {
  color: #fff;
  font-size: 14px;
}

.footer p {
  color: #b9c8d8;
  font-size: 13px;
  margin: 18px 0;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.11);
}

.socials a:hover {
  background: var(--red);
}

.footer h4 {
  font-family: "Inter", sans-serif;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.footer li {
  font-size: 12px;
  margin-bottom: 8px;
  color: #cbd6e1;
}

.footer li a {
  color: #cbd6e1;
}

.footer li a:hover {
  color: #fff;
  padding-left: 3px;
}

.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-contact i {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 28px;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #adbdcf;
  font-size: 12px;
}

.footer-bottom a {
  color: #dbe7f2;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow,
  .hero h1,
  .hero-text,
  .hero-actions,
  .hero-social {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp .7s cubic-bezier(.16,.84,.44,1) forwards;
  }

  .hero .eyebrow { animation-delay: .05s; }
  .hero h1 { animation-delay: .14s; }
  .hero-text { animation-delay: .26s; }
  .hero-actions { animation-delay: .36s; }
  .hero-social { animation-delay: .46s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-visual .japan-map,
  .hero-visual .red-circle,
  .hero-visual .doc-stack,
  .hero-visual .quick-card,
  .hero-visual .ship,
  .hero-visual .car,
  .hero-visual .wave-line {
    opacity: 0;
    animation: heroPop .8s cubic-bezier(.16,.84,.44,1) forwards;
  }

  .hero-visual .japan-map { animation-delay: .05s; }
  .hero-visual .wave-line { animation-delay: .1s; }
  .hero-visual .circle-one { animation-delay: .15s; }
  .hero-visual .circle-two { animation-delay: .2s; }
  .hero-visual .ship { animation-delay: .25s; }
  .hero-visual .doc-jp { animation-delay: .35s; }
  .hero-visual .doc-en { animation-delay: .45s; }
  .hero-visual .car { animation-delay: .55s; }
  .hero-visual .quick-card { animation-delay: .65s; }

  @keyframes heroPop {
    from { opacity: 0; transform: translateY(16px) scale(.96); }
    to { opacity: 1; transform: var(--pop-end, translateY(0) scale(1)); }
  }

  .doc-jp { --pop-end: rotate(-5deg); }
  .doc-en { --pop-end: rotate(7deg); }

  .ship {
    animation-name: heroPop, bob;
    animation-duration: .8s, 5s;
    animation-timing-function: cubic-bezier(.16,.84,.44,1), ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-delay: .25s, 1.1s;
    animation-fill-mode: forwards, none;
  }

  .car {
    animation-name: heroPop, bob;
    animation-duration: .8s, 4.2s;
    animation-timing-function: cubic-bezier(.16,.84,.44,1), ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-delay: .55s, 1.4s;
    animation-fill-mode: forwards, none;
  }

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

  .circle-one {
    animation: heroPop .8s cubic-bezier(.16,.84,.44,1) .15s forwards, pulseGlow 3.6s ease-in-out 1s infinite;
  }

  @keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: .95; }
    50% { transform: scale(1.05); opacity: .78; }
  }

  .stamp {
    transition: transform .4s ease;
  }

  .doc-stack:hover .stamp,
  .doc-card:hover .stamp {
    transform: rotate(-6deg) scale(1.1);
  }

  .step-icon {
    transition: transform .35s ease, box-shadow .35s ease;
  }

  .process-step:hover .step-icon {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 0 0 1px #dce6f0, 0 16px 30px rgba(10,43,79,.22);
  }

  .feature-item i {
    transition: transform .3s ease;
  }

  .feature-item:hover i {
    transform: translateY(-3px) scale(1.08);
  }

  .why-item i {
    transition: transform .3s ease;
  }

  .why-item:hover i {
    transform: scale(1.15) rotate(-4deg);
  }

}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 24px rgba(200,31,38,.26);
  display: none;
  z-index: 20;
}

/* Responsive */
@media (max-width: 1199px) {
  .navbar .nav-link {
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 12px;
  }

  .feature-strip {
    grid-template-columns: repeat(5, 1fr);
  }

  .feature-strip .divider {
    display: none;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar .nav-link {
    padding: 10px 0 !important;
  }

  .verify-top {
    width: 100%;
    margin: 10px 0 4px;
  }

  .hero {
    padding-top: 45px;
  }

  .hero-visual {
    margin-top: 10px;
    transform: scale(.9);
    transform-origin: top center;
  }

  .feature-strip {
    transform: translateY(20px);
    grid-template-columns: repeat(2, 1fr);
  }

  .services {
    padding-top: 80px;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line::before {
    display: none;
  }

  .bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .translation-visual {
    gap: 35px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 13px;
  }

  .section-padding {
    padding: 48px 0;
  }

  .section-padding-sm {
    padding: 42px 0;
  }

  h1 {
    font-size: 2.3rem;
  }

  .brand-text {
    font-size: .88rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero-visual {
    height: 430px;
    transform: scale(.72);
    transform-origin: top left;
    width: 138%;
  }

  .quick-card {
    left: 85px;
  }

  .doc-jp {
    right: 185px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .feature-item {
    flex-direction: row;
    text-align: left;
  }

  .service-card h3,
  .service-card p {
    min-height: auto;
  }

  .verify-box {
    padding: 26px 18px;
  }

  .verify-box h2 {
    font-size: 1.8rem;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .translation-visual {
    flex-direction: column;
    min-height: auto;
  }

  .translate-arrow {
    transform: rotate(90deg);
  }

  .bottom-cta {
    padding: 28px 22px;
  }

  .cta-copy h2 {
    font-size: 1.55rem;
  }

  .cta-actions {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    transform: scale(.62);
    width: 160%;
    height: 370px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .feature-item i {
    font-size: 31px;
  }

  .pricing-card h4 {
    font-size: 23px;
  }
}
