:root {
  --red: #c53032;
  --red-deep: #a01f26;
  --navy: #1e2c44;
  --navy-deep: #0f1b2d;
  --cream: #f7f2e8;
  --sand: #eadfcb;
  --ink: #2f3137;
  --accent-gold: #c8a45d;
  --shadow: 0 16px 48px rgba(15, 27, 45, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, #fdfbf7 0%, #f7f2e8 60%, #f0e7d8 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.65;
  font-weight: 500;
}

h1, h2, h3, h4 {
  color: var(--navy);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
}

p {
  margin: 0 0 14px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px clamp(16px, 4vw, 54px) 120px;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0, transparent 45%),
              linear-gradient(135deg, var(--red) 0%, var(--red-deep) 38%, var(--navy) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  background-image:
    radial-gradient(700px 700px at 80% 10%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(1000px 1000px at 10% 80%, rgba(255, 255, 255, 0.06), transparent 60%);
  mix-blend-mode: screen;
}

.hero::after {
  background: url("data:image/svg+xml,%3Csvg width='1600' height='260' viewBox='0 0 1600 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 120L80 140C160 160 320 200 480 200C640 200 800 160 960 140C1120 120 1280 120 1440 120C1600 120 1760 120 1840 120L1840 260L0 260Z' fill='%23f7f2e8'/%3E%3C/svg%3E") bottom center / cover no-repeat;
  opacity: 0.7;
}

.sub-hero {
  padding: 72px clamp(16px, 4vw, 54px) 60px;
  background: linear-gradient(135deg, rgba(197, 48, 50, 0.08) 0%, rgba(30, 44, 68, 0.12) 100%), #fff;
  color: var(--navy);
}

.sub-hero .hero-copy h1 {
  color: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 16px;
  margin: -12px clamp(18px, 6vw, 72px) 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 241, 228, 0.96) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid #e6dcc8;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(15, 27, 45, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  color: #fff;
}

.brand-logo {
  height: 100px;
  width: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo.small {
  height: 90px;
  padding: 10px;
}

.footer-logo {
  padding: 8px;
  background: #fffdfa;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 27, 45, 0.1);
  border: 1px solid #e6dcc8;
}

.lang-toggle {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #d8cdbb;
  background: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--red), var(--navy));
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 27, 45, 0.18);
  border-color: transparent;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--navy) 0 45%, var(--red) 45% 100%);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 6px;
  background: var(--cream);
  bottom: 12px;
  left: 10px;
  transform: rotate(-12deg);
  opacity: 0.75;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.brand-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0e9dc;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #d8cdbb;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 27, 45, 0.08);
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.nav-link {
  position: relative;
  padding: 10px 6px 8px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(135deg, var(--red), var(--navy));
  border-radius: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
  gap: clamp(24px, 5vw, 60px);
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
}

.highlight-text {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15));
  padding: 0 6px;
  border-radius: 8px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 14px 0 6px;
  display: grid;
  gap: 8px;
  color: #f4ede1;
  font-size: 1.02rem;
}

.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  margin-right: 8px;
  font-weight: 800;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 12px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.hero .kicker {
  color: #f9dd9b;
}

.lede {
  font-size: 1.02rem;
  color: #f6efe6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 22px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn.full {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #f4ede1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
}

.hero-visual {
  display: none;
}

main {
  padding: 40px clamp(16px, 4vw, 54px) 80px;
}

.panel {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 34px);
  margin-bottom: 32px;
  border: 1px solid #e5dcca;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.panel-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.panel-lede {
  font-size: 1.02rem;
  color: #44423e;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #ece3d2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.card.highlight {
  background: linear-gradient(145deg, #fff5ec, #ffe9dd);
  border-color: #f6d5c0;
  color: #5a311d;
}

.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }

.card ul {
  padding-left: 18px;
  margin: 0;
  color: #4a4743;
}

.services {
  background: linear-gradient(180deg, #fff 0%, #f9f3e7 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e8dfd1;
  box-shadow: 0 12px 30px rgba(15, 27, 45, 0.08);
  display: grid;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 27, 45, 0.12);
}

