/* ==========================================================================
   ShineLink Global — Global Stylesheet
   ========================================================================== */

:root {
  --navy: #142b52;
  --navy-2: #1c3868;
  --navy-3: #2f5aa3;
  --gold: #f2b705;
  --gold-light: #ffd23f;
  --text: #1f2733;
  --muted: #5c6b7a;
  --bg: #f7f8fa;
  --white: #ffffff;
  --line: #e6e9ee;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(20, 43, 82, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 43, 82, 0.16);
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Noto Sans JP", "Noto Sans SC", -apple-system, "Hiragino Sans", "Yu Gothic", "PingFang SC", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.4; font-weight: 700; letter-spacing: 0.01em; }
p { margin: 0; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  white-space: nowrap;
}

.brand-logo {
  height: 72px;
  width: auto;
  display: block;
}

.brand-logo-chip {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 16px;
}
.brand-logo-chip .brand-logo { height: 60px; }

@media (max-width: 720px) {
  .site-header .wrap { height: 80px; }
  .brand-logo { height: 52px; }
  .brand-logo-chip .brand-logo { height: 44px; }
}

.brand-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}

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

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--navy);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: #fff;
}

.lang-switch a {
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.lang-switch a.active {
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: 0.2s;
}

.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 500px at 15% -10%, #2f5aa3 0%, transparent 60%),
              linear-gradient(135deg, var(--navy) 0%, #0c1c38 60%, #0c1c38 100%);
  color: #fff;
  padding: 110px 0 100px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.25), transparent 70%);
}

.hero .wrap { position: relative; z-index: 2; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(228, 199, 119, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
  max-width: 780px;
  white-space: pre-line;
}

.hero p.lead {
  margin-top: 22px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(242,183,5,0.35); }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

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

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 640px;
}

.stat-card {
  position: relative;
  padding: 24px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: 0.25s;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.28), transparent 70%);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 183, 5, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.stat-icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.stat-icon svg { width: 20px; height: 20px; stroke-width: 2; }

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.hero-flex {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art svg { width: 100%; max-width: 460px; height: auto; }

.hero-art .orbit-dot {
  animation: orbitPulse 3.6s ease-in-out infinite;
}
.hero-art .orbit-dot:nth-child(2) { animation-delay: .6s; }
.hero-art .orbit-dot:nth-child(3) { animation-delay: 1.2s; }
.hero-art .link-line { stroke-dasharray: 6 7; animation: dashMove 18s linear infinite; }

@keyframes orbitPulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}
@keyframes dashMove {
  to { stroke-dashoffset: -260; }
}

@media (max-width: 900px) {
  .hero-flex { grid-template-columns: 1fr; }
  .hero-art { order: -1; margin-bottom: 10px; }
  .hero-art svg { max-width: 300px; }
}

.hero-art-sm svg { max-width: 300px; }
.hero-art-sm .light-rays line { animation: rayFade 4.5s ease-in-out infinite; }
.hero-art-sm .light-rays line:nth-child(2) { animation-delay: .3s; }
.hero-art-sm .light-rays line:nth-child(3) { animation-delay: .6s; }
.hero-art-sm .light-rays line:nth-child(4) { animation-delay: .9s; }
.hero-art-sm .light-rays line:nth-child(5) { animation-delay: 1.2s; }
.hero-art-sm .light-rays line:nth-child(6) { animation-delay: 1.5s; }
.hero-art-sm .light-rays line:nth-child(7) { animation-delay: 1.8s; }

@keyframes rayFade {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}

@media (max-width: 900px) {
  .hero-art-sm svg { max-width: 240px; }
}

/* ---------- Dot-grid texture ---------- */
.dot-grid {
  position: relative;
}
.dot-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 100% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 100% at 100% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.dot-grid .wrap { position: relative; z-index: 1; }

/* ---------- Icon glyphs (SVG icons inside .icon badges) ---------- */
.card .icon svg,
.post-thumb .thumb-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Post thumbnail pattern ---------- */
.post-thumb {
  overflow: hidden;
}
.post-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 18px);
}
.post-thumb .thumb-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.post-thumb .thumb-icon svg { width: 26px; height: 26px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Page Header (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0c1c38 100%);
  color: #fff;
  padding: 70px 0 60px;
}

.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(26px, 3.6vw, 38px); }
.page-hero p { margin-top: 16px; color: rgba(255,255,255,0.75); max-width: 640px; font-size: 15.5px; }

.breadcrumb {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
section.tight { padding: 64px 0; }
.section-alt { background: #fff; }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head .eyebrow { color: var(--navy-3); border-color: rgba(20,43,82,0.15); background: rgba(20,43,82,0.04); }
.section-head h2 { font-size: clamp(24px, 3vw, 32px); color: var(--navy); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 15.5px; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

.card .icon { margin-bottom: 20px; }

.card h3 { font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 14.5px; }

.card ul.bullets { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.card ul.bullets li {
  font-size: 13.5px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.card ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.card-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-3);
}

/* ---------- Service Detail Blocks ---------- */
.service-block {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.service-block .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy-3);
  background: rgba(22, 56, 95, 0.07);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.service-block-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.service-block-head h2, .service-block-head h3 { margin-bottom: 0; }

.icon-sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.icon-sm svg { width: 20px; height: 20px; }

.service-block h2 { font-size: 22px; color: var(--navy); }
.service-block > p { color: var(--muted); font-size: 15px; margin-bottom: 22px; max-width: 800px; }

.service-block h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.service-block .sub {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin-top: 18px;
}

.service-block .sub h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.service-block .sub p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.check-grid li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.check-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}

.note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--muted);
  background: rgba(242, 183, 5, 0.08);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: 6px;
}

