:root {
  --ink: #101827;
  --muted: #59677a;
  --line: rgba(16, 24, 39, 0.1);
  --surface: #ffffff;
  --soft: #f5f7fa;
  --blue: #075a9c;
  --cyan: #11a7b8;
  --orange: #f36b21;
  --green: #148a68;
  --navy: #091426;
  --slate: #172337;
  --shadow: 0 18px 42px rgba(16, 24, 39, 0.1);
  --shadow-soft: 0 10px 28px rgba(16, 24, 39, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: var(--soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 7px clamp(16px, 3.6vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(16, 24, 39, 0.045);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 23px);
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(13, 22, 40, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.site-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  color: var(--blue);
  background: rgba(7, 90, 156, 0.07);
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #e24f1e);
  box-shadow: 0 10px 22px rgba(244, 122, 32, 0.22);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff8528, #e24f1e);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  --hero-height: clamp(640px, calc(100vh - 68px), 800px);
  position: relative;
  padding: 0;
  background: var(--navy);
  color: #fff;
  overflow: visible;
}

.hero-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.hero-slide {
  position: relative;
  display: none;
  align-items: center;
  height: var(--hero-height);
  overflow: hidden;
}

.hero-slide.is-active {
  display: grid;
}

.hero-controls {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 22px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.anniversary-slide {
  background:
    linear-gradient(90deg, rgba(9, 20, 38, 0.98) 0%, rgba(9, 20, 38, 0.9) 47%, rgba(9, 20, 38, 0.72) 100%),
    radial-gradient(circle at 76% 38%, rgba(17, 167, 184, 0.22), transparent 31%),
    linear-gradient(135deg, #091426 0%, #10223a 55%, #123a54 100%);
}

.anniversary-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  opacity: 0.68;
}

.anniversary-hero {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 0.92fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 5vw, 72px) clamp(22px, 5vw, 72px);
}

.anniversary-copy {
  max-width: 620px;
}

.anniversary-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(244, 122, 32, 0.42);
  border-radius: 999px;
  background: rgba(244, 122, 32, 0.1);
  color: #ff9c4a;
}

.anniversary-copy h1 {
  max-width: 640px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1.04;
  text-wrap: balance;
}

.anniversary-copy .hero-text {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.15vw, 20px);
}

.anniversary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.anniversary-stage {
  position: relative;
  min-height: min(43vw, 510px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 36%, rgba(17, 167, 184, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028));
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.anniversary-stage::before,
.anniversary-stage::after {
  content: "";
  position: absolute;
  inset: 70px 58px 124px;
  border: 1px solid rgba(19, 181, 200, 0.36);
  border-radius: 999px;
}

.anniversary-stage::after {
  inset: 104px 96px 160px;
  border-color: rgba(244, 122, 32, 0.36);
}

.anniversary-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  width: 88px;
  height: 88px;
  object-fit: contain;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.anniversary-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  border: 2px solid rgba(244, 122, 32, 0.72);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(244, 122, 32, 0.24), rgba(7, 19, 37, 0.84));
  text-align: center;
}

.anniversary-badge span {
  color: #fff;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.82;
}

.anniversary-badge strong {
  color: #f8c848;
  font-size: 13px;
  text-transform: uppercase;
}

.anniversary-mascot {
  position: absolute;
  top: 43%;
  left: 50%;
  z-index: 2;
  width: min(26vw, 280px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.34));
}

.reward-panel,
.draw-panel {
  position: absolute;
  z-index: 3;
  right: 30px;
  left: 30px;
  border: 1px solid rgba(19, 181, 200, 0.42);
  border-radius: 8px;
  background: rgba(7, 15, 28, 0.82);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.reward-panel {
  right: 26px;
  bottom: 108px;
  left: 26px;
  width: auto;
  padding: 16px;
}

.reward-panel p {
  margin-bottom: 12px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

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

.reward-grid span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(19, 181, 200, 0.32);
  border-radius: 8px;
  color: #f8c848;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.draw-panel {
  right: 26px;
  bottom: 26px;
  left: 26px;
  width: auto;
  display: grid;
  gap: 4px;
  padding: 17px 20px;
  border-color: rgba(244, 122, 32, 0.56);
}

.draw-panel strong {
  color: #f8c848;
  font-size: 20px;
}

.draw-panel span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.hero-dot {
  width: 38px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--orange);
}