.service-card ul {
  padding-left: 18px;
  margin: 0;
  color: #514d46;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: var(--shadow);
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.tick-list li {
  position: relative;
  padding-left: 26px;
  color: #413c35;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
}

.contact {
  background: linear-gradient(135deg, rgba(197, 48, 50, 0.05), rgba(30, 44, 68, 0.07)), #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.contact-card,
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e7ddcc;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 12px 0;
}

.contact-list span:first-child {
  display: inline-block;
  width: 70px;
  font-weight: 700;
  color: var(--navy);
}

.contact-list a {
  color: var(--red-deep);
  font-weight: 700;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-badges span {
  background: #f2e8d8;
  color: #453c32;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 600;
}

.map-frame {
  margin-top: 12px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0d5c3;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.map-frame iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 700;
  color: var(--navy);
  display: grid;
  gap: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e4d9c9;
  font: inherit;
  background: #fffdfa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(197, 48, 50, 0.1);
}

.form-hint {
  margin: 0;
  color: #6a6257;
  font-size: 14px;
}

.footer {
  padding: 24px clamp(16px, 4vw, 54px) 36px;
  background: #0f1b2d;
  color: #e9e3d7;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: #f1e8d8;
  font-weight: 700;
}

.footer-note {
  color: #c8c0b1;
  font-size: 14px;
}

.brand-mark.small {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 20;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reviews {
  background: linear-gradient(135deg, rgba(30, 44, 68, 0.05), rgba(197, 48, 50, 0.05)), #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e5dcca;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.35s ease;
  opacity: 0;
  transform: translate(-50%, 12px);
  position: absolute;
  left: 50%;
  top: 0;
  width: min(760px, calc(100% - 80px));
  z-index: 0;
  pointer-events: none;
}

.review-card header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.badge-soft {
  padding: 6px 10px;
  border-radius: 10px;
  background: #f2e8d8;
  color: #3f3a35;
  font-weight: 700;
}

.meta {
  color: #6a655f;
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: center;
}

.visual-block {
  position: relative;
  min-height: 260px;
  border-radius: 20px;
  background: #0b1728;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}

.visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  z-index: 0;
}

.visual-block::after,
.visual-block::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.visual-block::before {
  border-radius: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.55) 100%);
}

.visual-block::after {
  width: 220px;
  height: 220px;
  top: -40px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 60%);
}

.visual-title {
  position: relative;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  z-index: 2;
}

.stat-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  z-index: 2;
}

.about-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.about-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
  box-shadow: 0 16px 38px rgba(15, 27, 45, 0.12);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-end;
  padding: 12px;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
}

.stat-pill {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.icon-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 12px;
  background: #fffdfa;
  border: 1px solid #e8dfd1;
  box-shadow: 0 8px 22px rgba(15, 27, 45, 0.05);
}

.mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.animate-left {
  opacity: 0;
  animation: fadeLeft 0.7s ease forwards;
}

.animate-right {
  opacity: 0;
  animation: fadeRight 0.7s ease forwards;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.review-card.active {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
  z-index: 1;
}

.review-slider {
  position: relative;
  padding: 16px 16px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30, 44, 68, 0.04), rgba(197, 48, 50, 0.06));
  overflow: visible;
}

.review-track {
  position: relative;
  min-height: 240px;
}

.review-controls {
  position: absolute;
  top: 50%;
  left: -32px;
  right: -32px;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 5;
}

.review-controls .slider-btn {
  pointer-events: auto;
  box-shadow: 0 10px 24px rgba(15, 27, 45, 0.12);
  position: relative;
  z-index: 5;
}

