/* ================================================================
   KONEKTA — Main Stylesheet
   Design: Clean, premium, minimal, tech-forward
   ================================================================ */

:root {
  --brand-blue: #2563eb;
  --brand-blue-dark: #1d4ed8;
  --brand-blue-deep: #0c1e3d;
  --brand-yellow: #f59e0b;
  --brand-navy: #0f172a;
}

/* ─────────────── RESET & BASE ─────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
}

.landing-surface {
  position: relative;
  background-color: #ffffff;
  background-image:
    radial-gradient(ellipse 65% 55% at 88% 88%, rgba(37, 99, 235, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 8% 10%, rgba(59, 130, 246, 0.05) 0%, transparent 65%);
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 32px 8% 80px;
  color: #0f172a;
  background: transparent;
  overflow: visible;
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--landing-network-height, 100%);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.hero-network-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.95;
}

/* ─────────────── NAVBAR ─────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 96px;
  position: relative;
  z-index: 40;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(15, 23, 42, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0f172a;
}

.nav-cta {
  color: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(15, 23, 42, 0.22);
  padding: 8px 18px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  border-color: rgba(15, 23, 42, 0.5) !important;
  color: #0f172a !important;
}

.nav-mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.nav-mobile-toggle:hover {
  border-color: rgba(37, 99, 235, 0.28);
  background: #ffffff;
}

.nav-mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 240;
}

.nav-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 100vw);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -20px 0 48px rgba(15, 23, 42, 0.16);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.26s ease, opacity 0.26s ease;
  z-index: 250;
}

.nav-mobile-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 22px 18px 28px;
  overflow-y: auto;
}

.nav-mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-mobile-panel-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.nav-mobile-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.nav-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-mobile-link,
.nav-mobile-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.92);
  color: #0f172a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-mobile-group-toggle {
  cursor: pointer;
  font-family: inherit;
}

.nav-mobile-link-cta {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  justify-content: center;
}

.nav-mobile-group-label {
  flex: 1;
  text-align: left;
}

.nav-mobile-group-chevron {
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-mobile-group.is-open .nav-mobile-group-chevron {
  transform: rotate(180deg);
  opacity: 0.9;
}

.nav-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: max-height 0.24s ease, opacity 0.2s ease, margin-top 0.2s ease;
}

.nav-mobile-group.is-open .nav-mobile-submenu {
  max-height: 420px;
  opacity: 1;
  margin-top: 8px;
}

.nav-mobile-sublink {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: #0f172a;
}

.nav-mobile-sublink-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.nav-mobile-sublink-sub {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .nav-mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-nav-open .nav-mobile-panel {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* ─────────────── MEGA MENU ─────────────── */
.nav-item-services {
  position: relative;
}

.nav-item-about {
  position: relative;
}

/* Real hover wrappers: trigger, travel gap, and panel are owned by one zone. */
.nav-dropdown-zone {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 0;
}

.nav-dropdown-zone-services {
  --dropdown-gap: 10px;
  padding-bottom: var(--dropdown-gap);
  margin-bottom: calc(var(--dropdown-gap) * -1);
}

.nav-dropdown-zone-about {
  --dropdown-gap: 14px;
  padding-bottom: var(--dropdown-gap);
  margin-bottom: calc(var(--dropdown-gap) * -1);
}

/* Transparent hover plane that matches the real dropdown entry footprint.
   When open, diagonal cursor travel stays inside the dropdown zone. */
.nav-hover-plane {
  position: absolute;
  top: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.nav-hover-plane-services {
  left: -20px;
  width: 576px;
  height: calc(100% + var(--services-dropdown-panel-height, 0px) + 16px);
}

.nav-hover-plane-about {
  left: -12px;
  width: 236px;
  height: calc(100% + var(--about-dropdown-panel-height, 0px) + 16px);
}

.nav-dropdown-zone.menu-open .nav-hover-plane {
  pointer-events: auto;
}

/* Trigger link + chevron */
.nav-services-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.nav-dropdown-arrow {
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s;
  flex-shrink: 0;
}

.nav-dropdown-zone.menu-open .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* Panel anchored to the bottom edge of the shared hover zone */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  z-index: 200;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-zone.menu-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Card shell */
.mega-menu-inner {
  display: flex;
  width: 576px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 16px 48px rgba(15, 23, 42, 0.11);
  overflow: hidden;
}

/* ── Left panel ── */
.mega-left {
  width: 192px;
  flex-shrink: 0;
  background: #f8fafc;
  border-right: 1px solid rgba(15, 23, 42, 0.06);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  text-align: left;
  font-family: inherit;
  color: #0f172a;
  transition: background 0.15s;
}

.mega-cat:hover,
.mega-cat.is-active {
  background: #eff6ff;
}

.mega-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  flex-shrink: 0;
  transition: background 0.15s;
}

