:root {
  --tp-common-white: #ffffff;
  --tp-common-gray: #FEF3DF;
  --tp-theme-primary: #D4AF37;
  --tp-theme-secondary: #781F1F;
  --tp-theme-3: #1B2335;
  --tp-heading-primary: #781F1F;
  --tp-heading-secondary: #1F242C;
  --tp-text-body: rgb(86, 89, 105);
  --tp-border-1: #e6ebf0;
  --gray-bg-2: #f6f6f6;
  --header-h: 76px;
  --page-gutter-total: clamp(2rem, 8vw, 8rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ff-heading: "Plus Jakarta Sans", sans-serif;
  --ff-p: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-heading);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tp-text-body);
  background: var(--tp-common-white);
  overflow-x: hidden;
}

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

a,
button,
input,
textarea,
select,
label,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
.btn,
.nav-toggle,
.nav-close,
.inquiry-option,
summary {
  touch-action: manipulation;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
summary:focus:not(:focus-visible) {
  outline: none;
}

ul {
  list-style: none;
}

.container {
  width: calc(100% - var(--page-gutter-total));
  margin-inline: auto;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: multiply;
}

body.has-pointer .cursor-glow.is-on {
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 34px;
  border: 0;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s, transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--tp-common-white);
  background: var(--tp-theme-primary);
}

.btn-primary:hover {
  background: var(--tp-theme-secondary);
  color: var(--tp-common-white);
}

.btn-outline {
  color: var(--tp-heading-secondary);
  background: transparent;
  border: 1px solid rgba(120, 31, 31, 0.28);
}

.btn-outline:hover {
  border-color: var(--tp-theme-secondary);
  color: var(--tp-theme-secondary);
  background: rgba(120, 31, 31, 0.04);
  transform: translateY(-2px);
}

.btn-navy {
  color: #fff;
  background: var(--tp-theme-3);
  border: 0;
}

.btn-navy:hover {
  color: #fff;
  background: var(--tp-theme-3);
  border: 0;
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(120, 31, 31, 0.08);
}

.site-header.is-scrolled .nav-desktop a {
  color: var(--tp-heading-secondary);
}

.site-header.is-scrolled .nav-desktop a:hover,
.site-header.is-scrolled .nav-desktop a.is-active {
  color: var(--tp-theme-secondary);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--tp-heading-secondary);
}

.header-inner {
  width: calc(100% - var(--page-gutter-total));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

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

.logo-img {
  display: block;
  height: 50px;
  width: auto;
  max-width: 125px;
  object-fit: contain;
  object-position: left center;
}

.nav-desktop {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--tp-heading-secondary);
  transition: color 0.25s;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--tp-theme-secondary);
}

.nav-drawer {
  display: none;
}

.header-cta {
  padding: 12px 22px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: 0.25rem;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tp-heading-secondary);
}

.nav-backdrop {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-h) + 2rem) 0 1.25rem;
  color: var(--tp-heading-secondary);
  background: var(--tp-common-white);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--tp-common-white);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 42% at 82% 28%, rgba(212, 175, 55, 0.14), transparent 62%),
    radial-gradient(ellipse 40% 48% at 8% 78%, rgba(120, 31, 31, 0.07), transparent 58%);
  animation: meshDrift 16s ease-in-out infinite alternate;
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(212, 175, 55, 0.06) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shineSweep 9s ease-in-out infinite;
}

.hero-shell {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: calc(100% - var(--page-gutter-total));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
  align-content: center;
}

.hero-copy {
  container-type: inline-size;
  container-name: hero-copy;
  min-width: 0;
}

.hero-brand {
  font-size: clamp(1.2rem, 2.4vw + 0.7rem, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--tp-theme-secondary);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.hero-brand-dot {
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  margin: 0 0.45em;
  vertical-align: 0.12em;
  border-radius: 50%;
  background: var(--tp-theme-primary);
}

.hero-title {
  position: relative;
  font-size: clamp(1.75rem, 2.4vw + 0.95rem, 3.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin-bottom: 1.15rem;
  color: var(--tp-heading-secondary);
  max-width: min(100%, 16em);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-title-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-rotator {
  display: grid;
  width: 100%;
}

.hero-rotator-item {
  grid-area: 1 / 1;
  align-self: start;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.55rem);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    visibility 0.55s;
  pointer-events: none;
}

.hero-rotator-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.hero-rotator-item.is-exit {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.45rem);
}

.hero-lead {
  font-family: var(--ff-p);
  font-size: clamp(0.98rem, 0.4vw + 0.9rem, 1.08rem);
  line-height: 1.7;
  color: #0d1014;
  font-weight: 500;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Product stage */
.hero-stage {
  position: relative;
  perspective: 1200px;
  width: 100%;
  min-width: 0;
}

.ui-frame {
  width: 100%;
  max-width: 100%;
  background: #f3f4f6;
  border: 1px solid var(--tp-border-1);
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(27, 35, 53, 0.14);
  transform: rotateY(-8deg) rotateX(4deg);
  transform-origin: center left;
  animation: stageFloat 7s ease-in-out infinite;
  overflow: hidden;
}

.ui-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.9rem;
  background: #fff;
  border-bottom: 1px solid var(--tp-border-1);
}

.ui-dots {
  display: flex;
  gap: 5px;
}

.ui-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  display: block;
}

.ui-dots i:first-child { background: #e07474; }
.ui-dots i:nth-child(2) { background: var(--tp-theme-primary); }
.ui-dots i:nth-child(3) { background: #6bcf8e; }

.ui-url {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #6b7280;
  font-weight: 600;
}

.ui-body {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: stretch;
  min-height: 420px;
  background: #f3f4f6;
}

.ui-side {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem 0.7rem;
  background: #fff;
  border-right: 1px solid var(--tp-border-1);
}

.ui-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.1rem 0.35rem;
}

.ui-logo-img {
  display: block;
  width: 100%;
  max-width: 108px;
  height: auto;
  object-fit: contain;
}

.ui-user {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem;
  background: #f8f8f8;
  border-radius: 10px;
}

.ui-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tp-theme-secondary);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

.ui-user b {
  display: block;
  font-size: 9px;
  color: var(--tp-heading-secondary);
  line-height: 1.2;
}

.ui-user small {
  font-size: 8px;
  color: #9ca3af;
}

.ui-menu {
  display: grid;
  gap: 0.22rem;
}

.ui-menu span {
  display: block;
  padding: 0.34rem 0.5rem;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  color: #6b7280;
}

.ui-menu .is-on {
  background: var(--tp-theme-secondary);
  color: #fff;
}

.ui-main {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem 0.95rem;
  min-width: 0;
  min-height: 100%;
}