.review-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.review-slider .dot {
  width: 10px;
  height: 10px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 44, 68, 0.08), rgba(197, 48, 50, 0.08));
  color: #2f3137;
  font-weight: 700;
  border: 1px solid #e5dcca;
  box-shadow: 0 8px 22px rgba(15, 27, 45, 0.08);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.target-card {
  background: #fff;
  border: 1px solid #e8dfd1;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(15, 27, 45, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.target-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 27, 45, 0.12);
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.animate-up:nth-child(2) { animation-delay: 0.05s; }
.animate-up:nth-child(3) { animation-delay: 0.1s; }
.animate-up:nth-child(4) { animation-delay: 0.15s; }

.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.soft-card {
  background: linear-gradient(145deg, #fff9f2, #f4ebdd);
  border: 1px solid #e7ddcc;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(15, 27, 45, 0.08);
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
}

.soft-card h3, .soft-card h4 {
  margin: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 12px;
  background: #f0e6d6;
  color: #3c342c;
  font-weight: 700;
  border: 1px solid #e4d9c7;
  box-shadow: 0 8px 22px rgba(15, 27, 45, 0.05);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.team-list li {
  padding-left: 4px;
  color: #3f3a35;
}

.team-slider {
  position: relative;
  padding: 20px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 20%, rgba(197, 48, 50, 0.08), transparent 48%),
              radial-gradient(circle at 70% 40%, rgba(30, 44, 68, 0.1), transparent 52%),
              #fffaf0;
  border: 1px solid #e4d8c6;
  box-shadow: 0 14px 38px rgba(15, 27, 45, 0.08);
  overflow: visible;
  display: grid;
  place-items: center;
}

.team-track {
  position: relative;
  min-height: 220px;
  width: min(880px, 100%);
  margin: 0 auto;
}

.team-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e6dcc8;
  box-shadow: 0 18px 38px rgba(15, 27, 45, 0.14);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  margin: 0 auto;
  z-index: 0;
}

.team-card.active {
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.avatar-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2c44, #c53032);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 14px 32px rgba(15, 27, 45, 0.22);
  position: relative;
  isolation: isolate;
}

.avatar-ashri {
  background-image: url("ashri.jpeg");
}

.avatar-rosita {
  background-image: url("rosita.jpeg");
}

.avatar-fitri {
  background-image: url("fitri.jpeg");
}

.avatar-riska {
  background-image: url("riska.jpeg");
}

.avatar-cicin {
  background-image: url("cicin.jpeg");
}

.avatar-agung {
  background-image: url("agung.jpeg");
}

.avatar-photo::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  /* background: conic-gradient(from 120deg, var(--red), var(--navy), var(--red)); */
  opacity: 0.35;
  z-index: -1;
}

.team-meta h3 {
  margin: 6px 0 6px;
}

.team-meta p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 28px rgba(10, 24, 21, 0.25);
  z-index: 20;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(10, 24, 21, 0.32);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
  }
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: -4px;
  right: -4px;
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
  pointer-events: none;
  transform: translateY(-50%);
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e0d5c3;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 27, 45, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  pointer-events: auto;
}

.slider-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 27, 45, 0.12);
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #d9cdb8;
  background: #f5ebdd;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dot.active {
  background: linear-gradient(135deg, var(--red), var(--navy));
  transform: scale(1.1);
  border-color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e8dfd1;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(15, 27, 45, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 27, 45, 0.12);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #e8dfd1;
  box-shadow: 0 10px 28px rgba(15, 27, 45, 0.08);
}

.step-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

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

@media (max-width: 720px) {
  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    display: none;
    order: 4;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .brand {
    order: 1;
  }

  .lang-toggle {
    order: 3;
  }

  .team-track {
    min-height: 220px;
  }

  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
    width: calc(100% - 32px);
    left: 50%;
    padding: 12px;
    transform: translate(-50%, 8px);
  }

  .avatar-photo {
    margin: 0 auto;
    width: 68px;
    height: 68px;
  }

  .slider-controls {
    left: 4px;
    right: 4px;
    padding: 0 4px;
  }

  .team-slider {
    overflow: hidden;
    padding: 16px;
  }

  .team-card.active {
    transform: translate(-50%, 0);
  }

  .review-card {
    width: calc(100% - 24px);
    left: 50%;
  }

  .review-track {
    min-height: 280px;
  }

  .hero {
    padding-bottom: 80px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .badge {
    width: 100%;
    justify-content: flex-start;
  }
}