.mega-cat.is-active .mega-cat-icon,
.mega-cat:hover .mega-cat-icon {
  background: rgba(37, 99, 235, 0.15);
}

.mega-cat-label {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-cat-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}

.mega-cat.is-active .mega-cat-name {
  color: #2563eb;
}

.mega-cat-sub {
  font-size: 0.7rem;
  color: #94a3b8;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-cat-chevron {
  color: #cbd5e1;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}

.mega-cat.is-active .mega-cat-chevron,
.mega-cat:hover .mega-cat-chevron {
  color: #2563eb;
  transform: translateX(2px);
}

/* ── Right panel ── */
.mega-right {
  flex: 1;
  min-width: 0;
  padding: 20px 22px;
}

.mega-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
}

.mega-panel.is-active {
  display: flex;
  animation: megaPanelIn 0.17s ease;
}

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

.mega-panel-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-section-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2563eb;
  text-transform: uppercase;
}

.mega-section-text {
  font-size: 0.83rem;
  color: #475569;
  line-height: 1.58;
}

.mega-tasks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: tasksFadeIn 0.22s ease 0.07s backwards;
}

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

.mega-tasks-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.79rem;
  color: #64748b;
  line-height: 1.5;
}

.mega-tasks-list li::before {
  content: '';
  display: inline-block;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.4);
  margin-top: 5.5px;
  flex-shrink: 0;
}

/* Hide mega menu on mobile */
@media (max-width: 900px) {
  .mega-menu {
    display: none !important;
  }
  .nav-item-services .nav-dropdown-arrow {
    display: none;
  }
}

/* ─────────────── TENTANG KAMI DROPDOWN ─────────────── */
.nav-about-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.nav-dropdown-zone.menu-open .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 0.9;
}

.about-dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-zone.menu-open .about-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.about-dropdown-inner {
  width: 236px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 16px 48px rgba(15, 23, 42, 0.11);
  overflow: hidden;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.15s;
}

.about-drop-item:hover {
  background: #eff6ff;
  color: #0f172a;
}

.about-drop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  flex-shrink: 0;
  transition: background 0.15s;
}

.about-drop-item:hover .about-drop-icon {
  background: rgba(37, 99, 235, 0.15);
}

.about-drop-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.about-drop-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}

.about-drop-item:hover .about-drop-name {
  color: #2563eb;
}

.about-drop-desc {
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .about-dropdown {
    display: none !important;
  }
  .nav-item-about .nav-dropdown-arrow {
    display: none;
  }
}

/* ─────────────── LANGUAGE SWITCH ─────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(15, 23, 42, 0.38);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.06em;
  padding: 4px 3px;
  line-height: 1;
  transition: color 0.2s;
}

.lang-btn.is-active {
  color: #2563eb;
}

.lang-btn:hover:not(.is-active) {
  color: rgba(15, 23, 42, 0.65);
}

.lang-sep {
  color: rgba(15, 23, 42, 0.18);
  font-size: 0.72rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ─────────────── HERO CONTENT ─────────────── */
.hero-layout {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 200px);
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 580px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: #0f172a;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.78;
  color: #475569;
  max-width: 460px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─────────────── BUTTONS ─────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 7px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 7px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}

.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

/* Hero-specific button overrides */
.hero .btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.hero .btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.hero .btn-secondary {
  color: rgba(15, 23, 42, 0.7);
  border-color: rgba(15, 23, 42, 0.22);
}

.hero .btn-secondary:hover {
  border-color: rgba(15, 23, 42, 0.5);
  color: #0f172a;
  transform: translateY(-1px);
}

/* ─────────────── SHARED SECTION STRUCTURE ─────────────── */
main {
  background: transparent;
}

.section {
  padding: 100px 8%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ─────────────── SERVICES SECTION ─────────────── */
.services-section {
  background: transparent;
}

.services-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.18;
}

.section-sub {
  color: #64748b;
  font-size: 1rem;
  max-width: 440px;
  line-height: 1.7;
}

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

.card {
  padding: 32px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e8edf3;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
}

.card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
}

.card-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.22);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.card p {
  color: #64748b;
  font-size: 0.93rem;
  line-height: 1.68;
}

/* ─────────────── ABOUT SECTION ─────────────── */
.about-section {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 90%;
  background: radial-gradient(ellipse at right center, rgba(37, 99, 235, 0.045) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.about-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.18;
  margin-top: 12px;
}

.about-right p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 20px;
}