.ui-toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ui-search {
  flex: 1;
  min-width: 0;
  padding: 0.4rem 0.7rem;
  background: #fff;
  border: 1px solid var(--tp-border-1);
  border-radius: 999px;
  font-size: 9px;
  color: #9ca3af;
}

.ui-date {
  flex-shrink: 0;
  padding: 0.4rem 0.65rem;
  background: #f8e8e8;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  color: var(--tp-theme-secondary);
}

.ui-welcome {
  margin-bottom: 0;
}

.ui-welcome strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--tp-heading-secondary);
  line-height: 1.2;
}

.ui-welcome em {
  font-style: normal;
  font-size: 9px;
  color: #9ca3af;
}

.ui-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0;
}

.ui-kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.65rem 0.55rem;
  background: var(--tp-theme-secondary);
  border-radius: 10px;
  color: #fff;
}

.ui-kpi small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.15rem;
}

.ui-kpi b {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}

.ui-kpi-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
}

.ui-kpi-icon.gold {
  background: rgba(212, 175, 55, 0.9);
}

.ui-kpi-icon.soft {
  background: rgba(255, 255, 255, 0.22);
}

.ui-panels {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.5rem;
}

.ui-bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.5rem;
  margin-top: auto;
}

.ui-action-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.ui-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.ui-action.maroon {
  background: var(--tp-theme-secondary);
}

.ui-action.gold {
  background: var(--tp-theme-primary);
  color: #1f242c;
}

.ui-task-list {
  display: grid;
  gap: 0.3rem;
}

.ui-task-list > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.4rem;
  border-radius: 8px;
  background: #f8f8f8;
  font-size: 8px;
  font-weight: 600;
  color: var(--tp-heading-secondary);
}

.ui-task-list > div span:last-child {
  color: var(--tp-theme-secondary);
  font-weight: 700;
}

.ui-panel {
  background: #fff;
  border: 1px solid var(--tp-border-1);
  border-radius: 12px;
  padding: 0.65rem 0.7rem;
  min-width: 0;
}

.ui-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.ui-panel-head strong {
  font-size: 10px;
  font-weight: 700;
  color: var(--tp-heading-secondary);
}

.ui-chip {
  font-style: normal;
  font-size: 8px;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--tp-theme-primary);
  color: #fff;
}

.ui-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 68px;
  padding: 0.2rem 0;
}

.ui-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--tp-theme-primary), var(--tp-theme-secondary));
  transform-origin: bottom;
  animation: barRise 1.4s var(--ease) both;
}

.ui-chart span:nth-child(2) { animation-delay: 0.08s; }
.ui-chart span:nth-child(3) { animation-delay: 0.16s; }
.ui-chart span:nth-child(4) { animation-delay: 0.24s; }
.ui-chart span:nth-child(5) { animation-delay: 0.32s; }
.ui-chart span:nth-child(6) { animation-delay: 0.4s; }

.ui-rows {
  display: grid;
  gap: 0.35rem;
}

.ui-rows > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.35rem;
  font-size: 9px;
  padding: 0.4rem 0.35rem;
  border-radius: 8px;
  background: #f8f8f8;
  color: var(--tp-heading-secondary);
  font-weight: 600;
}

.ui-rows > div span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-rows .ok,
.ui-rows .wait,
.ui-rows .draft {
  flex-shrink: 0;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}

.ui-rows .ok {
  color: #166534;
  background: #dcfce7;
}

.ui-rows .wait {
  color: #92400e;
  background: #fef3c7;
}

.ui-rows .draft {
  color: #6b7280;
  background: #e5e7eb;
}

.hero-scroll {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  margin: 1.5rem auto 0.35rem;
  padding: 0.35rem 0.75rem;
  min-width: 0;
  text-decoration: none;
  color: var(--tp-heading-secondary);
  pointer-events: auto;
}

.hero-scroll-mouse {
  width: 24px;
  height: 36px;
  border: 1px solid rgba(120, 31, 31, 0.32);
  border-radius: 20px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-scroll-mouse span {
  width: 3px;
  height: 6px;
  background: var(--tp-theme-primary);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

.hero-scroll-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
}

@keyframes shineSweep {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
}

@keyframes stageFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-6deg) rotateX(3deg) translateY(-10px); }
}

@keyframes barRise {
  from { transform: scaleY(0); opacity: 0.3; }
  to { transform: scaleY(1); opacity: 1; }
}

/* Sections */
.section {
  padding: clamp(4.75rem, 10vw, 7.5rem) 0;
}

.section-pre {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tp-theme-primary);
  margin-bottom: 0.85rem;
}

.section-pre.on-dark {
  color: var(--tp-theme-primary);
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--tp-heading-primary);
  margin-bottom: 1rem;
}

.section-title.on-dark {
  color: #fff;
}

.section-text {
  font-family: var(--ff-p);
  font-size: 1.02rem;
  line-height: 1.75;
  color: #12151a;
  font-weight: 500;
  max-width: 32rem;
}

.section-text.large {
  font-size: 1.2rem;
  max-width: 36rem;
  color: #0d1014;
  font-weight: 600;
}

.section-text.on-dark {
  color: rgba(254, 243, 223, 0.75);
}

.section-head {
  margin-bottom: 3.25rem;
}

.split-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.section-head.light .section-title {
  color: #fff;
}

.section-head.light .section-text {
  max-width: 46rem;
  margin-bottom: 0.5rem;
}

/* About */
.about {
  background:
    linear-gradient(180deg, var(--gray-bg-2) 0%, #fff 100%);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 2.25rem;
}

.metric {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  min-height: 168px;
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: 16px;
  border: 1px solid transparent;
  overflow: hidden;
  min-width: 0;
}

.metric strong {
  display: block;
  font-size: clamp(2.1rem, 3.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.metric-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.metric-label {
  font-family: var(--ff-p);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.metric-detail {
  font-family: var(--ff-p);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
}

.metric--maroon {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 48%),
    var(--tp-theme-secondary);
  color: #fff;
}

.metric--maroon strong,
.metric--maroon .metric-label {
  color: #fff;
}

.metric--maroon .metric-detail {
  color: rgba(255, 255, 255, 0.8);
}

.metric--gold {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 50%),
    var(--tp-theme-primary);
  color: #1f242c;
}

.metric--gold strong,
.metric--gold .metric-label {
  color: #1f242c;
}

.metric--gold .metric-detail {
  color: rgba(31, 36, 44, 0.78);
}

.metric--navy {
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.16), transparent 52%),
    var(--tp-theme-3);
  color: #fff;
}

.metric--navy strong,
.metric--navy .metric-label {
  color: #fff;
}

.metric--navy .metric-detail {
  color: rgba(254, 243, 223, 0.78);
}