.hero-grid {
  width: min(1220px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: clamp(22px, 3.5vw, 46px) clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(38px, 4.9vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.hero-text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #e24f1e);
  box-shadow: 0 12px 30px rgba(244, 122, 32, 0.28);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 24px 0 0;
}

.quick-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.quick-stats dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
}

.quick-stats dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.hero-panel {
  position: relative;
  min-height: min(44vw, 420px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 16px);
  transform: rotate(-5deg);
}

.anniversary-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(270px, 70vw);
  height: min(270px, 70vw);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(244, 122, 32, 0.26), transparent 58%),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.anniversary-mark strong {
  display: block;
  color: #fff;
  font-size: clamp(76px, 10vw, 118px);
  line-height: 0.85;
}

.anniversary-mark span {
  display: block;
  max-width: 130px;
  margin-top: -10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-card {
  position: absolute;
  z-index: 4;
  width: min(240px, 48vw);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(7, 19, 37, 0.72);
  color: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.signal-card span {
  display: inline-block;
  width: 36px;
  height: 6px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.signal-card strong {
  display: block;
  line-height: 1.2;
}

.signal-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.signal-card-top {
  top: 28px;
  right: 4px;
}

.signal-card-bottom {
  bottom: 18px;
  left: 6px;
}

.tech-orbit {
  position: relative;
  min-height: min(44vw, 420px);
  display: grid;
  place-items: center;
}

.tech-orbit::before,
.tech-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(19, 181, 200, 0.44);
  border-radius: 999px;
}

.tech-orbit::before {
  width: min(86vw, 460px);
  height: min(86vw, 460px);
}

.tech-orbit::after {
  width: min(70vw, 340px);
  height: min(70vw, 340px);
  border-color: rgba(244, 122, 32, 0.42);
}

.tech-orbit img {
  position: relative;
  z-index: 2;
  width: min(58vw, 285px);
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.34));
}

.tech-orbit span {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.tech-orbit span:nth-of-type(1) { top: 70px; left: 18px; }
.tech-orbit span:nth-of-type(2) { top: 128px; right: 0; }
.tech-orbit span:nth-of-type(3) { bottom: 116px; left: 0; }
.tech-orbit span:nth-of-type(4) { bottom: 58px; right: 28px; }

.section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.intro-band,
.about-section {
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.about-header {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.about-header h2 {
  max-width: 860px;
}

.about-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
}

.about-lead {
  display: grid;
  gap: 20px;
}

.shop-photo {
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #e9eef3, #f7fbff),
    repeating-linear-gradient(90deg, rgba(11, 90, 169, 0.06) 0 1px, transparent 1px 24px);
  box-shadow: var(--shadow-soft);
}

.shop-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.about-copy h3 {
  margin: -6px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
}

.about-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.about-capabilities span {
  padding: 7px 10px;
  border: 1px solid rgba(11, 90, 169, 0.12);
  border-radius: 999px;
  background: rgba(11, 90, 169, 0.06);
  color: #23415d;
  font-size: 13px;
  font-weight: 800;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.about-summary {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(11, 90, 169, 0.12);
  line-height: 1.55;
}

.about-service-list {
  display: grid;
  gap: 10px;
}

.about-service-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 90, 169, 0.12);
  border-radius: 0;
  background: transparent;
}

.about-service-list div:last-child {
  border-bottom: 0;
}

.about-mascot-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 10px 12px;
  border: 1px solid rgba(11, 90, 169, 0.1);
  border-radius: 8px;
  background: #fff;
}

.about-mascot-line img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.about-mascot-line span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-service-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 15px;
}