.about-right p:last-of-type {
  margin-bottom: 32px;
}

.about-legal-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-bottom: 32px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.about-legal-note::before {
  content: 'Legal';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ─────────────── PROCESS SECTION ─────────────── */
.process-section {
  background: #0c1e3d;
  padding: 80px 8%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(37, 99, 235, 0.18);
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 12% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 88% 50%, rgba(29, 78, 216, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.process-section .section-inner {
  position: relative;
  z-index: 1;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 32px;
}

.step:first-child {
  padding-left: 0;
}

.step:last-child {
  padding-right: 0;
}

.step-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.step-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  align-self: center;
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: #07101f;
  color: #ffffff;
  padding: 64px 8% 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-legal-name {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.footer-cta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-cta-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-cta .btn-primary {
  background: #ffffff;
  color: #0f172a;
  font-size: 0.88rem;
  padding: 12px 24px;
}

.footer-cta .btn-primary:hover {
  background: #f1f5f9;
}

.footer-wa-button {
  gap: 10px;
}

.wa-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  flex-shrink: 0;
}

.wa-icon svg,
.footer-contact-icon svg {
  width: 100%;
  height: 100%;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s, transform 0.2s;
}

.footer-contact-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.18);
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
}

.footer-contact-copy strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-contact-copy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  white-space: nowrap;
}

/* ─────────────── CHATBOT WIDGET ─────────────── */
.chatbot-shell {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  transition: background 0.2s, box-shadow 0.2s;
}

.chatbot-toggle:hover {
  background: #1e293b;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.chatbot-toggle-icon {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1;
}