.metric--cream {
  background:
    linear-gradient(145deg, #fff, transparent 55%),
    var(--tp-common-gray);
  border-color: rgba(120, 31, 31, 0.12);
  color: var(--tp-heading-secondary);
}

.metric--cream strong {
  color: var(--tp-heading-primary);
}

.metric--cream .metric-label {
  color: var(--tp-heading-secondary);
}

.metric--cream .metric-detail {
  color: var(--tp-text-body);
}

.metric-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--tp-theme-primary);
}

.about-body .section-text {
  max-width: 40rem;
  color: #12151a;
  font-weight: 500;
}

.about-body .section-text.large {
  font-weight: 600;
  color: #0d1014;
}

.about-body .section-text + .section-text {
  margin-top: 1rem;
}

/* Capabilities — moving cards */
.features {
  background: var(--gray-bg-2);
  overflow: hidden;
}

.features-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.features-head .section-title {
  margin-inline: auto;
}

.features-head .section-text {
  margin: 0.9rem auto 0;
  max-width: 38rem;
  text-align: center;
  color: #12151a;
}

.capability-marquee {
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.55) 20%,
    #000 30%,
    #000 70%,
    rgba(0, 0, 0, 0.55) 80%,
    rgba(0, 0, 0, 0.12) 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 10%,
    rgba(0, 0, 0, 0.55) 20%,
    #000 30%,
    #000 70%,
    rgba(0, 0, 0, 0.55) 80%,
    rgba(0, 0, 0, 0.12) 90%,
    transparent 100%
  );
}

.capability-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  padding: 0.35rem 1.25rem 0.75rem;
  animation: capabilityMove 55s linear infinite;
  will-change: transform;
}

.capability {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 0 0 min(300px, 78vw);
  width: min(300px, 78vw);
  padding: 1.35rem 1.3rem 1.45rem;
  background: var(--tp-common-white);
  border: 1px solid var(--tp-border-1);
  border-top: 3px solid var(--tp-theme-primary);
  border-radius: 14px;
  min-height: 240px;
  transition: border-color 0.35s, box-shadow 0.35s;
}

.capability:hover {
  border-color: rgba(120, 31, 31, 0.18);
  box-shadow: 0 14px 32px rgba(27, 35, 53, 0.08);
}

.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}

.capability-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--tp-theme-secondary);
}

.capability-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-index {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--tp-theme-primary);
}

.capability h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--tp-heading-primary);
}

.capability p {
  font-family: var(--ff-p);
  font-size: 0.92rem;
  line-height: 1.55;
  color: #12151a;
  margin-top: auto;
}

.capability-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.15rem;
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(120, 31, 31, 0.13);
  border-left: 4px solid var(--tp-theme-primary);
  border-radius: 15px;
  background: var(--tp-common-white);
  box-shadow: 0 12px 32px rgba(27, 35, 53, 0.06);
}

.capability-custom-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
}

.capability-custom h3 {
  font-size: 1.05rem;
  color: var(--tp-heading-primary);
}

.capability-custom p {
  margin-top: 0.3rem;
  font-family: var(--ff-p);
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--tp-text-body);
}

.capability-custom .btn {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .capability-marquee {
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }

  .capability-custom {
    flex-direction: column;
    align-items: start;
    margin-top: 1.4rem;
    padding: 1.1rem;
  }

  .capability-custom .btn {
    width: 100%;
  }
}

@keyframes capabilityMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Workflow */
.modules {
  background: var(--tp-theme-secondary);
  position: relative;
  overflow: hidden;
}

.modules::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(27, 35, 53, 0.35));
  pointer-events: none;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--tp-theme-primary), rgba(212, 175, 55, 0.2));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s var(--ease);
}

.timeline.is-visible::before {
  transform: scaleX(1);
}

.timeline-step {
  padding: 2.5rem 1.15rem 0 0;
  position: relative;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tp-theme-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.timeline-step h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}

.timeline-step p {
  font-family: var(--ff-p);
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(254, 243, 223, 0.78);
  max-width: 15.5rem;
}

/* Portals */
.portals {
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(212, 175, 55, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(120, 31, 31, 0.08), transparent 50%),
    var(--tp-common-gray);
}

.portals-head {
  max-width: 46rem;
}

.portals-head .section-text {
  max-width: 42rem;
}

.portal-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.portal-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3.5vw, 2.35rem);
  border-radius: 18px;
  border: 1px solid transparent;
  overflow: hidden;
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.portal-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(27, 35, 53, 0.12);
}

.admin-panel {
  background: linear-gradient(165deg, #fff 0%, #fffaf2 100%);
  border-color: rgba(120, 31, 31, 0.1);
  border-top: 4px solid var(--tp-theme-secondary);
  box-shadow: 0 10px 28px rgba(27, 35, 53, 0.05);
}

.client-panel {
  background: linear-gradient(165deg, #243047 0%, var(--tp-theme-3) 55%, #161c2a 100%);
  border-color: rgba(212, 175, 55, 0.22);
  border-top: 4px solid var(--tp-theme-primary);
  color: #fff;
  box-shadow: 0 10px 28px rgba(27, 35, 53, 0.18);
}

.portal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.85rem;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--tp-theme-secondary);
  color: #fff;
}

.client-panel .portal-badge {
  background: var(--tp-theme-primary);
  color: #1f242c;
}

.portal-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
  margin: 0;
}

.client-panel .portal-label {
  color: var(--tp-theme-primary);
}

.portal-head h3 {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--tp-heading-primary);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}

.client-panel .portal-head h3 {
  color: #fff;
}

.portal-desc {
  font-family: var(--ff-p);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--tp-text-body);
  margin-bottom: 1.35rem;
}

.client-panel .portal-desc {
  color: rgba(254, 243, 223, 0.78);
  margin-bottom: 1.1rem;
}

.portal-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 1.5rem;
  margin-top: 0;
}

.portal-group {
  min-width: 0;
  padding: 1rem 1rem 0.85rem;
  border-radius: 12px;
  background: rgba(120, 31, 31, 0.04);
}

.client-panel .portal-group {
  background: rgba(255, 255, 255, 0.05);
}

.portal-cols h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(120, 31, 31, 0.12);
}

.client-panel .portal-cols h4 {
  color: var(--tp-theme-primary);
  border-bottom-color: rgba(212, 175, 55, 0.28);
}

.portal-cols ul {
  display: grid;
  gap: 0.15rem;
}

.portal-cols li {
  position: relative;
  padding: 0.42rem 0 0.42rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--tp-heading-secondary);
}

.client-panel .portal-cols li {
  color: rgba(255, 255, 255, 0.9);
}

.portal-cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--tp-theme-primary);
  box-shadow: inset 0 0 0 1px rgba(120, 31, 31, 0.15);
}

.client-panel .portal-cols li::before {
  background: var(--tp-theme-primary);
  box-shadow: none;
}

/* Pricing */
.pricing {
  background:
    radial-gradient(ellipse 45% 35% at 8% 5%, rgba(212, 175, 55, 0.13), transparent 60%),
    var(--tp-common-white);
}

