/* =========================================================
   BINTANG TEKNIK COMPANY PROFILE
   File: assets/css/main.css
   Theme: Light Mode - Deep Ocean Navy & Snow White
   Author: ABPE Works
========================================================= */

/* =========================
   ROOT VARIABLE
========================= */
:root {
  /* Primary */
  --primary-navy: #082f49;
  --primary-ocean: #0b4f6c;
  --primary-deep: #061f32;
  --snow-white: #fbfdff;

  /* Secondary */
  --cyan: #18b7d8;
  --cyan-soft: #dff8ff;
  --steel-blue: #58798c;
  --silver: #e8eef2;
  --silver-soft: #f3f7fa;
  --industrial-amber: #f6b73c;

  /* Text */
  --text-dark: #10212b;
  --text-body: #334955;
  --text-muted: #71838f;
  --text-light: #ffffff;

  /* Surface */
  --bg-main: #fbfdff;
  --bg-soft: #f4f8fb;
  --bg-card: #ffffff;
  --bg-navy-soft: #eef8fc;

  /* Border & Shadow */
  --border-soft: #dce7ed;
  --border-blue: rgba(24, 183, 216, 0.22);

  --shadow-xs: 0 6px 18px rgba(8, 47, 73, 0.06);
  --shadow-sm: 0 12px 30px rgba(8, 47, 73, 0.08);
  --shadow-md: 0 22px 60px rgba(8, 47, 73, 0.12);
  --shadow-glow: 0 20px 70px rgba(24, 183, 216, 0.22);

  /* Layout */
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  /* Transition */
  --transition-fast: 180ms ease;
  --transition: 280ms ease;
  --transition-slow: 480ms ease;
}

/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(24, 183, 216, 0.12), transparent 32rem),
    radial-gradient(circle at top right, rgba(8, 47, 73, 0.08), transparent 30rem),
    var(--bg-main);
  color: var(--text-body);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

::selection {
  background: var(--cyan);
  color: var(--text-light);
}

/* =========================
   GLOBAL UTILITIES
========================= */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-light {
  background: var(--snow-white);
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0.9), rgba(255, 255, 255, 0.96)),
    var(--bg-soft);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(24, 183, 216, 0.22), transparent 26rem),
    linear-gradient(135deg, var(--primary-deep), var(--primary-navy));
  color: var(--text-light);
}

.grid-bg {
  position: relative;
  isolation: isolate;
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(8, 47, 73, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 47, 73, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid var(--border-blue);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-ocean);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(14px);
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(24, 183, 216, 0.12);
}

.section-dark .kicker {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan-soft);
  border-color: rgba(255, 255, 255, 0.18);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  margin: 16px 0 0;
  color: var(--text-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-dark .section-title {
  color: var(--text-light);
}

.section-desc {
  margin: 20px 0 0;
  max-width: 660px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-heading.center .section-desc {
  margin-inline: auto;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-ocean), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero {
  position: relative;
  padding: 170px 0 92px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(24, 183, 216, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(8, 47, 73, 0.13), transparent 28rem);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-title {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--text-dark);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-desc {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn-primary {
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-ocean));
  box-shadow: 0 18px 42px rgba(8, 47, 73, 0.24);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(8, 47, 73, 0.32);
}

.btn-secondary {
  color: var(--primary-navy);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  color: var(--primary-ocean);
  border-color: var(--border-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  color: var(--primary-ocean);
  background: rgba(24, 183, 216, 0.08);
  border: 1px solid rgba(24, 183, 216, 0.2);
}

.btn-ghost:hover {
  background: rgba(24, 183, 216, 0.14);
  transform: translateY(-3px);
}

.btn-light {
  color: var(--primary-navy);
  background: var(--text-light);
  box-shadow: var(--shadow-glow);
}

.btn-light:hover {
  transform: translateY(-3px);
}

/* =========================
   HEADER / NAVBAR
========================= */
.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 1000;
  pointer-events: none;
}

.navbar {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(220, 231, 237, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 60px rgba(8, 47, 73, 0.1);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition:
    padding var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.site-header.is-scrolled .navbar {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(220, 231, 237, 0.95);
  box-shadow: 0 18px 58px rgba(8, 47, 73, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-navy), var(--cyan));
  color: var(--text-light);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 28px rgba(24, 183, 216, 0.25);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 800;
  transition:
    color var(--transition),
    background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-ocean);
  background: rgba(24, 183, 216, 0.09);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--primary-navy);
  color: var(--text-light);
  box-shadow: 0 14px 28px rgba(8, 47, 73, 0.18);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================
   HERO HOME
========================= */
/* =========================
   HERO HOME
========================= */
.hero {
  position: relative;
  min-height: 860px;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(251, 253, 255, 0.98) 0%,
      rgba(251, 253, 255, 0.94) 48%,
      rgba(251, 253, 255, 0.78) 100%),
    radial-gradient(circle at 78% 18%, rgba(24, 183, 216, 0.18), transparent 26rem),
    radial-gradient(circle at 18% 84%, rgba(8, 47, 73, 0.1), transparent 32rem);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 520px);
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  margin: 18px 0 0;
  color: var(--text-dark);
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: 0.97;
  letter-spacing: -0.07em;
}