.chatbot-panel {
  width: min(380px, calc(100vw - 32px));
  height: min(580px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
}

.chatbot-shell:not(.is-open) .chatbot-panel {
  display: none;
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: #0f172a;
  color: #ffffff;
  flex-shrink: 0;
}

.chatbot-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.chatbot-title {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.chatbot-minimize {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.15rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-minimize:hover {
  background: rgba(255, 255, 255, 0.18);
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
}

.chatbot-message {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 10px;
  line-height: 1.55;
  font-size: 0.9rem;
  white-space: pre-line;
}

.chatbot-message.bot {
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.chatbot-message.user {
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  background: #0f172a;
  color: #ffffff;
}

.chatbot-inline-link {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.chatbot-message.user .chatbot-inline-link {
  color: #bfdbfe;
}

.chatbot-options,
.chatbot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chatbot-option,
.chatbot-link {
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 7px 14px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.chatbot-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.chatbot-option:hover,
.chatbot-link:hover {
  border-color: #0f172a;
  background: #f1f5f9;
}

.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid #e8edf3;
  background: #ffffff;
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  min-width: 0;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  padding: 10px 14px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.chatbot-input:focus {
  border-color: #64748b;
  background: #ffffff;
}

.chatbot-input::placeholder {
  color: #94a3b8;
}

.chatbot-send {
  border: 0;
  border-radius: 7px;
  padding: 10px 16px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.chatbot-send:hover {
  background: #1e293b;
}

/* ─────────────── TYPING INDICATOR ─────────────── */
.chatbot-typing {
  display: inline-flex !important;
  align-items: center;
  padding: 15px 16px !important;
  min-width: 244px;
}

.chatbot-thinking-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.chatbot-thinking-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chatbot-thinking-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.2);
}

.chatbot-thinking-label {
  color: #334155;
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.chatbot-thinking-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 20px;
}

.chatbot-thinking-bars span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #93c5fd, #2563eb);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.22);
  transform-origin: center bottom;
  animation: ota-bars 1.25s ease-in-out infinite;
}

.chatbot-thinking-bars span:nth-child(2) {
  animation-delay: 0.12s;
}

.chatbot-thinking-bars span:nth-child(3) {
  animation-delay: 0.24s;
}

.chatbot-thinking-bars span:nth-child(4) {
  animation-delay: 0.36s;
}

@keyframes ota-bars {
  0%, 100% {
    height: 8px;
    opacity: 0.45;
  }
  50% {
    height: 20px;
    opacity: 1;
  }
}

.chatbot-input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.chatbot-send:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .step {
    padding: 0;
  }

  .step-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 24px 6% 72px;
  }

  .navbar {
    margin-bottom: 60px;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 16px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section {
    padding: 64px 6%;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-cta {
    text-align: left;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .chatbot-shell {
    right: 12px;
    left: 12px;
    bottom: 12px;
    align-items: stretch;
  }

  .chatbot-toggle {
    justify-content: center;
  }

  .chatbot-panel {
    width: 100%;
    height: min(72vh, 580px);
  }
}

/* ─────────────── SUBPAGE LAYOUT ─────────────── */
.subpage-wrap {
  min-height: 100vh;
  padding: 32px 8% 80px;
  background-color: #ffffff;
  background-image:
    radial-gradient(ellipse 65% 55% at 88% 88%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 8% 10%, rgba(59, 130, 246, 0.04) 0%, transparent 65%);
  position: relative;
}

.subpage-wrap .navbar {
  position: relative;
  z-index: 260;
}

.subpage-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 220px);
}

.service-page-main {
  display: block;
  min-height: auto;
}

.service-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 0 84px;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 28%, rgba(245, 158, 11, 0.12), transparent 24%),
    radial-gradient(circle at 88% 78%, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  z-index: 1;
}

.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  min-height: min(76vh, 720px);
  padding: clamp(44px, 6vw, 76px);
}

.service-hero-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.service-hero-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-hero-content h1 {
  font-size: clamp(3.25rem, 7vw, 5.3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #0f172a;
  margin-bottom: 24px;
}

.service-hero-text {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 36px;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.service-hero-secondary {
  color: rgba(15, 23, 42, 0.72);
  border-color: rgba(15, 23, 42, 0.18);
}

.service-hero-secondary:hover {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.42);
}

.service-hero-illustration {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-illustration img {
  width: 100%;
  max-width: 520px;
  max-height: 580px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ─────────────── CREATIVE UPGRADE PAGE ─────────────── */
.creative-upgrade-main {
  display: block;
}

.creative-upgrade-shell {
  max-width: 1280px;
  margin: 0 auto;
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  color: #0f172a;
}

.creative-upgrade-hero,
.creative-section,
.creative-process-band,
.creative-cta-band {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.07);
}

.creative-upgrade-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.creative-hero-copy,
.creative-hero-visual {
  padding: clamp(36px, 4vw, 52px);
}

.creative-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.creative-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #475569;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.creative-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.creative-display,
.creative-section-title,
.creative-service-card h3,
.creative-step-item h3,
.creative-portfolio-card h3,
.creative-stat-num,
.creative-cta-band h2 {
  font-family: "Syne", "DM Sans", sans-serif;
}

.creative-display {
  font-size: clamp(2.2rem, 4.1vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 6.8ch;
}

.creative-display em {
  font-style: italic;
  font-weight: 600;
  color: #475569;
}

.creative-lead {
  max-width: 470px;
  font-size: 0.95rem;
  line-height: 1.68;
  color: #475569;
  margin-bottom: 28px;
}

.creative-hero-actions,
.creative-cta-actions,
.creative-hero-subactions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.creative-solid-btn,
.creative-ghost-btn,
.creative-sub-btn,
.creative-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.creative-solid-btn {
  min-height: 48px;
  padding: 0 24px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #0f172a;
}

.creative-solid-btn:hover {
  transform: translateY(-1px);
  background: #020617;
}

.creative-ghost-btn {
  min-height: 48px;
  padding: 0 22px;
  background: transparent;
  color: #334155;
  border: 1px solid rgba(15, 23, 42, 0.14);
}

.creative-ghost-btn:hover,
.creative-sub-btn:hover,
.creative-filter-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.25);
  color: #0f172a;
}

.creative-stats-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.creative-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.creative-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.creative-stat-label {
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.creative-hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f8fafc;
}

.creative-hero-image-box {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.12), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(59, 130, 246, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 24px;
  margin-bottom: 16px;
}

.creative-hero-image-box img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.creative-sub-btn {
  flex: 1 1 180px;
  min-height: 46px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.creative-sub-btn.is-accent {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.creative-sub-btn.is-accent:hover {
  background: #020617;
  color: #ffffff;
}

.creative-section,
.creative-process-band,
.creative-cta-band {
  margin-top: 24px;
  padding: clamp(32px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
}

.creative-process-band {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.96));
}

.creative-section-head,
.creative-portfolio-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 32px;
}

.creative-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.creative-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.creative-section-sub {
  max-width: 620px;
  color: #475569;
  line-height: 1.75;
}

.creative-services-grid,
.creative-portfolio-grid {
  display: grid;
  gap: 16px;
}

.creative-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.creative-service-card,
.creative-portfolio-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.creative-service-card {
  min-height: 240px;
}

.creative-service-icon,
.creative-portfolio-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.creative-service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #0f172a;
}

.creative-service-icon.is-green,
.creative-portfolio-thumb.is-mint {
  background: #dcfce7;
}

.creative-service-icon.is-purple,
.creative-portfolio-thumb.is-lavender {
  background: #ede9fe;
}

.creative-service-icon.is-amber,
.creative-portfolio-thumb.is-amber {
  background: #fef3c7;
}

.creative-service-icon.is-blue,
.creative-portfolio-thumb.is-sky {
  background: #dbeafe;
}

.creative-service-icon.is-coral,
.creative-portfolio-thumb.is-coral {
  background: #ffe4e6;
}

.creative-service-icon.is-pink,
.creative-portfolio-thumb.is-pink {
  background: #fce7f3;
}

.creative-service-card h3,
.creative-step-item h3,
.creative-portfolio-card h3 {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.creative-service-card p,
.creative-step-item p,
.creative-portfolio-card p {
  color: #475569;
  line-height: 1.7;
}

.creative-service-meta {
  display: block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.82rem;
  color: #64748b;
}

.creative-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.creative-step-item {
  position: relative;
  text-align: center;
  padding: 0 6px;
}

.creative-step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: #ffffff;
  font-family: "Syne", "DM Sans", sans-serif;
  font-weight: 700;
}

.creative-step-item.is-active .creative-step-circle {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.creative-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
}

.creative-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.creative-filter-btn {
  min-height: 40px;
  padding: 0 16px;
  background: #ffffff;
  color: #64748b;
  border: 1px solid rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.creative-filter-btn.is-active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.creative-portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.creative-portfolio-thumb {
  width: 100%;
  min-height: 150px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: #0f172a;
}

.creative-portfolio-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.creative-pricing-band {
  margin-top: 24px;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.creative-pricing-note {
  margin: -4px 0 28px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.creative-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.creative-pricing-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.creative-pricing-card.is-featured {
  border-color: rgba(15, 23, 42, 0.24);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.creative-pricing-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.creative-pricing-badge.is-dark {
  background: #0f172a;
  color: #ffffff;
}

.creative-pricing-cat {
  margin-bottom: 6px;
  color: #64748b;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.creative-pricing-card h3 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.creative-pricing-range {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin-bottom: 10px;
}

.creative-pricing-range span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
}

.creative-pricing-desc {
  color: #475569;
  line-height: 1.72;
  margin-bottom: 20px;
}

.creative-pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.creative-pricing-list li {
  position: relative;
  padding-left: 22px;
  color: #475569;
  line-height: 1.65;
}

.creative-pricing-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #94a3b8;
}

.creative-pricing-btn {
  margin-top: auto;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  color: #0f172a;
  background: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.creative-pricing-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.25);
}

.creative-pricing-btn.is-dark {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.creative-pricing-btn.is-dark:hover {
  background: #020617;
  color: #ffffff;
}

.creative-cta-band {
  text-align: center;
  background:
    radial-gradient(circle at 16% 18%, rgba(245, 158, 11, 0.12), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(59, 130, 246, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.96));
}

.creative-cta-band h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}

.creative-cta-band p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: #475569;
  line-height: 1.75;
}

.creative-cta-actions {
  justify-content: center;
}

/* ABOUT IDENTITY PAGE */
.about-identity-main {
  display: block;
  min-height: auto;
}

.about-identity-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  color: #0f172a;
}