.pricing-head {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.pricing-head .section-text {
  max-width: 45rem;
  margin-inline: auto;
}

.pricing-groups {
  display: grid;
  gap: 1.5rem;
}

.pricing-card {
  overflow: hidden;
  border: 1px solid rgba(27, 35, 53, 0.12);
  border-top: 3px solid var(--tp-theme-secondary);
  border-radius: 18px;
  background: var(--tp-common-white);
  box-shadow: 0 18px 50px rgba(27, 35, 53, 0.08);
}

.pricing-card-client {
  border-top-color: var(--tp-theme-primary);
}

.pricing-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.45rem 1.6rem;
  border-bottom: 1px solid rgba(27, 35, 53, 0.1);
  background: var(--tp-common-white);
}

.pricing-card-head::after {
  content: none;
}

.pricing-card-client .pricing-card-head {
  border-bottom-color: rgba(27, 35, 53, 0.1);
  background: var(--tp-common-white);
}

.pricing-card-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.pricing-card-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  color: var(--tp-common-white);
  background: var(--tp-theme-secondary);
  box-shadow: 0 8px 20px rgba(120, 31, 31, 0.2);
}

.pricing-card-client .pricing-card-icon {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--tp-heading-primary);
  background: var(--tp-theme-primary);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.24);
}

.pricing-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card-kicker {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
}

.pricing-card-head h3 {
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.25;
  color: var(--tp-heading-primary);
}

.pricing-card-head p {
  margin-top: 0.28rem;
  font-family: var(--ff-p);
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--tp-text-body);
}

.on-request,
.server {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  border-radius: 999px;
  font-weight: 700;
}

.pricing-table-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 31, 31, 0.3) transparent;
}

.pricing-scroll-hint {
  display: none;
}

.pricing-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  font-family: var(--ff-p);
}

.pricing-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-card-client .pricing-table {
  min-width: 720px;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid rgba(27, 35, 53, 0.08);
}

.pricing-table thead th {
  font-size: 0.74rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: var(--tp-heading-primary);
}

.pricing-table thead th:first-child,
.pricing-table tbody th {
  text-align: left;
}

.pricing-table tbody th {
  border-left: 3px solid transparent;
  font-size: 0.95rem;
  color: var(--tp-heading-primary);
}

.pricing-table tbody td {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tp-heading-secondary);
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody tr {
  transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.055);
}

.pricing-table tbody tr:hover th {
  border-left-color: var(--tp-theme-primary);
}

.on-request {
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  color: var(--tp-common-white);
  background: linear-gradient(135deg, var(--tp-theme-secondary), #541616);
  box-shadow: 0 4px 10px rgba(120, 31, 31, 0.18);
}

.server {
  padding: 0.36rem 0.68rem;
  font-size: 0.74rem;
}

.server.applicable {
  color: var(--tp-heading-primary);
  background: var(--tp-theme-primary);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.server.included {
  color: var(--tp-common-white);
  background: #347255;
  box-shadow: 0 4px 10px rgba(52, 114, 85, 0.18);
}

.pricing-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  color: var(--tp-common-white);
  background: var(--tp-heading-primary);
}

.pricing-cta div {
  display: grid;
  gap: 0.25rem;
}

.pricing-cta strong {
  font-size: 1rem;
}

.pricing-cta span {
  font-family: var(--ff-p);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-cta .btn {
  flex: 0 0 auto;
}

.pricing-cta .btn-primary:hover {
  color: var(--tp-common-white);
  background: var(--tp-theme-3);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.7);
}

/* FAQ */
.faq {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(212, 175, 55, 0.12), transparent 58%),
    linear-gradient(180deg, #fff 0%, var(--tp-common-gray) 100%);
}

.faq-head {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.faq-head .section-text {
  max-width: 40rem;
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 46rem;
  margin-inline: auto;
}

@keyframes faq-item-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.faq-list .faq-item {
  opacity: 0;
}

.faq-list.is-visible .faq-item {
  animation: faq-item-in 0.45s var(--ease) both;
}

.faq-list.is-visible .faq-item:nth-child(1) { animation-delay: 0.04s; }
.faq-list.is-visible .faq-item:nth-child(2) { animation-delay: 0.08s; }
.faq-list.is-visible .faq-item:nth-child(3) { animation-delay: 0.12s; }
.faq-list.is-visible .faq-item:nth-child(4) { animation-delay: 0.16s; }
.faq-list.is-visible .faq-item:nth-child(5) { animation-delay: 0.2s; }
.faq-list.is-visible .faq-item:nth-child(6) { animation-delay: 0.24s; }
.faq-list.is-visible .faq-item:nth-child(7) { animation-delay: 0.28s; }

.faq-item {
  border: 1px solid rgba(120, 31, 31, 0.1);
  border-left: 3px solid transparent;
  border-radius: 14px;
  background: var(--tp-common-white);
  overflow: clip;
  position: relative;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(120, 31, 31, 0.18);
  box-shadow: 0 8px 22px rgba(27, 35, 53, 0.05);
}

.faq-item[open] {
  border-color: rgba(120, 31, 31, 0.16);
  border-left-color: var(--tp-theme-secondary);
  box-shadow: 0 10px 26px rgba(27, 35, 53, 0.07);
  background:
    linear-gradient(90deg, rgba(120, 31, 31, 0.04), transparent 32%),
    var(--tp-common-white);
}

.faq-item[open]:hover {
  border-left-color: var(--tp-theme-secondary);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.1rem 3.1rem 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--tp-heading-secondary);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--tp-theme-secondary);
  border-bottom: 2px solid var(--tp-theme-secondary);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.faq-item[open] summary {
  color: var(--tp-heading-primary);
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
  border-color: var(--tp-theme-primary);
}

.faq-item summary:hover {
  color: var(--tp-heading-primary);
}

.faq-answer {
  display: block;
}

.faq-answer > p {
  font-family: var(--ff-p);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--tp-text-body);
  padding: 0 1.25rem 1.2rem;
  margin: 0;
}

/* Contact */
.contact {
  background:
    radial-gradient(ellipse 60% 50% at 8% 12%, rgba(212, 175, 55, 0.1), transparent 55%),
    radial-gradient(ellipse 45% 40% at 92% 88%, rgba(120, 31, 31, 0.06), transparent 50%),
    var(--tp-common-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
}

.contact-copy .section-title {
  max-width: 18ch;
}

@media (min-width: 992px) {
  .contact-copy {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    align-self: start;
  }
}

.contact-points {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0 2rem;
}

.contact-points li {
  position: relative;
  padding-left: 1.35rem;
  font-family: var(--ff-p);
  font-size: 0.98rem;
  line-height: 1.55;
  color: #12151a;
  font-weight: 500;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--tp-theme-primary);
}