.hero-title .highlight {
  color: var(--primary-ocean);
}

.hero-desc {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-body);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(12px);
}

.meta-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(24, 183, 216, 0.12);
}

/* =========================
   HERO VISUAL / PARALLAX
========================= */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 560px;
  justify-self: end;
  overflow: visible;
}

.hero-photo-card {
  position: absolute;
  inset: 28px 0;
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(220, 231, 237, 0.82);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 47, 73, 0.06), rgba(8, 47, 73, 0.1)),
    radial-gradient(circle at top right, rgba(24, 183, 216, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 231, 237, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.card-top {
  top: 82px;
  left: -28px;
}

.card-right {
  right: -18px;
  top: 240px;
}

.card-bottom {
  bottom: 70px;
  left: 28px;
}

.hero-orbit {
  position: absolute;
  inset: 28px 0;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 251, 0.82)),
    radial-gradient(circle at top left, rgba(24, 183, 216, 0.16), transparent 22rem);
  border: 1px solid rgba(220, 231, 237, 0.82);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px dashed rgba(11, 79, 108, 0.18);
  border-radius: 34px;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 183, 216, 0.2), transparent 65%);
}

.hero-device {
  position: absolute;
  left: 50%;
  top: 56%;
  width: 380px;
  transform: translate(-50%, -50%);
  padding: 22px;
  border-radius: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 28px 70px rgba(8, 47, 73, 0.18);
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.device-dots {
  display: flex;
  gap: 7px;
}

.device-dots span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--silver);
}

.device-dots span:nth-child(1) {
  background: #ff6b6b;
}

.device-dots span:nth-child(2) {
  background: #f6b73c;
}

.device-dots span:nth-child(3) {
  background: #2dcc70;
}

.device-label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.device-panel {
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.96), rgba(11, 79, 108, 0.94)),
    var(--primary-navy);
  color: var(--text-light);
}

.device-panel h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.device-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-size: 13px;
}

.device-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.device-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.device-stat strong {
  display: block;
  color: var(--cyan-soft);
  font-size: 24px;
  line-height: 1;
}

.device-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 231, 237, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.floating-card .icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-weight: 900;
}

.floating-card strong {
  display: block;
  color: var(--text-dark);
  font-size: 14px;
}

.floating-card span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.card-top {
  top: 84px;
  left: 6px;
}

.card-right {
  right: 0;
  top: 232px;
}

.card-bottom {
  bottom: 66px;
  left: 42px;
}

.hero-shape {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
}

.shape-1 {
  width: 110px;
  height: 110px;
  right: 8%;
  bottom: 10%;
  background: linear-gradient(135deg, rgba(24, 183, 216, 0.22), transparent);
}

.shape-2 {
  width: 78px;
  height: 78px;
  left: 5%;
  top: 14%;
  background: linear-gradient(135deg, rgba(246, 183, 60, 0.22), transparent);
}

/* =========================
   LOGO / BRAND STRIP
========================= */
.brand-strip {
  position: relative;
  padding: 28px 0;
  background: var(--bg-card);
  border-block: 1px solid var(--border-soft);
}

.brand-strip-layout {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-strip-title {
  flex: 0 0 auto;
  max-width: 220px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 72px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--silver-soft);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.brand-chip img {
  max-width: 120px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.96;
}

/* =========================
   CARDS
========================= */
.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cyan-soft), #ffffff);
  color: var(--primary-ocean);
  border: 1px solid rgba(24, 183, 216, 0.18);
  font-size: 22px;
  font-weight: 900;
}