.more-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.85;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #0c1c38);
  border-top: 3px solid var(--gold);
  color: #fff;
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner h2 { font-size: 24px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 10px; font-size: 14.5px; }

/* ---------- Table (Company Profile) ---------- */
.profile-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.profile-table tr { border-bottom: 1px solid var(--line); }
.profile-table tr:last-child { border-bottom: none; }

.profile-table th, .profile-table td {
  text-align: left;
  padding: 20px 28px;
  font-size: 14.5px;
  vertical-align: top;
}

.profile-table th {
  width: 200px;
  color: var(--muted);
  font-weight: 600;
  background: var(--bg);
}

.profile-table td { color: var(--text); }

/* ---------- Column (Blog) ---------- */
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.post-thumb {
  height: 150px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-thumb span {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.post-body { padding: 24px 24px 28px; }

.post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.post-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-3);
  background: rgba(22,56,95,0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

.post-date { font-size: 12px; color: var(--muted); }

.post-body h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.post-body p { font-size: 13.5px; color: var(--muted); }

.coming-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(242,183,5,0.9);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

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

.contact-info {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
}

.contact-info h3 { font-size: 18px; margin-bottom: 18px; }
.contact-info p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 26px; }

.contact-info dl { display: flex; flex-direction: column; gap: 20px; }
.contact-info dt { font-size: 11.5px; color: var(--gold-light); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info dd { margin: 0; font-size: 14.5px; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row label .req { color: #c0392b; margin-left: 4px; font-weight: 700; font-size: 11px; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242,183,5,0.15);
}

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

.form-hint { font-size: 12px; color: var(--muted); margin-top: 14px; }

.form-result {
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 16px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  border-radius: 8px;
  transition: 0.25s;
}
.form-result:empty { margin-top: 0; }
.form-result.sending,
.form-result.success,
.form-result.error {
  max-height: 100px;
  padding: 12px 16px;
  margin-bottom: 4px;
}
.form-result.sending {
  color: var(--navy-3);
  background: rgba(47, 90, 163, 0.08);
  border: 1px solid rgba(47, 90, 163, 0.25);
}
.form-result.success {
  color: #1c7a4b;
  background: rgba(28, 122, 75, 0.08);
  border: 1px solid rgba(28, 122, 75, 0.3);
}
.form-result.error {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.28);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #081524;
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.footer-grid ul { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { font-size: 13.5px; }
.footer-grid a:hover { color: #fff; }

.footer-brand p { margin-top: 16px; font-size: 13.5px; line-height: 1.9; max-width: 280px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: 12.5px;
}

.footer-lang { display: flex; gap: 14px; }
.footer-lang a.active { color: var(--gold-light); font-weight: 700; }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 80px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 20px 24px 28px; box-shadow: var(--shadow-lg); transform: translateY(-130%); opacity: 0; transition: 0.25s; gap: 20px; }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav ul { flex-direction: column; gap: 18px; }
  .nav-toggle { display: flex; }
  .lang-switch { align-self: flex-start; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 70px; }
  .hero-stats { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .service-block { padding: 28px 22px; }
  .check-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 28px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .profile-table th { width: 120px; padding: 16px; font-size: 13px; }
  .profile-table td { padding: 16px; font-size: 13.5px; }
}

/* ---------- Language Landing (root index) ---------- */
.lang-landing {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0c1c38 60%, #0c1c38 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lang-landing-inner { text-align: center; max-width: 560px; }
.lang-landing-logo { margin: 0 auto 28px; padding: 14px 22px; }
.brand-logo-stacked { height: 84px; }
.lang-landing h1 { font-size: 26px; margin-bottom: 10px; }
.lang-landing p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 36px; }

.lang-options {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.lang-option {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 22px 30px;
  min-width: 140px;
  transition: 0.2s;
}

.lang-option:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); transform: translateY(-3px); }
.lang-option strong { display: block; font-size: 16px; margin-bottom: 4px; }
.lang-option span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ---------- Business page: visual panels + overview strip ---------- */
.biz-overview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.biz-overview a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 18px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  transition: 0.2s;
}
.biz-overview a:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.biz-overview .icon { width: 40px; height: 40px; margin-bottom: 0; }

.service-block-grid {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 32px;
  align-items: start;
}

.service-visual {
  position: relative;
  height: 168px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-visual .visual-icon {
  width: 56px;
  height: 56px;
  color: var(--gold-light);
  position: relative;
  z-index: 2;
}
.service-visual .visual-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }

.service-visual .visual-tag {
  position: absolute;
  right: -8px;
  bottom: -26px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  z-index: 1;
  font-family: "Inter", sans-serif;
}

.service-visual .visual-rays {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 210, 63, 0.32), transparent 55%),
    repeating-conic-gradient(from 0deg, rgba(255, 210, 63, 0.10) 0deg 4deg, transparent 4deg 24deg);
  animation: raysSpin 26s linear infinite;
  pointer-events: none;
}

@keyframes raysSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .service-visual .visual-rays { inset: -60%; }
}

.service-content h2 { margin-bottom: 14px; }

@media (max-width: 900px) {
  .biz-overview { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .biz-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-block-grid { grid-template-columns: 1fr; }
  .service-visual { height: 88px; flex-direction: row; justify-content: flex-start; padding: 0 22px; gap: 16px; }
  .service-visual .visual-tag { font-size: 56px; right: 12px; bottom: -12px; }
  .service-content h2 { margin-top: 4px; }
}