.contact-book {
  width: fit-content;
}

.contact-form {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--tp-border-1);
  background: var(--tp-common-white);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(27, 35, 53, 0.08);
}

.form-card-head {
  padding-bottom: 1rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid var(--tp-border-1);
}

.form-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
  margin-bottom: 0.4rem;
}

.form-card-title {
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--tp-heading-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.form-card-text {
  font-family: var(--ff-p);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--tp-text-body);
  margin: 0;
  max-width: 36rem;
}

.inquiry-types {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.inquiry-types legend {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tp-text-body);
  margin-bottom: 0.15rem;
}

.inquiry-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.inquiry-option {
  position: relative;
  cursor: pointer;
  flex: 1 1 auto;
}

.inquiry-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.inquiry-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
  border: 0;
  border-radius: 10px;
  background: var(--tp-theme-3);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s, color 0.25s;
}

.inquiry-option input:not(:checked) + span {
  background: #151b28;
  color: #ffffff;
  font-weight: 700;
}

.inquiry-option input:not(:checked) + span:hover,
.inquiry-option input:not(:checked) + span:active,
.inquiry-option input:not(:checked) + span:focus {
  background: #151b28;
  color: #ffffff;
}

.inquiry-option input:focus-visible + span {
  outline: 2px solid var(--tp-theme-primary);
  outline-offset: 2px;
}

.inquiry-option input:checked + span {
  background: var(--tp-theme-primary);
  color: #1a1f26;
  font-weight: 700;
}

.inquiry-option input:checked:hover + span {
  background: var(--tp-theme-primary);
  color: #1a1f26;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.form-grid .form-span {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  grid-template-rows: auto auto minmax(1.15rem, auto);
  gap: 0.45rem;
  align-content: start;
  min-width: 0;
}

.contact-form label:not(.inquiry-option) > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tp-text-body);
}

.contact-form .req {
  font-style: normal;
  font-weight: 700;
  color: #c62828;
  margin-left: 0.15rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--tp-border-1);
  border-radius: 10px;
  background: var(--gray-bg-2);
  color: var(--tp-heading-secondary);
  font-family: var(--ff-p);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(120, 31, 31, 0.22);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--tp-theme-secondary);
  background: var(--tp-common-white);
  box-shadow: 0 0 0 3px rgba(120, 31, 31, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(86, 89, 105, 0.55);
}

.contact-form label.is-invalid > span {
  color: #c62828;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #c62828;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}

.field-error {
  display: block;
  min-height: 1.15rem;
  font-family: var(--ff-p);
  font-size: 12px;
  font-weight: 600;
  color: #c62828;
  line-height: 1.35;
}

.field-error:empty {
  visibility: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding-top: 0.25rem;
}

.form-actions .btn {
  min-width: 160px;
}

.form-note {
  color: var(--tp-theme-secondary);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-note.is-error {
  color: #c62828;
}

/* Footer */
.site-footer {
  background: var(--tp-common-white);
  border-top: 1px solid var(--tp-border-1);
  padding: 2.75rem 0 1.5rem;
}

.footer-contact {
  margin-bottom: 2rem;
  border: 1px solid var(--tp-border-1);
  overflow: hidden;
}

.footer-contact-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 1rem 1.35rem;
  background: var(--tp-theme-secondary);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.footer-contact-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-theme-primary);
}

.footer-contact-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-card {
  padding: 1.15rem 1.1rem 1.25rem;
  background: var(--tp-common-white);
  border-right: 1px solid var(--tp-border-1);
  min-width: 0;
}

.footer-card:last-child {
  border-right: 0;
}

.footer-card h4 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
  margin-bottom: 0.65rem;
}

.footer-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: var(--tp-theme-primary);
}

.footer-card p {
  display: grid;
  gap: 0.4rem;
  font-family: var(--ff-p);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--tp-text-body);
  word-break: break-word;
}

.footer-address {
  font-weight: 700;
  color: #000;
}

.footer-card a {
  color: var(--tp-heading-secondary);
  font-weight: 600;
  transition: color 0.25s;
}

.footer-card a:hover {
  color: var(--tp-theme-secondary);
}

.footer-card a span {
  display: inline-block;
  min-width: 3.6rem;
  margin-right: 0.2rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tp-theme-primary);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.75rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo {
  display: block;
  width: 145px;
  height: 58px;
  max-width: 145px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.5rem;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--tp-heading-secondary);
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--tp-theme-secondary);
}

.footer-cta {
  padding: 11px 22px;
  font-size: 13px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--tp-border-1);
}

.footer-copy {
  order: 4;
  font-family: var(--ff-p);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--tp-heading-secondary);
  margin-left: auto;
}

.footer-powered {
  order: 2;
  font-family: var(--ff-p);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--tp-heading-secondary);
}

.footer-powered a {
  font-weight: 700;
  color: var(--tp-theme-secondary);
  transition: color 0.25s;
}

.footer-powered a:hover {
  color: var(--tp-theme-primary);
}

.footer-india-badge {
  order: 1;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-left: 0.15rem;
}

.footer-legal-links {
  order: 3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-left: 1rem;
  border-left: 1px solid var(--tp-border-1);
}

.footer-legal-links a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: var(--tp-heading-secondary);
}

.footer-legal-links a + a {
  margin-left: 0.75rem;
  padding-left: 0.85rem;
}

.footer-legal-links a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0.85em;
  background: var(--tp-border-1);
  transform: translateY(-50%);
}

.footer-legal-links a:hover {
  color: var(--tp-theme-secondary);
}

/* Legal pages */
.legal-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(120, 31, 31, 0.08);
}

.legal-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(180deg, #fff, var(--tp-common-gray));
}

.legal-hero .section-title {
  max-width: 20ch;
}

.legal-hero .section-text {
  max-width: 40rem;
}

.legal-body {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--tp-common-gray);
}

.legal-wrap {
  display: grid;
  gap: 0;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid rgba(120, 31, 31, 0.1);
  border-top: 4px solid var(--tp-theme-secondary);
  border-radius: 18px;
  background: var(--tp-common-white);
  box-shadow: 0 18px 48px rgba(27, 35, 53, 0.07);
}

.legal-card {
  position: relative;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--tp-border-1);
  background: transparent;
}

.legal-card:first-child {
  padding-top: 0;
}

.legal-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card h2 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  color: var(--tp-heading-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.legal-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--tp-heading-secondary);
  margin: 1.2rem 0 0.5rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--tp-theme-primary);
}

.legal-card p,
.legal-card li {
  font-family: var(--ff-p);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--tp-text-body);
}

.legal-card p + p {
  margin-top: 0.65rem;
}

.legal-card ul {
  margin: 0.7rem 0 0;
  padding: 0.8rem 1rem 0.8rem 2rem;
  display: grid;
  gap: 0.45rem;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.07);
}