.card-title {
  margin: 20px 0 0;
  color: var(--text-dark);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.card-desc {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--primary-ocean);
  font-size: 14px;
  font-weight: 900;
}

.card-link::after {
  content: "→";
  transition: transform var(--transition);
}

.card-link:hover::after {
  transform: translateX(5px);
}

/* =========================
   HOME - ABOUT PREVIEW
========================= */
.about-preview-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 58px;
}

.about-visual {
  position: relative;
  min-height: 560px;
}

.about-photo-card {
  position: absolute;
  inset: 30px 40px 30px 0;
  border-radius: 36px;
  background: var(--silver-soft);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-photo-card::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 28px;
  border: 1px dashed rgba(8, 47, 73, 0.18);
  z-index: 2;
  pointer-events: none;
}

.about-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 47, 73, 0.08), rgba(8, 47, 73, 0.14)),
    radial-gradient(circle at bottom right, rgba(24, 183, 216, 0.16), transparent 30%);
  pointer-events: none;
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 76px;
  width: 210px;
  padding: 22px;
  border-radius: 28px;
  background: var(--primary-navy);
  color: var(--text-light);
  box-shadow: 0 28px 70px rgba(8, 47, 73, 0.28);
}

.about-badge strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-badge span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.about-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
  line-height: 1.7;
}

.about-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 13px;
  font-weight: 900;
}

/* =========================
   PRODUCT GRID
========================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 251, 0.88)),
    var(--bg-card);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.product-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -54px;
  top: -54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 183, 216, 0.22), transparent 68%);
}

.product-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-title {
  position: relative;
  z-index: 2;
  margin: 22px 0 0;
  color: var(--text-dark);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.product-desc {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 15px;
}

.product-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.product-list li {
  display: flex;
  gap: 9px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.5;
}

.product-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 99px;
  background: var(--cyan);
}

/* =========================
   STATS
========================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.stat-number {
  color: var(--text-light);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.stat-label {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  font-size: 14px;
}

/* =========================
   WHY / FEATURE
========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 280px;
}

/* =========================
   FAQ
========================= */
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: var(--bg-card);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: transparent;
  color: var(--text-dark);
  text-align: left;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 22px 22px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 15px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.is-open {
  border-color: var(--border-blue);
}

/* =========================
   CONTACT
========================= */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-weight: 900;
}

.contact-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.contact-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 14px;
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 900;
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: var(--snow-white);
  color: var(--text-dark);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-control:focus {
  border-color: rgba(24, 183, 216, 0.68);
  box-shadow: 0 0 0 5px rgba(24, 183, 216, 0.12);
  background: #ffffff;
}

.form-note {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================
   CTA SECTION
========================= */
.cta-box {
  position: relative;
  padding: 56px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(24, 183, 216, 0.28), transparent 26rem),
    linear-gradient(135deg, var(--primary-deep), var(--primary-navy));
  color: var(--text-light);
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(8, 47, 73, 0.25);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.cta-desc {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 16px;
}

/* =========================
   FOOTER
========================= */
.footer {
  position: relative;
  padding: 72px 0 26px;
  background: var(--primary-deep);
  color: var(--text-light);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 183, 216, 0.18), transparent 68%);
}

.footer-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--cyan), var(--primary-ocean));
  font-weight: 950;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.footer-desc {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
  font-size: 14px;
}

.footer-title {
  margin: 0 0 18px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact-item {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--cyan-soft);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--primary-ocean);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: var(--text-muted);
}

/* =========================
   TABLE / PRODUCT DETAIL SUPPORT
========================= */
.info-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  background: var(--bg-card);
  box-shadow: var(--shadow-xs);
}

.info-table th,
.info-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 32%;
  background: var(--silver-soft);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 900;
}

.info-table td {
  color: var(--text-muted);
  line-height: 1.6;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

/* =========================
   MAP PLACEHOLDER
========================= */
.map-box {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.92), rgba(11, 79, 108, 0.86)),
    var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.map-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 999px 999px 999px 0;
  background: var(--cyan);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 0 0 12px rgba(24, 183, 216, 0.18);
}

.map-pin::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--text-light);
}

