/* ============================================================
   Woshida E-Commerce Co., Ltd. — Global Website Stylesheet
   Design: modern corporate, deep navy + gold, fully responsive
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #081527;
  --navy-800: #0b1f3a;
  --navy-700: #10294d;
  --navy-600: #163560;
  --navy-500: #1e4a86;
  --gold-500: #e0a93c;
  --gold-400: #edbd5c;
  --gold-600: #c08e2b;
  --ink: #16233a;
  --ink-soft: #4a5871;
  --muted: #6b7a93;
  --line: #e3e9f2;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-tint: #eef3fa;
  --success: #1e9e63;
  --danger: #d64545;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.18);
  --container: 1180px;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-600);
}

ul {
  list-style: none;
}

::selection {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.22;
  color: var(--navy-800);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.text-center {
  text-align: center;
}

/* ---------- Layout utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 88px;
}

.section-soft {
  background: var(--bg-soft);
}

.section-tint {
  background: var(--bg-tint);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  margin: 14px 0 14px;
}

.section-head p {
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: rgba(224, 169, 60, 0.12);
  border: 1px solid rgba(224, 169, 60, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(224, 169, 60, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(224, 169, 60, 0.45);
  color: var(--navy-900);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  border-color: var(--navy-600);
  color: var(--navy-700);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 21, 39, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand:hover {
  color: #fff;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.brand-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 6px 2px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Language switch ---------- */
.lang-switch {
  position: relative;
  flex-shrink: 0;
}

.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 32px 8px 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lang-switch select:hover {
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, 0.14);
}

.lang-switch select:focus-visible {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(224, 169, 60, 0.28);
}

.lang-switch select option {
  color: var(--ink);
  background: #fff;
}

.lang-switch::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(30, 74, 134, 0.55), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(224, 169, 60, 0.16), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #fff;
  padding: 120px 0 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9), transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 96px;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--gold-400);
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 3.7rem);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--gold-400);
}

.hero p.sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-trust .stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.1;
}

.hero-trust .stat b em {
  font-style: normal;
  color: var(--gold-400);
}

.hero-trust .stat span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero visual */
.hero-visual {
  position: relative;
  padding-bottom: 90px;
}

.globe-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 34px 30px 28px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}

.globe-card .globe-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.globe-card .globe-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(30, 158, 99, 0.25);
}

.float-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 5.5s ease-in-out infinite;
}

.float-card .fc-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--navy-600);
  flex-shrink: 0;
}

.float-card .fc-icon svg {
  width: 22px;
  height: 22px;
}

.float-card b {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--navy-800);
  line-height: 1.25;
}

.float-card span {
  font-size: 0.78rem;
  color: var(--muted);
}

.float-card.fc-1 {
  top: 12%;
  left: -46px;
  animation-delay: 0s;
}

.float-card.fc-2 {
  bottom: 16%;
  right: -30px;
  animation-delay: 2.6s;
}

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

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--navy-800);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-block: 40px;
}

.stats-grid .stat {
  text-align: center;
  padding: 8px 12px;
}

.stats-grid .stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--gold-400);
  line-height: 1.1;
}

.stats-grid .stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 169, 60, 0.5);
}

.service-card .sc-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(224, 169, 60, 0.16), rgba(224, 169, 60, 0.05));
  color: var(--gold-600);
  margin-bottom: 22px;
}

.service-card .sc-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .sc-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .sc-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.service-card:hover .sc-link svg {
  transform: translateX(4px);
}

/* ---------- Feature list ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}

.feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature .f-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--navy-600);
}

.feature .f-icon svg {
  width: 22px;
  height: 22px;
}

.feature h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.3rem;
  color: rgba(11, 31, 58, 0.08);
  line-height: 1;
}

.step h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(224, 169, 60, 0.18);
  margin-bottom: 18px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial .quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold-500);
  margin-bottom: 18px;
}

.testimonial blockquote {
  font-size: 0.96rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 22px;
  flex-grow: 1;
}

.testimonial .t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial .t-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial .t-author b {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-800);
}

.testimonial .t-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 320px at 90% 20%, rgba(224, 169, 60, 0.22), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: #fff;
  border-radius: 24px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(30, 74, 134, 0.5), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 92px 0 84px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9), transparent 75%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--gold-400);
  margin-bottom: 20px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
  align-items: center;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

.breadcrumb span.sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- About page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin: 14px 0 18px;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.about-copy ul.checks {
  margin-top: 22px;
}

.about-copy ul.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
}

.about-copy ul.checks li svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.about-visual {
  position: relative;
}

.about-visual .av-panel {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  color: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.about-visual .av-panel h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.about-visual .av-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.av-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.av-mini-stats .av-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
}

.av-mini-stats .av-stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold-400);
}

.av-mini-stats .av-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Registration / credentials card */
.reg-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.reg-shield {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(224, 169, 60, 0.18), rgba(224, 169, 60, 0.05));
  color: var(--gold-600);
  margin-bottom: 26px;
}

.reg-shield svg {
  width: 32px;
  height: 32px;
}

.reg-list {
  width: 100%;
}

.reg-list li {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  align-items: baseline;
}

.reg-list li:last-child {
  border-bottom: none;
}

.reg-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.reg-value {
  color: var(--ink);
  font-weight: 600;
  word-break: break-word;
}

.reg-placeholder {
  color: #9aa7bd;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.reg-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.84rem;
  color: var(--muted);
  background: var(--bg-tint);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
}