.legal-card li::marker {
  color: var(--tp-theme-secondary);
}

.legal-card a {
  color: var(--tp-theme-secondary);
  font-weight: 600;
}

.legal-card a:hover {
  color: var(--tp-heading-primary);
}

.legal-card strong {
  color: var(--tp-heading-secondary);
  font-weight: 700;
}

/* Guide / documentation */
.guide-hero {
  padding-bottom: 2.5rem;
}

.guide-hero .section-title {
  max-width: 18ch;
}

.guide-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-family: var(--ff-p);
  font-size: 0.8rem;
  color: var(--tp-text-body);
}

.guide-breadcrumb a {
  font-weight: 600;
  color: var(--tp-theme-secondary);
}

.guide-breadcrumb a:hover {
  color: var(--tp-heading-primary);
}

.guide-breadcrumb span[aria-current] {
  font-weight: 700;
  color: var(--tp-heading-secondary);
}

.guide-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.guide-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(120, 31, 31, 0.14);
  border-radius: 999px;
  font-family: var(--ff-p);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tp-heading-secondary);
  background: var(--tp-common-white);
  box-shadow: 0 4px 12px rgba(27, 35, 53, 0.04);
}

.guide-meta-chip em {
  font-style: normal;
  font-weight: 800;
  color: var(--tp-theme-secondary);
}

.guide-body {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--tp-common-gray);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.guide-toc {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.2rem 1rem;
  border: 1px solid rgba(120, 31, 31, 0.12);
  border-radius: 16px;
  background: var(--tp-common-white);
  box-shadow: 0 10px 28px rgba(27, 35, 53, 0.05);
}

.guide-toc-title {
  margin: 0 0 0.85rem 0.55rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
}

.guide-toc-nav {
  position: relative;
  display: grid;
  gap: 0.1rem;
  max-height: calc(100vh - var(--header-h) - 5rem);
  padding-left: 0.75rem;
  overflow-y: auto;
  border-left: 1px solid var(--tp-border-1);
}

.guide-toc-nav::-webkit-scrollbar {
  width: 6px;
}

.guide-toc-nav::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: rgba(120, 31, 31, 0.2);
}

.guide-toc-group {
  margin: 0.75rem 0 0.25rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tp-text-body);
}

.guide-toc-nav a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  margin-left: -0.75rem;
  padding: 0.45rem 0.6rem 0.45rem 0.85rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--tp-heading-secondary);
  transition: background 0.2s ease, color 0.2s ease;
}

.guide-toc-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0;
  border-radius: 2px;
  background: var(--tp-theme-secondary);
  transform: translateY(-50%);
  transition: height 0.2s ease;
}

.guide-toc-nav a i {
  font-style: normal;
  flex: 0 0 auto;
  min-width: 1.55rem;
  padding: 0.1rem 0;
  border-radius: 5px;
  font-size: 0.66rem;
  font-weight: 800;
  text-align: center;
  color: var(--tp-theme-secondary);
  background: rgba(212, 175, 55, 0.14);
}

.guide-toc-nav a:hover {
  color: var(--tp-heading-primary);
  background: rgba(212, 175, 55, 0.1);
}

.guide-toc-nav a.is-active {
  color: var(--tp-heading-primary);
  background: rgba(120, 31, 31, 0.07);
}

.guide-toc-nav a.is-active::before {
  height: 65%;
}

.guide-toc-nav a.is-active i {
  color: var(--tp-heading-primary);
  background: var(--tp-theme-primary);
}

.guide-toc-lead {
  font-weight: 700 !important;
}

.guide-content {
  display: grid;
  gap: 0;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 1px solid rgba(120, 31, 31, 0.1);
  border-top: 4px solid var(--tp-theme-secondary);
  border-radius: 18px;
  background: var(--tp-common-white);
  box-shadow: 0 18px 48px rgba(27, 35, 53, 0.07);
}

.guide-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--tp-border-1);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.guide-section:first-child {
  padding-top: 0;
}

.guide-section:last-of-type {
  border-bottom: 0;
}

.guide-section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.guide-section h2 .guide-anchor {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  color: var(--tp-theme-primary);
  opacity: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
  vertical-align: middle;
}

.guide-section h2 .guide-anchor svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-section-head:hover .guide-anchor {
  opacity: 1;
}

.guide-section h2 .guide-anchor:hover {
  color: var(--tp-theme-secondary);
}

.guide-index,
.guide-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 800;
}

.guide-index {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--tp-heading-primary);
  background: linear-gradient(135deg, var(--tp-theme-primary), #e6c86a);
  box-shadow: 0 6px 14px rgba(212, 175, 55, 0.28);
}

.guide-badge {
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tp-common-white);
  background: var(--tp-theme-secondary);
}

.guide-section h2 {
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tp-heading-primary);
}

.guide-section h3 {
  margin: 1.1rem 0 0.45rem;
  padding-left: 0.7rem;
  border-left: 3px solid var(--tp-theme-primary);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--tp-heading-secondary);
}

.guide-section p,
.guide-section li {
  font-family: var(--ff-p);
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--tp-text-body);
}

.guide-section ul {
  margin: 0.55rem 0 0;
  padding: 0.75rem 1rem 0.75rem 1.85rem;
  display: grid;
  gap: 0.4rem;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.07);
}

.guide-section li::marker {
  color: var(--tp-theme-secondary);
}

.guide-steps {
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  counter-reset: guide-step;
  list-style: none;
}

.guide-steps li {
  position: relative;
  padding: 0.85rem 0.95rem 0.85rem 3rem;
  border: 1px solid rgba(27, 35, 53, 0.08);
  border-radius: 12px;
  background: #fafafa;
  counter-increment: guide-step;
}

.guide-steps li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0.75rem;
  top: 0.85rem;
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--tp-common-white);
  background: var(--tp-theme-secondary);
}

.guide-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--tp-theme-primary);
  border-radius: 0 10px 10px 0;
  font-family: var(--ff-p);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--tp-heading-secondary);
  background: rgba(212, 175, 55, 0.1);
}

.guide-shot {
  margin: 1.15rem 0 0;
}

.guide-shot-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.55rem;
  min-height: 230px;
  padding: 1.5rem;
  border: 1px dashed rgba(120, 31, 31, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 45%),
    repeating-linear-gradient(
      -45deg,
      rgba(27, 35, 53, 0.025) 0 10px,
      transparent 10px 20px
    ),
    #f7f7f5;
  text-align: center;
}

.guide-shot-placeholder::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background:
    radial-gradient(circle at 32% 34%, var(--tp-theme-primary) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(120, 31, 31, 0.12), rgba(120, 31, 31, 0.04));
  box-shadow: inset 0 0 0 1px rgba(120, 31, 31, 0.18);
}