/* =========================
   SCROLL TO TOP
========================= */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--primary-navy);
  color: var(--text-light);
  box-shadow: 0 18px 44px rgba(8, 47, 73, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/* =========================
   LOADER
========================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--snow-white);
  transition:
    opacity var(--transition-slow),
    visibility var(--transition-slow);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--primary-navy), var(--cyan));
  box-shadow: var(--shadow-glow);
}

.loader-mark::before,
.loader-mark::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}

.loader-mark::after {
  inset: 24px;
  border-color: rgba(255, 255, 255, 0.42);
}

/* =========================
   ACCESSIBILITY
========================= */
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--primary-navy);
  color: var(--text-light);
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(24, 183, 216, 0.55);
  outline-offset: 4px;
}

/* =========================
   PRINT BASIC
========================= */
@media print {

  .site-header,
  .nav-toggle,
  .scroll-top,
  .page-loader,
  .cta-box,
  .footer {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .section,
  .page-hero {
    padding: 32px 0;
  }

  .card,
  .product-card,
  .contact-form {
    box-shadow: none;
  }
}

/* =========================================================
   ABOUT PAGE - CUSTOM LAYOUT
========================================================= */
.story-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 620px;
}

.story-photo-card {
  position: absolute;
  inset: 0 36px 38px 0;
  border-radius: 38px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.story-photo-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px dashed rgba(8, 47, 73, 0.16);
  border-radius: 28px;
  z-index: 2;
  pointer-events: none;
}

.story-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 47, 73, 0.08), rgba(8, 47, 73, 0.14)),
    radial-gradient(circle at top right, rgba(24, 183, 216, 0.2), transparent 30%);
  pointer-events: none;
}

.story-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-badge {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 250px;
  padding: 26px;
  border-radius: 28px;
  background: var(--primary-navy);
  color: var(--text-light);
  box-shadow: 0 28px 72px rgba(8, 47, 73, 0.26);
}

.story-badge strong {
  display: block;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.story-badge span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.story-content .section-title {
  max-width: 700px;
}

.story-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.story-point {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.story-point-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cyan-soft), #ffffff);
  color: var(--primary-ocean);
  font-size: 15px;
  font-weight: 900;
}

.story-point h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.story-point p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.milestone-card {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.milestone-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -64px;
  right: -64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 183, 216, 0.16), transparent 68%);
}

.milestone-year {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.milestone-title {
  margin: 20px 0 0;
  color: var(--text-dark);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.milestone-desc {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-panel {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.value-panel strong {
  display: block;
  color: var(--text-light);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.value-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.capability-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: start;
}

.capability-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.capability-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.75;
}

.capability-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 13px;
  font-weight: 900;
}

.capability-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-stat-card {
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 251, 0.9)),
    var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.mini-stat-card strong {
  display: block;
  color: var(--primary-navy);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.mini-stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   PRODUCT CATALOG PAGE
========================================================= */
.catalog-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.catalog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 520px;
}

.catalog-filter-btn {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  color: var(--text-body);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow-xs);
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.catalog-filter-btn:hover,
.catalog-filter-btn.active {
  background: var(--primary-navy);
  color: var(--text-light);
  border-color: var(--primary-navy);
  transform: translateY(-2px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.catalog-card {
  position: relative;
  min-height: 280px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.9)),
    var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

.catalog-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 183, 216, 0.16), transparent 68%);
  transition: transform var(--transition-slow);
}

.catalog-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.catalog-card:hover::before {
  transform: scale(1.18);
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-logo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 86px;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
}

.catalog-logo img {
  max-width: 150px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.catalog-service-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-navy), var(--cyan));
  color: var(--text-light);
  font-size: 34px;
  font-weight: 900;
  box-shadow: var(--shadow-glow);
}

.catalog-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-card h3 {
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  color: var(--text-dark);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.catalog-card p {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Modal */
.catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.catalog-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.catalog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 50, 0.56);
  backdrop-filter: blur(10px);
}

.catalog-modal-panel {
  position: relative;
  width: min(100%, 680px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: 30px;
  border-radius: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 34px 100px rgba(6, 31, 50, 0.3);
  transform: translateY(18px) scale(0.96);
  transition: transform var(--transition);
}

.catalog-modal.is-open .catalog-modal-panel {
  transform: translateY(0) scale(1);
}

.catalog-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--silver-soft);
  color: var(--primary-navy);
  font-size: 28px;
  line-height: 1;
  transition:
    background var(--transition),
    transform var(--transition);
}