.reg-note svg {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-card .v-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(224, 169, 60, 0.18), rgba(224, 169, 60, 0.06));
  color: var(--gold-600);
}

.value-card .v-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--navy-500));
  opacity: 0.5;
}

.timeline li {
  position: relative;
  padding: 0 0 36px 60px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(224, 169, 60, 0.3);
}

.timeline li time {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-600);
  letter-spacing: 0.04em;
}

.timeline li h4 {
  font-size: 1.08rem;
  margin: 4px 0 6px;
}

.timeline li p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- Services page ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.service-detail.reverse .sd-visual {
  order: 2;
}

.sd-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 14px 0 14px;
}

.sd-body > p {
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.sd-body h4.sub {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--navy-700);
  margin: 24px 0 14px;
}

.sd-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.95rem;
}

.sd-list li svg {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
  margin-top: 5px;
}

.sd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sd-tags span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-600);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}

.sd-visual {
  position: relative;
}

.sd-visual .sd-panel {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  color: #fff;
  border-radius: 24px;
  padding: 38px 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.sd-panel::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(224, 169, 60, 0.18);
  top: -60px;
  right: -60px;
}

.sd-panel .sd-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--gold-400);
  margin-bottom: 20px;
}

.sd-panel .sd-icon svg {
  width: 32px;
  height: 32px;
}

.sd-panel h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.sd-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.sd-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sd-metrics .sd-metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px;
}

.sd-metrics .sd-metric b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--gold-400);
}

.sd-metrics .sd-metric span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 14px 0 14px;
}

.contact-info > p {
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list li .i-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--navy-600);
  flex-shrink: 0;
}

.info-list li .i-icon svg {
  width: 22px;
  height: 22px;
}

.info-list li b {
  display: block;
  font-family: var(--font-head);
  font-size: 0.98rem;
  color: var(--navy-800);
  margin-bottom: 2px;
}

.info-list li p {
  font-size: 0.9rem;
  color: var(--muted);
}

.info-list li a {
  color: var(--navy-600);
  font-weight: 500;
}

.hours-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--muted);
  background: var(--bg-tint);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.hours-note svg {
  width: 20px;
  height: 20px;
  color: var(--gold-600);
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px 36px;
}

.contact-form-wrap h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.contact-form-wrap .form-intro {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.form-group label .req {
  color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(224, 169, 60, 0.18);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--danger);
}

.form-error-msg {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 6px;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 6px 0 22px;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: rgba(30, 158, 99, 0.08);
  border: 1px solid rgba(30, 158, 99, 0.3);
  color: #166a44;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success.show {
  display: flex;
}

.form-error-box {
  background: rgba(214, 69, 69, 0.08);
  border: 1px solid rgba(214, 69, 69, 0.35);
  color: #a03030;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-800);
}

.faq-q .faq-chevron {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-tint);
  color: var(--navy-600);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-q .faq-chevron svg {
  width: 14px;
  height: 14px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold-500);
  color: var(--navy-900);
}

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

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-col ul li a:hover {
  color: var(--gold-400);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.footer-contact li svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .legal {
  display: flex;
  gap: 20px;
}

.footer-bottom .legal a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom .legal a:hover {
  color: var(--gold-400);
}

/* ---------- Legal modal ---------- */
.legal-modal[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 21, 39, 0.68);
  backdrop-filter: blur(6px);
}

.legal-modal__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  padding: 34px;
  outline: none;
}

.legal-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.legal-modal__close:hover {
  color: var(--gold-600);
  border-color: rgba(224, 169, 60, 0.5);
}

.legal-modal__eyebrow {
  margin: 0 48px 8px 0;
  color: var(--gold-600);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.legal-modal__panel h2 {
  margin: 0 48px 18px 0;
  color: var(--navy-900);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.legal-modal__body {
  display: grid;
  gap: 18px;
}

.legal-modal__body h3 {
  margin-bottom: 6px;
  color: var(--navy-800);
  font-size: 1rem;
  line-height: 1.35;
}

.legal-modal__body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}

body.legal-modal-open {
  overflow: hidden;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy {
    padding-bottom: 24px;
  }
  .hero-visual {
    padding-bottom: 30px;
    max-width: 560px;
  }
  .float-card.fc-1 {
    left: -10px;
  }
  .float-card.fc-2 {
    right: -10px;
  }
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
  .about-grid,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-detail.reverse .sd-visual {
    order: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .legal-modal {
    padding: 14px;
  }

  .legal-modal__panel {
    max-height: calc(100vh - 28px);
    padding: 26px 20px;
  }

  .legal-modal__close {
    top: 12px;
    right: 12px;
  }

  .legal-modal__panel h2 {
    margin-right: 44px;
    font-size: 1.55rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 64px;
  }
  .nav-toggle {
    display: flex;
  }
  .lang-switch select {
    padding: 7px 28px 7px 12px;
    font-size: 0.8rem;
  }
  .lang-switch::after {
    right: 12px;
  }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav-link {
    padding: 13px 4px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin-top: 14px;
  }
  .hero {
    padding-top: 80px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .services-grid,
  .testimonials-grid,
  .features-grid,
  .steps-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .reg-card {
    padding: 28px 22px;
  }
  .reg-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }
  .cta-band {
    padding: 44px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .float-card.fc-1,
  .float-card.fc-2 {
    position: static;
    margin-top: 14px;
    animation: none;
  }
  .hero-visual {
    max-width: 100%;
  }
  .globe-card {
    padding: 26px 20px;
  }
}
