:root {
  --deep: #083a5b;
  --deep-2: #061e2f;
  --deep-3: #0b5480;
  --accent: #1f9bd6;
  --accent-2: #1a88bc;
  --muted: #6b7c89;
  --bg: #eef3f8;
  --white: #ffffff;
  --glow: rgba(31, 155, 214, 0.25);
  --line: rgba(31, 155, 214, 0.15);
  --font-display: "Fraunces", serif;
  --font-ui: "Epilogue", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--deep);
  line-height: 1.6;
  overflow-x: hidden;
}

[data-en],
[data-id] {
  display: none !important;
}

body.lang-en [data-id],
body.lang-id [data-en] {
  display: none !important;
}

body.lang-en [data-en] {
  display: revert !important;
}

body.lang-id [data-id] {
  display: revert !important;
}

body.lang-en [data-en].inline,
body.lang-id [data-id].inline {
  display: inline !important;
}

body.lang-en [data-en].flex,
body.lang-id [data-id].flex {
  display: flex !important;
}

body.lang-en [data-en].block,
body.lang-id [data-id].block {
  display: block !important;
}

body.lang-en [data-en].grid,
body.lang-id [data-id].grid {
  display: grid !important;
}

[hidden] {
  display: none !important;
}

/* Komponen ini default-nya display:flex, jadi perlu override bilingual eksplisit */
body.lang-en .section-label[data-en],
body.lang-id .section-label[data-id] {
  display: flex !important;
}

header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

header.scrolled {
  border-color: rgba(8, 58, 91, 0.08);
  box-shadow: 0 2px 24px rgba(8, 58, 91, 0.07);
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.5s ease;
  border-radius: 6px;
  background: #fff;
}