.catalog-modal-close:hover {
  background: var(--cyan-soft);
  transform: rotate(8deg);
}

.catalog-modal-header {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-right: 46px;
}

.catalog-modal-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 110px;
  height: 86px;
  padding: 14px;
  border-radius: 22px;
  background: var(--silver-soft);
  border: 1px solid var(--border-soft);
}

.catalog-modal-logo img {
  max-width: 86px;
  max-height: 50px;
  object-fit: contain;
}

.catalog-modal-logo.service {
  background: linear-gradient(135deg, var(--primary-navy), var(--cyan));
  color: var(--text-light);
  font-size: 34px;
  font-weight: 900;
}

.catalog-modal-type {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-modal-header h2 {
  margin: 12px 0 0;
  color: var(--text-dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.catalog-modal-desc {
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.catalog-modal-section {
  margin-top: 26px;
  padding: 22px;
  border-radius: 24px;
  background: var(--silver-soft);
  border: 1px solid var(--border-soft);
}

.catalog-modal-section h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.catalog-product-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.catalog-product-list li {
  display: flex;
  gap: 10px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

.catalog-product-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 12px;
  font-weight: 900;
}

.catalog-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.catalog-modal-note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
   FAQ PAGE CUSTOM
========================================================= */
.faq-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.faq-flow-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.order-flow {
  display: grid;
  gap: 16px;
}

.order-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.order-step span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-navy), var(--cyan));
  color: var(--text-light);
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(24, 183, 216, 0.2);
}

.order-step h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 19px;
  letter-spacing: -0.03em;
}

.order-step p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-sticky {
  position: sticky;
  top: 130px;
}