.guide-shot-placeholder span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tp-theme-secondary);
}

.guide-shot-placeholder em {
  font-style: normal;
  font-family: var(--ff-p);
  font-size: 0.88rem;
  color: var(--tp-text-body);
}

.guide-shot img {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(27, 35, 53, 0.1);
}

.guide-shot figcaption {
  margin-top: 0.55rem;
  font-family: var(--ff-p);
  font-size: 0.8rem;
  color: var(--tp-text-body);
}

.guide-footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
  padding: 1.2rem 1.35rem;
  border-radius: 14px;
  color: var(--tp-common-white);
  background: var(--tp-heading-primary);
}

.guide-footer-cta div:first-child {
  display: grid;
  gap: 0.25rem;
}

.guide-footer-cta strong {
  font-size: 1rem;
}

.guide-footer-cta span {
  font-family: var(--ff-p);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}

.guide-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.guide-footer-cta .btn-primary:hover {
  color: var(--tp-common-white);
  background: var(--tp-theme-3);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.7);
}

@media (max-width: 991px) {
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-width: 0;
  }

  .guide-toc {
    position: sticky;
    top: var(--header-h);
    z-index: 30;
    max-width: 100%;
    padding: 0.75rem 0.7rem 0.85rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(27, 35, 53, 0.08);
  }

  .guide-toc-title {
    margin: 0 0 0.55rem 0.15rem;
  }

  .guide-toc-nav {
    display: flex;
    gap: 0.4rem;
    max-height: none;
    padding: 0 0.1rem 0.15rem;
    overflow-x: auto;
    overflow-y: hidden;
    border-left: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .guide-toc-nav a {
    flex: 0 0 auto;
    margin-left: 0;
    padding: 0.45rem 0.7rem;
    white-space: nowrap;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
  }

  .guide-toc-nav a::before {
    display: none;
  }

  .guide-toc-nav a.is-active {
    color: var(--tp-common-white);
    background: var(--tp-theme-secondary);
  }

  .guide-toc-nav a.is-active i {
    color: var(--tp-heading-primary);
    background: var(--tp-theme-primary);
  }

  .guide-toc-group {
    display: none;
  }

  .guide-section {
    scroll-margin-top: calc(var(--header-h) + 5.5rem);
  }

  .guide-section-head {
    align-items: flex-start;
  }

  .guide-section h2 {
    min-width: 0;
    flex: 1 1 auto;
    line-height: 1.3;
  }

  .guide-section h2 .guide-anchor {
    display: none;
  }

  .guide-content {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .guide-hero {
    padding-bottom: 1.5rem;
  }

  .guide-hero .section-title {
    max-width: none;
  }

  .guide-hero-meta {
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .guide-meta-chip {
    padding: 0.4rem 0.7rem;
    font-size: 0.74rem;
  }

  .guide-content {
    padding: 1.15rem 1rem;
    border-radius: 14px;
  }

  .guide-section {
    padding: 1.45rem 0;
  }

  .guide-section-head {
    gap: 0.55rem;
  }

  .guide-index {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    font-size: 0.72rem;
  }

  .guide-section ul {
    padding: 0.7rem 0.85rem 0.7rem 1.55rem;
  }

  .guide-steps li {
    padding: 0.75rem 0.8rem 0.75rem 2.75rem;
  }

  .guide-shot-placeholder {
    min-height: 150px;
    padding: 1.1rem;
  }

  .guide-footer-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem;
  }

  .guide-footer-actions {
    width: 100%;
  }

  .guide-footer-actions .btn {
    width: 100%;
  }
}

/* Reveal system */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-36px);
}

[data-reveal="left"].is-visible {
  transform: none;
}

@keyframes meshDrift {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.06) translate(-2%, 2%); }
}