.about-identity-hero,
.about-identity-section,
.about-identity-manifesto,
.about-identity-legal,
.about-identity-next {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.94);
}

.about-identity-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  overflow: hidden;
}

.about-identity-copy,
.about-identity-aside {
  padding: clamp(34px, 4vw, 52px);
}

.about-identity-copy {
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.about-identity-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    #f8fafc;
}

.about-identity-kicker,
.about-identity-label,
.about-identity-mini-label,
.about-identity-next-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-identity-kicker {
  padding: 8px 14px;
  margin-bottom: 22px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.about-identity-display,
.about-identity-title,
.about-identity-pillar h3,
.about-identity-ecosystem-card h3,
.about-identity-value-card h3,
.about-identity-next-card h3 {
  font-family: "Syne", "DM Sans", sans-serif;
}

.about-identity-display {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 4.5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-identity-display em {
  font-style: italic;
  font-weight: 600;
  color: #475569;
}

.about-identity-lead,
.about-identity-overview-copy p,
.about-identity-sub,
.about-identity-ecosystem-card p,
.about-identity-value-card p,
.about-identity-next-card p,
.about-identity-legal p {
  color: #475569;
  line-height: 1.75;
}

.about-identity-lead {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.about-identity-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-identity-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.about-identity-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.25);
  color: #0f172a;
}

.about-identity-quote-card,
.about-identity-overview-note {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.about-identity-quote-card {
  padding: 24px;
}

.about-identity-mini-label {
  padding: 7px 12px;
  margin-bottom: 14px;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
}

.about-identity-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.about-identity-pillars {
  display: grid;
  gap: 14px;
}

.about-identity-pillar {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.about-identity-pillar-num,
.about-identity-value-num {
  display: inline-block;
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-identity-pillar h3,
.about-identity-ecosystem-card h3,
.about-identity-value-card h3,
.about-identity-next-card h3 {
  font-size: 1.18rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.about-identity-pillar p {
  color: #64748b;
  line-height: 1.68;
  font-size: 0.92rem;
}

.about-identity-section,
.about-identity-next {
  padding: clamp(34px, 4vw, 48px);
}

.about-identity-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.about-identity-label {
  padding: 8px 13px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.about-identity-label.is-light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.about-identity-title {
  max-width: 14ch;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-identity-sub {
  max-width: 680px;
  font-size: 0.96rem;
}

.about-identity-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
}

.about-identity-overview-copy p + p {
  margin-top: 16px;
}

.about-identity-overview-note {
  padding: 24px;
}

.about-identity-note-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.about-identity-note-list li {
  position: relative;
  padding-left: 18px;
  color: #475569;
  line-height: 1.68;
}

.about-identity-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2563eb;
}

.about-identity-ecosystem-grid,
.about-identity-values-grid,
.about-identity-next-grid {
  display: grid;
  gap: 18px;
}

.about-identity-ecosystem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-identity-ecosystem-card,
.about-identity-value-card,
.about-identity-next-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.about-identity-ecosystem-card,
.about-identity-value-card {
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.about-identity-card-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-identity-manifesto {
  padding: clamp(32px, 4vw, 48px);
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 32%),
    linear-gradient(145deg, #0f172a, #111827);
}

.about-identity-manifesto blockquote {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  line-height: 1.78;
  letter-spacing: -0.02em;
}

.about-identity-manifesto strong {
  color: #ffffff;
}

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

.about-identity-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
}

.about-identity-legal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #0f172a;
  color: #ffffff;
}

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

.about-identity-next-card {
  position: relative;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.about-identity-next-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.about-identity-next-kicker {
  padding: 6px 10px;
  margin-bottom: 14px;
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  font-size: 0.68rem;
}

.about-identity-next-card p {
  max-width: 42ch;
}

.about-identity-next-arrow {
  position: absolute;
  right: 22px;
  top: 22px;
  color: rgba(15, 23, 42, 0.34);
  font-size: 1.12rem;
  transition: transform 0.18s ease, color 0.18s ease;
}

.about-identity-next-card:hover .about-identity-next-arrow {
  transform: translate(2px, -2px);
  color: #0f172a;
}

/* ABOUT PROCESS PAGE */
.about-process-main {
  display: block;
  min-height: auto;
}

.about-process-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  color: #0f172a;
}

.about-process-hero,
.about-process-section,
.about-process-band,
.about-process-next {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.94);
}

.about-process-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  overflow: hidden;
}

.about-process-copy,
.about-process-aside {
  padding: clamp(34px, 4vw, 52px);
}

.about-process-copy {
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.about-process-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    #f8fafc;
}

.about-process-kicker,
.about-process-label,
.about-process-mini-label,
.about-process-next-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-process-kicker {
  padding: 8px 14px;
  margin-bottom: 22px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.about-process-display,
.about-process-title,
.about-process-principle h3,
.about-process-step-card h3,
.about-process-system-card h3,
.about-process-next-card h3,
.about-process-band-copy h2 {
  font-family: "Syne", "DM Sans", sans-serif;
}

.about-process-display {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-process-display em {
  font-style: italic;
  font-weight: 600;
  color: #475569;
}

.about-process-lead,
.about-process-sub,
.about-process-step-card p,
.about-process-system-card p,
.about-process-band-copy p,
.about-process-next-card p {
  color: #475569;
  line-height: 1.75;
}

.about-process-lead {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.about-process-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-process-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.about-process-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.25);
  color: #0f172a;
}

.about-process-note-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.about-process-mini-label {
  padding: 7px 12px;
  margin-bottom: 14px;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
}

.about-process-note {
  font-size: 1.03rem;
  line-height: 1.8;
  color: #0f172a;
}

.about-process-principles {
  display: grid;
  gap: 14px;
}

.about-process-principle {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.about-process-principle-num,
.about-process-step-num {
  display: inline-block;
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-process-principle h3,
.about-process-step-card h3,
.about-process-system-card h3,
.about-process-next-card h3 {
  font-size: 1.16rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.about-process-principle p {
  color: #64748b;
  line-height: 1.68;
  font-size: 0.92rem;
}

.about-process-section,
.about-process-next {
  padding: clamp(34px, 4vw, 48px);
}

.about-process-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.about-process-label {
  padding: 8px 13px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.about-process-label.is-light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.about-process-title {
  max-width: 15ch;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-process-sub {
  max-width: 680px;
  font-size: 0.96rem;
}

.about-process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.about-process-step-card,
.about-process-system-card,
.about-process-next-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.about-process-step-card,
.about-process-system-card {
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.about-process-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-process-card-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-process-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: clamp(32px, 4vw, 46px);
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 32%),
    linear-gradient(145deg, #0f172a, #111827);
}

.about-process-band-copy h2 {
  max-width: 13ch;
  margin: 10px 0 14px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-process-band-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

.about-process-band-list {
  display: grid;
  gap: 14px;
}

.about-process-band-item {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  line-height: 1.6;
}

.about-process-next-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-process-next-card {
  position: relative;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.about-process-next-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.about-process-next-kicker {
  padding: 6px 10px;
  margin-bottom: 14px;
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  font-size: 0.68rem;
}

.about-process-next-arrow {
  position: absolute;
  right: 22px;
  top: 22px;
  color: rgba(15, 23, 42, 0.34);
  font-size: 1.12rem;
  transition: transform 0.18s ease, color 0.18s ease;
}

.about-process-next-card:hover .about-process-next-arrow {
  transform: translate(2px, -2px);
  color: #0f172a;
}

/* ABOUT TEAM PAGE */
.about-team-main {
  display: block;
  min-height: auto;
}

.about-team-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-family: "DM Sans", "Segoe UI", system-ui, sans-serif;
  color: #0f172a;
}

.about-team-hero,
.about-team-section,
.about-team-band,
.about-team-next {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.94);
}

.about-team-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  overflow: hidden;
}

.about-team-copy,
.about-team-aside {
  padding: clamp(34px, 4vw, 52px);
}

.about-team-copy {
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.about-team-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 34%),
    #f8fafc;
}

.about-team-kicker,
.about-team-label,
.about-team-mini-label,
.about-team-next-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-team-kicker {
  padding: 8px 14px;
  margin-bottom: 22px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.about-team-display,
.about-team-title,
.about-team-lane-card h3,
.about-team-sync-card h3,
.about-team-expect-card h3,
.about-team-next-card h3 {
  font-family: "Syne", "DM Sans", sans-serif;
}

.about-team-display {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-team-display em {
  font-style: italic;
  font-weight: 600;
  color: #475569;
}

.about-team-lead,
.about-team-sub,
.about-team-lane-card p,
.about-team-sync-card p,
.about-team-expect-card p,
.about-team-next-card p {
  color: #475569;
  line-height: 1.75;
}

.about-team-lead {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.about-team-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-team-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.about-team-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.25);
  color: #0f172a;
}

.about-team-summary-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.about-team-mini-label {
  padding: 7px 12px;
  margin-bottom: 14px;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
}

.about-team-summary {
  font-size: 1.03rem;
  line-height: 1.8;
  color: #0f172a;
}

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

.about-team-stat {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.about-team-stat-num {
  display: block;
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.about-team-stat-label {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.5;
}

.about-team-section,
.about-team-next {
  padding: clamp(34px, 4vw, 48px);
}

.about-team-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.about-team-label {
  padding: 8px 13px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.about-team-label.is-light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.about-team-title {
  max-width: 15ch;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-team-sub {
  max-width: 680px;
  font-size: 0.96rem;
}

.about-team-lanes-grid,
.about-team-sync-grid,
.about-team-expect-grid,
.about-team-next-grid {
  display: grid;
  gap: 18px;
}

.about-team-lanes-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.about-team-expect-grid,
.about-team-next-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-team-lane-card,
.about-team-sync-card,
.about-team-expect-card,
.about-team-next-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.about-team-lane-card,
.about-team-sync-card,
.about-team-expect-card {
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.about-team-lane-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-team-lane-card h3,
.about-team-sync-card h3,
.about-team-expect-card h3,
.about-team-next-card h3 {
  font-size: 1.16rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.about-team-band {
  padding: clamp(32px, 4vw, 46px);
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 32%),
    linear-gradient(145deg, #0f172a, #111827);
}

.about-team-band blockquote {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  line-height: 1.78;
  letter-spacing: -0.02em;
}

.about-team-band strong {
  color: #ffffff;
}

.about-team-expect-num {
  display: inline-block;
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-team-next-card {
  position: relative;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.about-team-next-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.about-team-next-kicker {
  padding: 6px 10px;
  margin-bottom: 14px;
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
  font-size: 0.68rem;
}

.about-team-next-arrow {
  position: absolute;
  right: 22px;
  top: 22px;
  color: rgba(15, 23, 42, 0.34);
  font-size: 1.12rem;
  transition: transform 0.18s ease, color 0.18s ease;
}

.about-team-next-card:hover .about-team-next-arrow {
  transform: translate(2px, -2px);
  color: #0f172a;
}

.placeholder-card {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 20px 60px rgba(15, 23, 42, 0.08);
  padding: 52px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.placeholder-badge {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.placeholder-card h1 {
  font-size: 1.65rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.placeholder-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 28px;
}

.placeholder-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.45);
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 8px 18px;
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}

.placeholder-back:hover {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.35);
}

/* mega-cat as <a> — keep button appearance intact */
.mega-cat {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .about-process-hero,
  .about-team-hero,
  .about-identity-hero {
    grid-template-columns: 1fr;
  }

  .about-process-copy,
  .about-team-copy,
  .about-identity-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .about-process-section-head,
  .about-team-section-head,
  .about-identity-section-head,
  .about-identity-overview-grid {
    grid-template-columns: 1fr;
  }

  .about-process-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-team-lanes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-process-system-grid,
  .about-process-next-grid,
  .about-team-sync-grid,
  .about-team-expect-grid,
  .about-team-next-grid,
  .about-identity-ecosystem-grid,
  .about-identity-next-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creative-upgrade-hero {
    grid-template-columns: 1fr;
  }

  .creative-hero-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .creative-services-grid,
  .creative-portfolio-grid,
  .creative-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .creative-step-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-process-hero,
  .about-process-section,
  .about-process-band,
  .about-process-next,
  .about-team-hero,
  .about-team-section,
  .about-team-band,
  .about-team-next,
  .about-identity-hero,
  .about-identity-section,
  .about-identity-manifesto,
  .about-identity-legal,
  .about-identity-next {
    border-radius: 24px;
  }

  .about-process-copy,
  .about-process-aside,
  .about-process-section,
  .about-process-band,
  .about-process-next,
  .about-team-copy,
  .about-team-aside,
  .about-team-section,
  .about-team-band,
  .about-team-next,
  .about-identity-copy,
  .about-identity-aside,
  .about-identity-section,
  .about-identity-manifesto,
  .about-identity-next {
    padding: 24px;
  }

  .about-process-display,
  .about-team-display,
  .about-identity-display {
    font-size: 2.2rem;
  }

  .about-process-steps-grid,
  .about-process-system-grid,
  .about-process-next-grid,
  .about-team-lanes-grid,
  .about-team-sync-grid,
  .about-team-expect-grid,
  .about-team-next-grid,
  .about-identity-ecosystem-grid,
  .about-identity-values-grid,
  .about-identity-next-grid {
    grid-template-columns: 1fr;
  }

  .about-process-band,
  .about-team-stats {
    grid-template-columns: 1fr;
  }

  .about-identity-legal {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .creative-upgrade-hero,
  .creative-section,
  .creative-process-band,
  .creative-pricing-band,
  .creative-cta-band {
    border-radius: 24px;
  }

  .creative-hero-copy,
  .creative-hero-visual,
  .creative-section,
  .creative-process-band,
  .creative-pricing-band,
  .creative-cta-band {
    padding: 24px;
  }

  .creative-display {
    font-size: 2.15rem;
  }

  .creative-section-head,
  .creative-portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .creative-services-grid,
  .creative-portfolio-grid,
  .creative-pricing-grid,
  .creative-steps-grid {
    grid-template-columns: 1fr;
  }

  .creative-hero-image-box {
    min-height: 320px;
  }

  .creative-stats-row {
    gap: 18px;
  }

  .subpage-wrap {
    padding: 24px 6% 60px;
  }

  .service-hero {
    padding: 20px 0 48px;
  }

  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 28px 22px 32px;
    text-align: center;
  }

  .service-hero-content {
    max-width: none;
    margin: 0 auto;
  }

  .service-hero-content h1 {
    font-size: 2.85rem;
  }

  .service-hero-text {
    max-width: none;
    font-size: 0.98rem;
    margin-bottom: 28px;
  }

  .service-hero-actions {
    justify-content: center;
  }

  .service-hero-illustration {
    justify-content: center;
  }

  .placeholder-card {
    padding: 36px 28px;
  }

  .placeholder-card h1 {
    font-size: 1.35rem;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 34px;
  }

  .nav-links,
  .lang-switch {
    display: none !important;
  }

  .nav-mobile-toggle {
    display: inline-flex;
  }

  .logo-img {
    height: 32px;
  }
}