.logo-wrap:hover .logo-img {
  transform: rotate(360deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s;
}

nav a:hover {
  color: var(--accent);
}

nav a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(8, 58, 91, 0.15);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.lang-btn {
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active {
  background: var(--deep);
  color: var(--white);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.75rem !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 16px var(--glow);
}

.nav-cta:hover {
  background: var(--accent-2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--glow) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  background: linear-gradient(155deg, var(--deep-2) 0%, var(--deep) 50%, var(--deep-3) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo {
  position: absolute;
  border: 1px solid rgba(31, 155, 214, 0.18);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.geo-1 { width: 60px; height: 60px; top: 8%; left: 5%; border-radius: 3px; animation: geo-drift 22s -3s infinite; }
.geo-2 { width: 26px; height: 26px; top: 24%; left: 20%; border-radius: 50%; animation: geo-pulse 14s -7s infinite; border-color: rgba(31, 155, 214, 0.28); }
.geo-3 { width: 90px; height: 90px; top: 60%; left: 7%; border-radius: 4px; animation: geo-drift 30s -12s infinite; border-color: rgba(31, 155, 214, 0.1); }
.geo-4 { width: 20px; height: 20px; top: 80%; left: 30%; border-radius: 50%; animation: geo-pulse 11s -2s infinite; }
.geo-5 { width: 48px; height: 48px; top: 14%; right: 9%; border-radius: 3px; animation: geo-drift 24s -9s infinite; }
.geo-6 { width: 100px; height: 100px; top: 50%; right: 5%; border-radius: 6px; animation: geo-drift 36s -5s infinite; border-color: rgba(31, 155, 214, 0.09); }
.geo-7 { width: 34px; height: 34px; top: 74%; right: 20%; border-radius: 50%; animation: geo-pulse 17s -11s infinite; }
.geo-8 { width: 16px; height: 16px; top: 40%; left: 50%; border-radius: 2px; background: rgba(31, 155, 214, 0.08); border: none; animation: geo-pulse 9s -4s infinite; }
.geo-9 { width: 64px; height: 64px; top: 32%; left: 36%; border-radius: 50%; animation: geo-drift 26s -15s infinite; border-color: rgba(31, 155, 214, 0.07); }
.geo-10 { width: 22px; height: 22px; top: 90%; right: 42%; border-radius: 3px; animation: geo-drift 13s -6s infinite; }

@keyframes geo-drift {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  25% { opacity: 0.9; }
  75% { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(180deg); opacity: 0.5; }
}

@keyframes geo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 0.85; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero-logo {
  display: block;
  width: min(72vw, 280px);
  max-width: 100%;
  height: auto;
  margin: 0 auto 2.25rem;
  filter: drop-shadow(0 0 32px rgba(31, 155, 214, 0.55));
  opacity: 0;
  transition: opacity 1s ease 0.1s;
}

.hero.visible .hero-logo {
  opacity: 1;
}

.hero-mark {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
  opacity: 0;
  transition: opacity 1s ease 0.2s;
}

.hero.visible .hero-eyebrow {
  opacity: 1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 0.35s, transform 0.9s ease 0.35s;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero.visible h1 {
  opacity: 1;
  transform: none;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  opacity: 0;
  transition: opacity 1s ease 0.55s;
}

.hero.visible .hero-desc {
  opacity: 1;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 1s ease 0.7s;
}

.hero.visible .hero-actions {
  opacity: 1;
}

.btn {
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(31, 155, 214, 0.4);
}

.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 8px 32px rgba(31, 155, 214, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.section-wrap {
  padding: 6rem 3.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

h2 em {
  font-style: italic;
  color: var(--accent);
}

.section-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 560px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.about {
  background: var(--white);
  border-top: 1px solid rgba(8, 58, 91, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.about-text p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.about-text p strong {
  color: var(--deep);
  font-weight: 700;
}

.pillars {
  display: flex;
  flex-direction: column;
}

.pillar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(8, 58, 91, 0.08);
}

.pillar:last-child {
  border-bottom: 1px solid rgba(8, 58, 91, 0.08);
}

.pillar-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep);
}

.pillar-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services {
  background: var(--bg);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  align-items: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 14px rgba(8, 58, 91, 0.05);
  border-top: 3px solid var(--accent);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(8, 58, 91, 0.1);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  display: block;
}

.service-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.projects,
.products {
  background: var(--white);
}

/* ── Product Showcase (merged video + detail) ── */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.product-showcase__stage {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-showcase__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: var(--bg);
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(8, 58, 91, 0.12);
}

.product-showcase__carousel {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.product-showcase__carousel::-webkit-scrollbar { height: 3px; }

.product-thumb {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  scroll-snap-align: start;
  min-width: 88px;
}

.product-thumb:hover {
  border-color: rgba(31, 155, 214, 0.3);
}

.product-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--glow);
}

.product-thumb__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  overflow: hidden;
  position: relative;
}

.product-thumb__fallback {
  display: none;
}

.product-thumb__label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}

.product-showcase__detail {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--deep);
  line-height: 1.2;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.product-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-stack span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--deep);
  background: var(--bg);
}

.product-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.product-cards-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  margin-top: 3rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product-cards-row .project-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .product-showcase {
    grid-template-columns: 55fr 45fr;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .product-showcase__detail {
    padding: 1.5rem;
  }

  .product-cta {
    align-self: stretch;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.projects-carousel-wrap {
  position: relative;
  margin-top: 3.5rem;
  overflow: hidden;
}

.projects-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.project-card {
  flex: 0 0 360px;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(8, 58, 91, 0.06);
  transition: box-shadow 0.3s;
}

.project-card:hover {
  box-shadow: 0 12px 40px rgba(8, 58, 91, 0.12);
}

.project-thumb {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-thumb-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.project-thumb-icon {
  font-size: 3rem;
  opacity: 0.15;
}

.project-thumb-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.project-body {
  padding: 1.5rem;
}

.project-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.project-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.6rem;
}

.project-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

.carousel-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: center;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(8, 58, 91, 0.15);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  font-size: 1rem;
  color: var(--deep);
}

.carousel-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(8, 58, 91, 0.15);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.process {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(8, 58, 91, 0.08);
  padding-top: 3rem;
}

.process-step {
  position: relative;
}

.process-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: rgba(31, 155, 214, 0.1);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.process-step-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.75;
}

.billing-note {
  margin-top: 3rem;
  background: var(--deep);
  border-radius: 10px;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.billing-note-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 540px;
}

.billing-note-text strong {
  color: var(--white);
}

.billing-note-btn {
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 7px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.billing-note-btn:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.team-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(8, 58, 91, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(8, 58, 91, 0.1);
}

.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  display: block;
  border: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.team-card:hover .team-photo {
  border-color: var(--accent);
  box-shadow: 0 0 0 5px var(--glow);
}

.team-divider {
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin: 0.75rem auto 1rem;
  border-radius: 2px;
  display: block;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.3rem;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  background: var(--bg);
}

.contact-inner {
  background: var(--white);
  border-radius: 14px;
  padding: 4rem;
  box-shadow: 0 2px 20px rgba(8, 58, 91, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-desc {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-desc strong {
  color: var(--deep);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(8, 58, 91, 0.08);
  text-decoration: none;
  color: var(--deep);
  transition: padding-left 0.2s;
}

.contact-link:last-child {
  border-bottom: 1px solid rgba(8, 58, 91, 0.08);
}

.contact-link:hover {
  padding-left: 0.5rem;
}

.contact-link-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-link-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep);
}

.contact-link-sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.15rem;
}

.contact-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.contact-link:hover .contact-arrow {
  transform: translateX(4px);
}

.faq-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-item {
  background: var(--bg);
  border: 1px solid rgba(8, 58, 91, 0.08);
  border-radius: 10px;
  padding: 1.2rem 1.3rem;
}

.faq-item h3 {
  color: var(--deep);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.final-cta .section-wrap {
  padding-top: 1.5rem;
}

footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.footer-former {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

#main-nav {
  display: flex;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

@media (max-width: 960px) {
  .section-wrap { padding: 4.5rem 1.5rem; }
  header { padding: 0 1.5rem; }
  #main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0;
    border-bottom: 1px solid rgba(8, 58, 91, 0.08);
    box-shadow: 0 8px 24px rgba(8, 58, 91, 0.08);
  }
  #main-nav.open { display: flex; }
  #main-nav a { padding: 0.85rem 0; border-bottom: 1px solid rgba(8, 58, 91, 0.06); margin: 0; }
  #main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .about-grid, .services-header, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .billing-note { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; gap: 1rem; padding: 2rem; text-align: center; }
}

.hero--compact {
  min-height: auto;
  padding: 5rem 0 3rem;
}

.hero--compact .hero-logo {
  width: min(50vw, 160px);
  margin-bottom: 1.25rem;
}

.hero--compact h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.01em;
}

.hero--compact .hero-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.products--featured {
  margin-top: 0;
}

.products--featured .section-wrap {
  padding-top: 3rem;
}

.products--featured h2 {
  margin-bottom: 0;
}

.product-carousel-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-carousel-bar .product-showcase__carousel {
  flex: 1;
  min-width: 0;
}

.product-carousel-bar .carousel-btn {
  flex-shrink: 0;
}

.about--minimal .section-wrap {
  padding: 2.5rem 4rem;
  text-align: center;
}

.about-oneliner {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.team .section-wrap {
  padding-top: 3rem;
}

.product-collab {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.product-collab-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.product-collab-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

.collab-logo {
  height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(0.1);
}

.product-cta[hidden] {
  display: none !important;
}

.product-showcase__detail .product-name {
  margin-bottom: 0.75rem;
}

.product-showcase__detail .product-desc {
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact .section-wrap {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

@media (max-width: 960px) {
  .about--minimal .section-wrap {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero--compact {
    padding: 4rem 0 2rem;
  }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .hero-eyebrow { font-size: 0.62rem; }
  .section-desc,
  .about-text p,
  .contact-desc,
  .service-desc,
  .project-desc { font-size: 0.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .project-card { flex: 0 0 280px; }
  .contact-inner { padding: 2rem 1.5rem; }
}