@media (max-width: 1100px) and (min-width: 992px) {
  .portal-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .about-layout,
  .split-head,
  .contact-layout,
  .portal-compare {
    grid-template-columns: 1fr;
  }

  .about-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    align-items: stretch;
  }

  .metric {
    min-height: 150px;
    height: 100%;
  }

  .contact-copy .section-title {
    max-width: none;
  }

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

  .form-actions .btn {
    width: 100%;
  }

  .inquiry-options {
    flex-wrap: nowrap;
    gap: 0.4rem;
  }

  .inquiry-option {
    flex: 1 1 0;
    min-width: 0;
  }

  .inquiry-option span {
    width: 100%;
    min-height: 38px;
    padding: 0.4rem 0.35rem;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(1.8rem, 3.2vw + 0.7rem, 2.65rem);
  }

  .hero-brand {
    font-size: clamp(1.15rem, 2vw + 0.7rem, 1.5rem);
  }

  .hero-stage {
    max-width: 480px;
    margin-inline: auto;
    perspective: none;
  }

  .ui-frame {
    transform: none;
    animation: stageFloatMobile 7s ease-in-out infinite;
  }

  .ui-body {
    min-height: 0;
    grid-template-columns: 110px 1fr;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .timeline::before {
    display: none;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(27, 35, 53, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-desktop {
    display: none;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    width: min(300px, 86vw);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.85rem 1rem 1rem;
    background: var(--tp-common-white);
    box-shadow: -18px 0 48px rgba(27, 35, 53, 0.18);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-drawer.is-open {
    transform: translateX(0);
  }

  .nav-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--tp-border-1);
  }

  .nav-panel-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
  }

  .nav-panel-logo img {
    display: block;
    height: 34px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
  }

  .nav-close {
    display: grid;
    place-items: center;
    position: relative;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: var(--tp-theme-secondary);
    cursor: pointer;
  }

  .nav-close span {
    position: absolute;
    width: 14px;
    height: 2px;
    background: #fff;
  }

  .nav-close span:first-child {
    transform: rotate(45deg);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-panel-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0.65rem;
  }

  .nav-panel-links a {
    color: var(--tp-heading-secondary);
    padding: 0.42rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid var(--tp-border-1);
  }

  .nav-panel-links a:last-child {
    border-bottom: 0;
  }

  .nav-panel-foot {
    display: block;
    margin-top: 0;
    padding-top: 0;
  }

  .nav-panel-cta {
    display: inline-flex;
    width: 100%;
    margin: 0 0 0.55rem;
    padding: 0.65rem 1rem;
    font-size: 13px;
  }

  .nav-panel-contact {
    display: grid;
    gap: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--tp-border-1);
  }

  .nav-contact-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
  }

  .nav-panel-contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tp-heading-secondary);
    margin: 0;
  }

  .nav-contact-head > span {
    font-size: 10px;
    font-weight: 600;
    color: var(--tp-text-body);
  }

  .nav-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--tp-border-1);
    transition: color 0.2s;
  }

  .nav-contact-item:last-child {
    border-bottom: 0;
  }

  .nav-contact-item:hover {
    color: var(--tp-theme-secondary);
  }

  .nav-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }

  .nav-contact-icon svg {
    width: 15px;
    height: 15px;
    fill: var(--tp-theme-secondary);
  }

  .nav-contact-text {
    display: grid;
    gap: 0.05rem;
    min-width: 0;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--tp-heading-secondary);
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-contact-text em {
    font-style: normal;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--tp-text-body);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .logo-img {
    height: 40px;
    width: auto;
    max-width: 100px;
  }

  .footer-logo {
    width: 130px;
    height: 52px;
    max-width: 130px;
  }

  .nav-panel-logo img {
    width: 90px;
    height: 36px;
    max-width: 90px;
    object-fit: contain;
  }

  body.nav-open .site-header {
    z-index: 1100;
  }

  body.nav-open .nav-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .cursor-glow {
    display: none;
  }

  .capability-grid {
    display: none;
  }

  .capability-track {
    animation-duration: 42s;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.35rem;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-cta {
    width: auto;
  }

  .footer-cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer-card {
    border-right: 1px solid var(--tp-border-1);
    border-bottom: 1px solid var(--tp-border-1);
  }

  .footer-card:nth-child(2n) {
    border-right: 0;
  }

  .footer-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (min-width: 601px) and (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 1.25rem) 0 1.5rem;
  }

  .hero-shell {
    flex: 0 1 auto;
    width: calc(100% - 2.5rem);
    gap: 1.5rem;
    align-content: start;
  }

  .hero-copy {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
  }

  .hero-brand {
    margin-bottom: 0.6rem;
  }

  .hero-title {
    max-width: 18ch;
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 4.5vw, 2.55rem);
    line-height: 1.16;
  }

  .hero-lead {
    max-width: 42rem;
    margin-bottom: 1.35rem;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions .btn {
    padding: 13px 26px;
  }

  .hero-stage {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .ui-frame {
    animation: none;
  }

  .ui-body {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 390px;
  }

  .ui-main {
    gap: 0.55rem;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 600px) {
  .legal-hero {
    padding: calc(var(--header-h) + 1.5rem) 0 1.5rem;
  }

  .legal-wrap {
    width: calc(100% - 1.5rem);
    padding: 1.2rem 1rem;
    border-radius: 14px;
  }

  .legal-card {
    padding: 1.3rem 0;
  }

  .legal-card ul {
    padding: 0.75rem 0.75rem 0.75rem 1.75rem;
  }

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

  .timeline-step {
    padding: 0 0 1.35rem;
  }

  .portal-cols {
    grid-template-columns: 1fr;
  }

  .pricing-groups {
    gap: 1rem;
  }

  .pricing-card-head {
    align-items: flex-start;
    padding: 1.15rem;
  }

  .pricing-card-title {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .pricing-card-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .pricing-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .pricing-table-wrap {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-scroll-hint {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.8rem;
    border-bottom: 1px solid rgba(27, 35, 53, 0.08);
    font-family: var(--ff-p);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--tp-theme-secondary);
    background: rgba(212, 175, 55, 0.08);
  }

  .pricing-scroll-hint span {
    font-size: 1rem;
    line-height: 1;
  }

  .pricing-table {
    min-width: 780px;
  }

  .pricing-card-client .pricing-table {
    min-width: 650px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.85rem 0.8rem;
  }

  .pricing-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 1.15rem;
  }

  .pricing-cta .btn {
    width: 100%;
  }

  .portals-head .section-text {
    max-width: none;
  }

  .inquiry-options {
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .inquiry-option {
    flex: 1 1 0;
    min-width: 0;
  }

  .inquiry-option span {
    width: 100%;
    min-height: 36px;
    padding: 0.35rem 0.2rem;
    font-size: 11px;
    border-radius: 8px;
  }

  .timeline-step p {
    max-width: none;
  }

  .about-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .metric {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-height: 0;
    padding: 1.05rem 1.1rem;
  }

  .metric strong {
    flex: 0 0 4.75rem;
    width: 4.75rem;
    min-width: 4.75rem;
    max-width: 4.75rem;
    font-size: 1.7rem;
    line-height: 1;
    text-align: left;
  }

  .metric-live {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
  }

  .metric-copy {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
  }

  .metric-label {
    font-size: 0.92rem;
  }

  .metric-detail {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .capability-grid {
    display: none;
  }

  .capability-track {
    animation-duration: 36s;
  }

  .hero {
    padding: calc(var(--header-h) + 1.5rem) 0 1rem;
    min-height: auto;
  }

  .hero-shell {
    width: min(1160px, calc(100% - 1.75rem));
    gap: 1.75rem;
    flex: 0 1 auto;
  }

  .hero-scroll {
    margin: 1.25rem auto 0.25rem;
  }

  .hero-title {
    font-size: clamp(1.55rem, 5.4vw, 2rem);
    max-width: none;
    line-height: 1.22;
  }

  .hero-brand {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem);
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stage {
    max-width: 100%;
  }

  .ui-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ui-side {
    display: none;
  }

  .ui-main {
    padding: 0.75rem;
  }

  .ui-welcome strong {
    font-size: 0.88rem;
  }

  .ui-kpis {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .ui-kpi b {
    font-size: 0.85rem;
  }

  .ui-panels,
  .ui-bottom {
    grid-template-columns: 1fr;
  }

  .ui-action-list {
    grid-template-columns: 1fr 1fr;
  }

  .ui-chart {
    height: 56px;
  }

  .ui-date {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
  }

  .footer-copy,
  .footer-powered,
  .footer-india-badge,
  .footer-legal-links {
    order: initial;
  }

  .footer-copy {
    margin-left: 0;
  }

  .footer-legal-links {
    justify-content: flex-start;
    padding-left: 0;
    border-left: 0;
  }

  .footer-powered {
    margin-left: 0;
  }

  .footer-india-badge {
    width: 68px;
    height: 68px;
    margin: 0.15rem 0 0;
  }

  .footer-cta {
    width: 100%;
    max-width: 280px;
  }

  .footer-cards {
    grid-template-columns: 1fr;
  }

  .footer-card {
    border-right: 0;
    border-bottom: 1px solid var(--tp-border-1);
  }

  .footer-card:nth-child(2n) {
    border-right: 0;
  }

  .footer-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--tp-border-1);
  }

  .footer-card:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-rotator-item {
    transition: none;
  }
  .capability-track {
    animation: none;
  }
  .faq-list .faq-item,
  .faq-item summary::after {
    transition: none;
    animation: none;
  }

  .faq-list .faq-item {
    opacity: 1;
  }

  .hero-mesh,
  .hero-shine,
  .ui-frame,
  .ui-chart span,
  .hero-scroll-mouse span {
    animation: none;
  }
}

@keyframes stageFloatMobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