.faq-contact-box {
  margin-top: 30px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.92)),
    var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.faq-contact-box strong {
  display: block;
  color: var(--text-dark);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.faq-contact-box p {
  margin: 12px 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   CONTACT PAGE CUSTOM
========================================================= */
.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-channel-card {
  display: block;
  padding: 24px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.contact-channel-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.contact-channel-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cyan-soft), #ffffff);
  color: var(--primary-ocean);
  font-weight: 950;
}

.contact-channel-label {
  display: inline-flex;
  margin-top: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-channel-card strong {
  display: block;
  margin-top: 14px;
  color: var(--text-dark);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.contact-channel-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-form-title {
  margin: 18px 0 0;
  color: var(--text-dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.contact-form-desc {
  margin: 14px 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.map-section-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.map-info-box {
  margin-top: 28px;
  padding: 26px;
  border-radius: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.map-info-box strong {
  display: block;
  color: var(--text-dark);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.map-info-box p {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.map-embed-card {
  position: relative;
  min-height: 500px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  background: var(--silver-soft);
}

.map-embed-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card a {
  color: var(--primary-ocean);
  font-weight: 800;
}

.contact-card a:hover {
  text-decoration: underline;
}

.catalog-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.catalog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 560px;
}

.catalog-filter-btn {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  color: var(--text-body);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow-xs);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.catalog-filter-btn:hover,
.catalog-filter-btn.active {
  background: var(--primary-navy);
  color: var(--text-light);
  border-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(8, 47, 73, 0.18);
}

/* Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.catalog-card {
  position: relative;
  min-height: 330px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.92)), var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.catalog-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -70px;
  right: -70px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(24, 183, 216, 0.18), transparent 68%);
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.catalog-card::after {
  content: "View detail →";
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--primary-ocean);
  font-size: 13px;
  font-weight: 950;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.catalog-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.catalog-card:hover::before {
  transform: scale(1.16);
  opacity: 0.9;
}

.catalog-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.catalog-logo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 92px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 28px rgba(8, 47, 73, 0.05);
}

.catalog-logo img {
  max-width: 150px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.catalog-logo span {
  color: var(--primary-navy);
  font-size: 24px;
  font-weight: 950;
}

.catalog-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 10.5px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-card h3 {
  position: relative;
  z-index: 2;
  margin: 16px 0 0;
  color: var(--text-dark);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.catalog-card p {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  margin: 11px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 26px;
}

.catalog-meta span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 850;
}

.catalog-empty-state {
  margin-top: 28px;
  padding: 34px;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px dashed var(--border-soft);
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.catalog-empty-state strong {
  display: block;
  color: var(--text-dark);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.catalog-empty-state p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Product Modal */
.product-catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.product-catalog-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 50, 0.62);
  backdrop-filter: blur(12px);
}

.product-modal-panel {
  position: relative;
  width: min(100%, 1080px);
  max-height: min(90vh, 840px);
  overflow-y: auto;
  padding: 32px;
  border-radius: 34px;
  background: radial-gradient(circle at top right, rgba(24, 183, 216, 0.1), transparent 28rem), var(--bg-card);
  border: 1px solid var(--border-soft);
  box-shadow: 0 34px 110px rgba(6, 31, 50, 0.34);
  transform: translateY(18px) scale(0.97);
  transition: transform var(--transition);
}

.product-catalog-modal.is-open .product-modal-panel {
  transform: translateY(0) scale(1);
}

.product-modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: -10px -10px 0 12px;
  border-radius: 999px;
  background: var(--silver-soft);
  color: var(--primary-navy);
  font-size: 30px;
  line-height: 1;
  transition: background var(--transition), transform var(--transition);
}

.product-modal-close:hover {
  background: var(--cyan-soft);
  transform: rotate(8deg);
}

/* Modal Hero */
.product-modal-hero {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
  padding: 6px 52px 28px 0;
  border-bottom: 1px solid var(--border-soft);
}

.product-modal-logo {
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.product-modal-logo img {
  max-width: 126px;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-modal-logo span {
  color: var(--primary-ocean);
  font-size: 32px;
  font-weight: 950;
}

.product-modal-heading {
  min-width: 0;
}

.product-modal-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--primary-ocean);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-modal-heading h2 {
  margin: 14px 0 0;
  color: var(--text-dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.product-modal-heading p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.78;
}

.product-modal-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-modal-category span,
.product-modal-category strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-modal-category span {
  background: var(--silver-soft);
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
}

.product-modal-category strong {
  background: rgba(24, 183, 216, 0.1);
  color: var(--primary-ocean);
  border: 1px solid rgba(24, 183, 216, 0.18);
}

/* Modal Body */
.product-modal-body {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.product-modal-section {
  padding: 24px;
  border-radius: 28px;
  background: var(--silver-soft);
  border: 1px solid var(--border-soft);
}

.product-modal-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.product-modal-section-head h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.product-modal-section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Product Chips */
.modal-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-product-chip {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  color: var(--text-body);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(8, 47, 73, 0.04);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.modal-product-chip:hover,
.modal-product-chip.active {
  background: var(--primary-navy);
  color: var(--text-light);
  border-color: var(--primary-navy);
  transform: translateY(-2px);
}

.selected-product-text {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  color: var(--primary-ocean);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

.catalog-modal-muted {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Gallery */
.modal-product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.modal-product-photo {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  text-align: left;
  box-shadow: 0 8px 18px rgba(8, 47, 73, 0.04);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.modal-product-photo:hover,
.modal-product-photo.active {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-sm);
}

.modal-product-photo::after {
  content: "Ask this";
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(8, 47, 73, 0.82);
  color: var(--text-light);
  font-size: 10px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
}

.modal-product-photo:hover::after,
.modal-product-photo.active::after {
  opacity: 1;
  transform: translateY(0);
}

.modal-product-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 10px;
  border-radius: 16px;
  background: var(--snow-white);
  border: 1px solid var(--border-soft);
}

.modal-product-photo span {
  display: block;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.modal-product-photo.is-broken {
  min-height: 120px;
}

.modal-product-photo.is-broken::before {
  content: "Image unavailable";
  display: grid;
  place-items: center;
  min-height: 92px;
  border-radius: 16px;
  background: var(--silver-soft);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
}

.catalog-photo-empty {
  padding: 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px dashed var(--border-soft);
  text-align: center;
}

.catalog-photo-empty strong {
  display: block;
  color: var(--text-dark);
  font-size: 18px;
}

.catalog-photo-empty p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Modal Actions */
.product-modal-actions {
  position: sticky;
  bottom: -32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px -32px -32px;
  padding: 18px 32px 22px;
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid var(--border-soft);
  backdrop-filter: blur(18px);
}

.product-modal-note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}