.about-service-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.about-highlights {
  width: min(1120px, 100%);
  margin: clamp(20px, 3vw, 34px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-highlights div {
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(11, 90, 169, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.about-highlights span,
.rating-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-highlights strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.15;
}

.location-section {
  background:
    linear-gradient(135deg, #091426, #123a54);
  color: #fff;
}

.location-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.location-grid p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(420px, 100%);
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.google-rating:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 200, 72, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.google-rating strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.rating-label {
  color: rgba(255, 255, 255, 0.68);
}

.rating-stars {
  min-width: 76px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f8c848;
  color: #1b2534;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.location-grid iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.product-section {
  background: linear-gradient(180deg, #f5f7fa, #fff 44%, #f5f7fa);
}

.product-showcase {
  width: min(1120px, 100%);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.product-showcase img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.product-showcase div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 20, 38, 0.96), rgba(7, 90, 156, 0.76));
}

.product-showcase h3 {
  margin-bottom: 0;
  font-size: clamp(26px, 3.3vw, 44px);
  line-height: 1.08;
}

.proof-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 20, 38, 0.98), rgba(14, 49, 75, 0.96));
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

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

.product-grid,
.solutions-grid,
.staff-grid,
.proof-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-grid,
.solutions-grid,
.staff-grid {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(7, 90, 156, 0.36) rgba(16, 24, 39, 0.08);
  scrollbar-width: thin;
}

.catalog-carousel {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.carousel-arrow {
  position: absolute;
  top: 42%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 24, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow::before {
  font-size: 30px;
  line-height: 1;
}

.carousel-arrow-prev::before {
  content: "\2039";
}

.carousel-arrow-next::before {
  content: "\203a";
}

.carousel-arrow:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.carousel-arrow-prev {
  left: -21px;
}

.carousel-arrow-next {
  right: -21px;
}

.product-grid::-webkit-scrollbar,
.solutions-grid::-webkit-scrollbar,
.staff-grid::-webkit-scrollbar {
  height: 8px;
}

.product-grid::-webkit-scrollbar-track,
.solutions-grid::-webkit-scrollbar-track,
.staff-grid::-webkit-scrollbar-track {
  background: rgba(16, 24, 39, 0.08);
  border-radius: 999px;
}

.product-grid::-webkit-scrollbar-thumb,
.solutions-grid::-webkit-scrollbar-thumb,
.staff-grid::-webkit-scrollbar-thumb {
  background: rgba(7, 90, 156, 0.36);
  border-radius: 999px;
}

.product-card {
  position: relative;
  flex: 0 0 clamp(290px, 31vw, 360px);
  scroll-snap-align: start;
  min-height: 318px;
  overflow: hidden;
  padding: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.product-card::after {
  display: none;
}

.product-photo {
  position: relative;
  height: 170px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #dfeaf2;
}

.product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(13, 22, 40, 0.26));
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.03);
}

.product-logo {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  min-width: 54px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(9, 20, 38, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.product-card span {
  display: inline-flex;
  margin: 0 20px 14px;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(7, 90, 156, 0.07);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.product-card h3 {
  margin: 0 20px 10px;
  font-size: 20px;
}

.product-card p {
  margin-right: 20px;
  margin-left: 20px;
  color: var(--muted);
  font-size: 15px;
}

.solution-card,
.proof-grid article {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.solution-card {
  flex: 0 0 clamp(300px, 32vw, 370px);
  scroll-snap-align: start;
}

.staff-section {
  background: linear-gradient(180deg, #f5f7fa, #fff);
}

.staff-card {
  flex: 0 0 clamp(300px, 32vw, 370px);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.staff-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
}

.staff-card div {
  padding: 16px;
}

.staff-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.staff-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.proof-grid article {
  padding: 0;
}

.solution-card::after {
  display: none;
}

.solution-card:nth-child(2n) {
  background: #fff;
}

.service-mark {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(9, 20, 38, 0.82);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.solution-photo {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #dfe8ef;
}

.solution-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-body {
  padding: 22px;
}

.solution-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.solution-card p,
.proof-grid p,
.split-section p,
.inquiry-copy p {
  color: var(--muted);
}

.split-section {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(420px, 720px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eef3f7, #fff 58%, #f5f7fa);
}

.brand-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.brand-metrics span {
  padding: 8px 11px;
  border: 1px solid rgba(11, 90, 169, 0.16);
  border-radius: 6px;
  background: #fff;
  color: #254762;
  font-size: 13px;
  font-weight: 900;
}

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

.brand-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.brand-card {
  min-height: 112px;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 10px;
  padding: 16px 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(16, 24, 39, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.brand-card:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 90, 169, 0.32);
  box-shadow: 0 14px 30px rgba(13, 22, 40, 0.1);
}

.brand-card img {
  width: 100%;
  max-width: 140px;
  max-height: 54px;
  object-fit: contain;
}

.brand-card strong {
  font-size: 15px;
  text-align: center;
}

.brand-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(13, 22, 40, 0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.support-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.proof-grid article {
  min-height: 280px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.proof-grid article img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.proof-grid article div {
  padding: 22px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.proof-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.inquiry-section {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

#inquiry {
  position: relative;
}

#inquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 167, 184, 0.07), transparent 42%),
    linear-gradient(180deg, #f5f7fa, #ffffff);
}

.inquiry-copy img {
  width: min(280px, 70vw);
  margin-top: 20px;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid rgba(16, 24, 39, 0.16);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(17, 167, 184, 0.22);
  border-color: rgba(7, 90, 156, 0.38);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: transparent;
  border-radius: 8px;
  padding: 0;
}

.site-footer p {
  margin: 10px 0 0;
  color: #fff;
  font-weight: 900;
}

.site-footer address {
  font-style: normal;
  font-size: 15px;
}

.site-footer a {
  color: #fff;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.social-links img {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .anniversary-hero,
  .about-grid,
  .location-grid,
  .split-section,
  .inquiry-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    --hero-height: auto;
    min-height: auto;
  }

  .hero-slide {
    height: auto;
    min-height: calc(100vh - 68px);
  }

  .anniversary-hero {
    min-height: calc(100vh - 68px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 72px;
  }

  .anniversary-copy h1 {
    font-size: clamp(40px, 10vw, 62px);
  }

  .anniversary-stage {
    min-height: 560px;
  }

  .anniversary-logo {
    width: 92px;
    height: 92px;
  }

  .anniversary-badge {
    width: 142px;
    height: 142px;
  }

  .anniversary-badge span {
    font-size: 70px;
  }

  .anniversary-mascot {
    top: 44%;
    left: 36%;
    width: min(56vw, 290px);
  }

  .hero-panel,
  .tech-orbit {
    min-height: 420px;
  }

  .product-card {
    flex-basis: min(78vw, 340px);
  }

  .solution-card {
    flex-basis: min(80vw, 350px);
  }

  .staff-card {
    flex-basis: min(80vw, 350px);
  }

  .carousel-arrow {
    top: 44%;
    width: 38px;
    height: 38px;
  }

  .carousel-arrow::before {
    font-size: 26px;
  }

  .carousel-arrow-prev {
    left: 8px;
  }

  .carousel-arrow-next {
    right: 8px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-showcase img {
    min-height: 240px;
  }

  .brand-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: 0;
  }

  .signal-card {
    position: relative;
    width: 100%;
  }

  .signal-card-top,
  .signal-card-bottom {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .hero-panel {
    display: grid;
    gap: 14px;
  }

  .support-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-photo {
    height: auto;
  }

  .shop-photo img {
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .hero {
    --hero-height: calc(100vh - 68px);
  }

  h1 {
    font-size: clamp(34px, 4.4vw, 54px);
  }

  .anniversary-copy h1 {
    font-size: clamp(42px, 5vw, 66px);
  }

  .anniversary-stage {
    min-height: 460px;
  }

  .anniversary-logo {
    width: 84px;
    height: 84px;
  }

  .anniversary-badge {
    width: 132px;
    height: 132px;
  }

  .anniversary-badge span {
    font-size: 64px;
  }

  .anniversary-mascot {
    width: min(30vw, 250px);
  }

  .reward-panel {
    bottom: 106px;
    padding: 13px;
  }

  .reward-grid span {
    min-height: 48px;
    font-size: 12px;
  }

  .draw-panel {
    padding: 13px 16px;
  }

  .draw-panel strong {
    font-size: 17px;
  }

  .hero-text {
    font-size: 16px;
  }

  .quick-stats {
    display: none;
  }

  .hero-panel,
  .tech-orbit {
    min-height: 340px;
  }

  .tech-orbit img {
    width: 235px;
  }

  .anniversary-mark {
    width: 210px;
    height: 210px;
  }

  .anniversary-mark strong {
    font-size: 86px;
  }

  .signal-card {
    padding: 13px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px;
  }

  .site-nav {
    top: 66px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark img {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    max-width: 190px;
    font-size: 16px;
    line-height: 1.1;
  }

  .brand-copy small {
    font-size: 10px;
  }

  h1 {
    font-size: 40px;
  }

  .anniversary-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .anniversary-actions {
    display: grid;
  }

  .anniversary-stage {
    min-height: 620px;
  }

  .anniversary-stage::before {
    inset: 70px 18px 180px;
  }

  .anniversary-stage::after {
    inset: 112px 38px 220px;
  }

  .anniversary-logo {
    top: 18px;
    left: 18px;
    width: 76px;
    height: 76px;
  }

  .anniversary-badge {
    top: 18px;
    right: 18px;
    width: 112px;
    height: 112px;
  }

  .anniversary-badge span {
    font-size: 52px;
  }

  .anniversary-badge strong {
    font-size: 10px;
  }

  .anniversary-mascot {
    top: 39%;
    left: 50%;
    width: min(76vw, 260px);
  }

  .reward-panel,
  .draw-panel {
    right: 16px;
    left: 16px;
    width: auto;
  }

  .reward-panel {
    bottom: 132px;
  }

  .reward-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .draw-panel {
    bottom: 16px;
  }

  .quick-stats {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-service-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .google-rating {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card,
  .solution-card,
  .staff-card {
    flex-basis: min(84vw, 320px);
  }

  .tech-orbit span:nth-of-type(1) { top: 48px; left: 0; }
  .tech-orbit span:nth-of-type(2) { top: 98px; right: 0; }
  .tech-orbit span:nth-of-type(3) { bottom: 96px; left: 0; }
  .tech-orbit span:nth-of-type(4) { bottom: 44px; right: 0; }
}
