@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #07091a;
  --surface: #0d1128;
  --surface-2: #131830;
  --border: #1a2240;
  --border-light: #212d50;

  --accent: #d4a017;
  --accent-dim: rgba(212, 160, 23, 0.12);
  --accent2: #00b4d8;
  --accent2-dim: rgba(0, 180, 216, 0.12);

  --text: #e4eaf7;
  --text-muted: #5e7199;
  --text-mid: #8da1c4;

  --topbar-h: 58px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-thai: "Sukhumvit Set", "Sukhumvit", "TH Sarabun New", system-ui, sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 160, 23, 0.16), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(0, 180, 216, 0.14), transparent 24%),
    linear-gradient(180deg, #081021 0%, #07091a 52%, #060816 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Thai text helper: apply when rendering Thai-heavy copy */
:lang(th),
.lang-th {
  font-family: var(--font-thai);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-main,
.display {
  margin: 0 0 0.6em;
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
}

h2 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-mid);
}

a {
  color: var(--accent2);
  text-decoration-color: rgba(0, 180, 216, 0.4);
  text-underline-offset: 3px;
}

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

.brand-main {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.accent {
  color: var(--accent);
}

.accent2 {
  color: var(--accent2);
}

.text-muted {
  color: var(--text-muted);
}

.text-mid {
  color: var(--text-mid);
}

.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.surface-2 {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 14px;
}

.card {
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.metric-val.accent {
  color: var(--accent);
}

.metric-val.accent2 {
  color: var(--accent2);
}

.btn,
button,
input[type="submit"],
input[type="button"] {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font: inherit;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.2);
}

.btn.secondary {
  color: var(--text);
  background: var(--accent2-dim);
  border-color: rgba(0, 180, 216, 0.35);
}

input,
textarea,
select {
  width: 100%;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}

::placeholder {
  color: var(--text-muted);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--accent-dim);
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
}

nav a.active,
.is-active {
  color: var(--accent);
  background: var(--accent-dim);
}

.site-wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 1.25rem auto 2rem;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.4rem;
  padding-block: 1rem;
  padding-inline: max(1rem, calc((100vw - 1120px) / 2 + 1rem));
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-inline: calc(50% - 50vw);
}

.brand-block {
  min-width: 220px;
  margin-right: auto;
}

.brand-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  padding: 0;
  border: 0;
  background: transparent;
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.4vw + 1rem, 2rem);
  font-weight: 700;
  color: var(--accent);
}

.brand-subtitle {
  margin: 0.02rem 0 0;
  font-size: clamp(1.1rem, 0.8vw + 0.95rem, 1.45rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text-mid);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.15rem;
  margin-left: auto;
  justify-content: flex-end;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.3rem 0.75rem;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.15rem);
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--text-mid);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--text);
  background: var(--surface-2);
  border-color: var(--border-light);
}

.hero {
  margin-top: 1.2rem;
  padding: 0.5rem 0 0.2rem;
  background: none;
  border: none;
  text-align: center;
  position: relative;
}

/* Title */
.hero h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  text-shadow: 0 0 30px rgba(212, 160, 23, 0.15);
  margin-bottom: 0.2rem;
}

/* Subtitle */
.hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-top: 0.4rem;
}

/* Subtle divider line */
.hero::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.8rem auto 0;
  background: linear-gradient(to right, var(--accent), var(--accent2));
  border-radius: 999px;
  opacity: 0.8;
}

.home-main {
  margin-top: 1.2rem;
  padding-bottom: 4rem;
}

.home-hero-band {
  position: relative;
  overflow: clip;
}

.home-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(212, 160, 23, 0.16), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(0, 180, 216, 0.14), transparent 26%);
  pointer-events: none;
}

.home-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1.15rem, 2.4vw, 1.5rem);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 17, 40, 0.98), rgba(8, 12, 28, 0.96));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.home-hero-shell::before {
  content: "";
  position: absolute;
  inset: auto auto -6rem -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.12), transparent 64%);
  pointer-events: none;
}

.home-hero-left {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: clamp(0.35rem, 1vw, 0.8rem);
}

.home-headline {
  margin: 0 0 0.35rem;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 8ch;
  text-wrap: balance;
}

.home-subheadline {
  margin: 0;
  font-size: clamp(1.38rem, 1.2vw + 1rem, 2.2rem);
  line-height: 1.14;
  color: #dbe4f6;
  max-width: 18ch;
}

.home-credibility {
  margin: 0.95rem 0 0;
  color: var(--accent2);
  font-size: clamp(1.02rem, 0.35vw + 0.96rem, 1.14rem);
  letter-spacing: 0.01em;
}

.home-hero-cta {
  margin-top: 1.1rem;
}

.home-hero-cta .btn {
  min-width: min(100%, 320px);
}

.home-profile-card {
  position: relative;
  overflow: hidden;
  padding: 0.95rem;
  border-radius: 22px;
  display: grid;
  gap: 0.95rem;
  align-content: start;
  background: linear-gradient(160deg, rgba(18, 24, 48, 0.96), rgba(10, 14, 33, 0.96));
}

.home-profile-card::before {
  content: "";
  position: absolute;
  inset: -15% -15% auto auto;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12), transparent 68%);
  pointer-events: none;
}

.home-profile-image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 26%;
  border: 1px solid rgba(141, 161, 196, 0.28);
}

.home-profile-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  padding-inline: 0.2rem;
}

.home-profile-copy p {
  margin: 0;
}

.home-profile-name {
  color: #dbe7ff;
  font-size: clamp(1.15rem, 0.4vw + 1.08rem, 1.34rem);
  margin-bottom: 0.32rem;
}

.home-profile-copy p:not(.home-profile-name) {
  color: #cad7ee;
}

.articles-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.article-card {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: inherit;
  min-height: 100%;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-light);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.article-image {
  width: 100%;
  min-height: 210px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: linear-gradient(140deg, var(--surface-2), rgba(0, 180, 216, 0.12));
  margin-bottom: 0.95rem;
}

.article-image-1 {
  background-image: url("./assets/article-1-thinking-face.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 51% 36%;
}

.article-image-2 {
  background-image: url("./assets/article-2-starting-gun.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 53% 7%;
}

.article-image-3 {
  background-image: url("./assets/article-3-tupperware.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 62%;
}

.article-image-4 {
  background-image: url("./assets/article-4-tick-cross.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 24%;
}

.article-image-5 {
  background-image: url("./assets/article-5-growth-arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 32%;
}

.article-image-6 {
  background-image: url("./assets/article-6-lifted-bill.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 48% 56%;
}

.article-title {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-family: var(--font-thai);
  font-size: clamp(1.2rem, 0.45vw + 1.1rem, 1.5rem);
  line-height: 1.3;
}

.article-subtitle {
  margin: 0;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.5;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 9, 26, 0.78);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-backdrop[hidden] {
  display: none;
}

.article-modal {
  position: relative;
  width: min(860px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1rem;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: var(--surface-2);
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

#modal-content h2 {
  margin-right: 2.2rem;
  margin-bottom: 0.75rem;
}

#modal-content p {
  color: var(--text-mid);
}

@media (max-width: 840px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

html {
  scroll-behavior: smooth;
}

.services-page .site-wrap {
  margin-bottom: 0;
}

.foryou-page .site-wrap {
  margin-bottom: 0;
}

.services-main {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.foryou-main {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.foryou-page .section-heading {
  text-align: center;
  margin-inline: auto;
}

.foryou-page .section-copy {
  margin-inline: auto;
}

.services-band {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(1rem, calc((100vw - 1120px) / 2 + 1rem));
}

.services-hero-band {
  padding-block: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  overflow: clip;
}

.foryou-hero-band {
  padding-block: clamp(2.4rem, 5vw, 4.6rem) clamp(1.4rem, 4vw, 2.8rem);
  overflow: clip;
}

.services-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 19, 43, 0.95), rgba(8, 10, 24, 0.74));
  pointer-events: none;
}

.foryou-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 18, 41, 0.96), rgba(8, 11, 28, 0.78)),
    radial-gradient(circle at 18% 18%, rgba(212, 160, 23, 0.15), transparent 28%);
  pointer-events: none;
}

.services-hero-band::after {
  content: "";
  position: absolute;
  right: -12rem;
  top: -20rem;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.14), transparent 64%);
  pointer-events: none;
}

.foryou-hero-band::after {
  content: "";
  position: absolute;
  left: -12rem;
  bottom: -18rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12), transparent 66%);
  pointer-events: none;
}

.services-hero-shell,
.services-proof-grid,
.services-selector-grid,
.journey-grid,
.compare-grid,
.services-faq-grid {
  position: relative;
  z-index: 1;
}

.foryou-hero-shell,
.foryou-grid,
.not-fit-card {
  position: relative;
  z-index: 1;
}

.services-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1.15rem;
  align-items: center;
}

.foryou-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1rem;
  align-items: center;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.22);
  background: rgba(212, 160, 23, 0.1);
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
}

.services-title {
  font-size: clamp(2.35rem, 4.2vw + 1rem, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: none;
  overflow-wrap: anywhere;
  margin-bottom: 1rem;
}

.services-title-line {
  display: block;
  white-space: nowrap;
}

.services-lead {
  max-width: 60ch;
  font-size: clamp(1.05rem, 0.45vw + 1rem, 1.22rem);
  color: #b8c7e5;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.services-reassurance {
  max-width: 52ch;
  margin-top: 1rem;
  color: var(--text-mid);
}

.foryou-title {
  font-size: clamp(2.2rem, 3.8vw + 1rem, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.95rem;
}

.foryou-lead {
  max-width: 58ch;
  font-size: clamp(1.06rem, 0.45vw + 1rem, 1.2rem);
  color: #b8c7e5;
}

.foryou-hero-note {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
}

.foryou-hero-note::before {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.14), transparent 64%);
  pointer-events: none;
}

.foryou-note-label {
  margin-bottom: 0.45rem;
  color: var(--accent2);
  font-size: 0.95rem;
}

.foryou-hero-note h3 {
  font-size: clamp(1.45rem, 1vw + 1.15rem, 2rem);
  margin-bottom: 0.7rem;
}

.foryou-identify-band,
.foryou-filter-band,
.foryou-not-band,
.foryou-cta-band {
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

.foryou-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.identity-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  aspect-ratio: 1 / 1;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(13, 17, 40, 0.98), rgba(9, 12, 27, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.identity-card:hover,
.fit-card:hover,
.not-fit-card:hover,
.foryou-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.identity-card,
.fit-card,
.not-fit-card,
.foryou-cta-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.identity-image-slot,
.not-fit-image-slot {
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  border: 1px dashed rgba(141, 161, 196, 0.32);
  background:
    linear-gradient(145deg, rgba(19, 24, 48, 0.92), rgba(11, 15, 34, 0.88)),
    radial-gradient(circle at top left, rgba(0, 180, 216, 0.12), transparent 42%);
}

.identity-image-slot {
  aspect-ratio: auto;
  height: 100%;
  min-height: 0;
}

.identity-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.identity-image-card-1 {
  object-position: 52% 34%;
}

.identity-image-card-2 {
  object-position: 52% 36%;
}

.identity-image-card-3 {
  object-position: 52% 44%;
}

.identity-image-card-4 {
  object-position: 50% 42%;
}

.identity-image-not-fit {
  object-position: 51% 40%;
}

.not-fit-image-slot {
  aspect-ratio: 16 / 9;
}

.identity-image-label {
  color: var(--text-muted);
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.identity-copy {
  display: grid;
  gap: 0.5rem;
}

.identity-kicker {
  margin: 0;
  color: var(--accent2);
  font-size: 0.95rem;
}

.identity-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 0.8vw + 1.25rem, 2rem);
  line-height: 1.12;
}

.identity-card p:last-child {
  margin-bottom: 0;
}

.fit-card {
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(19, 24, 48, 0.96), rgba(10, 14, 33, 0.96));
}

.fit-card-header {
  max-width: 44rem;
}

.fit-card-kicker {
  margin: 0 0 0.45rem;
  color: #9bd57d;
  font-size: 1rem;
}

.fit-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 1.1vw + 1.1rem, 2.1rem);
}

.fit-checklist,
.not-fit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.fit-checklist li,
.not-fit-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #c6d4ec;
  font-size: 1.05rem;
}

.fit-checklist li::before,
.not-fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
}

.fit-checklist li::before {
  background: #9bd57d;
  box-shadow: 0 0 0 6px rgba(155, 213, 125, 0.08);
}

.not-fit-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(13, 17, 40, 0.98), rgba(8, 12, 28, 0.98));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.not-fit-copy {
  display: grid;
  gap: 0.75rem;
}

.not-fit-kicker {
  margin: 0;
  color: #ff8f8f;
  font-size: 1rem;
}

.not-fit-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 1vw + 1.2rem, 2.15rem);
}

.not-fit-copy p:last-child {
  margin-bottom: 0;
}

.not-fit-list li::before {
  background: #ff8f8f;
  box-shadow: 0 0 0 6px rgba(255, 143, 143, 0.08);
}

.foryou-cta-card {
  padding: 1.25rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(19, 24, 48, 0.96), rgba(10, 14, 33, 0.96));
}

.foryou-cta-card p {
  margin-inline: auto;
  max-width: 44rem;
}

.foryou-cta-card .btn {
  display: inline-flex;
  justify-content: center;
  margin-top: 0.35rem;
}

.services-hero-aside {
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.services-hero-aside::before {
  content: "";
  position: absolute;
  inset: auto auto -5rem -5rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.13), transparent 62%);
  pointer-events: none;
}

.hero-aside-label {
  color: var(--accent2);
  margin-bottom: 0.45rem;
  font-size: 0.96rem;
}

.services-hero-aside h3 {
  font-size: clamp(1.45rem, 1.4vw + 1rem, 2.1rem);
  margin-bottom: 1rem;
}

.hero-mini-offers {
  display: grid;
  gap: 0.75rem;
}

.hero-mini-offer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.88rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(7, 9, 26, 0.58);
}

.hero-mini-tag {
  display: grid;
  place-items: center;
  width: 2.25rem;
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(0, 180, 216, 0.18));
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-mini-offer h4 {
  margin: 0 0 0.18rem;
  font-size: 1.06rem;
}

.hero-mini-offer p {
  margin: 0;
  font-size: 0.96rem;
}

.services-proof-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  padding: 1rem 1.05rem;
  background: rgba(13, 17, 40, 0.74);
  backdrop-filter: blur(8px);
}

.proof-kicker {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.94rem;
}

.proof-card p {
  margin: 0;
  color: #b6c5e1;
}

.services-selector-band,
.services-journey-band,
.services-compare-band {
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

#offers .section-title {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
}

#offers .section-copy {
  font-size: 1.1rem;
  margin-inline: auto;
}

#offers .section-heading {
  text-align: center;
  margin-inline: auto;
}

.services-faq-band {
  padding-block: clamp(1.2rem, 4vw, 3rem) 4rem;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 1rem;
}

.section-kicker {
  margin: 0 0 0.4rem;
  color: var(--accent2);
  font-size: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 1.3vw + 1.3rem, 2.7rem);
  overflow-wrap: anywhere;
  margin-bottom: 0.35rem;
}

.section-copy {
  max-width: 50ch;
  color: var(--text-mid);
}

.services-selector-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.service-tabs {
  display: grid;
  gap: 0.8rem;
}

.service-tab {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  color: var(--text);
  padding: 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(19, 24, 48, 0.92), rgba(10, 14, 33, 0.9));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  overflow: hidden;
}

.service-tab::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -50%;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.14), transparent 64%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.service-tab:hover,
.compare-card:hover,
.journey-card:hover,
.proof-card:hover {
  transform: translateY(-2px);
}

.service-tab:hover {
  border-color: var(--border-light);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.service-tab:hover::after,
.service-tab.is-active::after {
  opacity: 1;
}

.service-tab.is-active {
  border-color: rgba(212, 160, 23, 0.46);
  box-shadow: 0 18px 42px rgba(212, 160, 23, 0.12);
  background: linear-gradient(155deg, rgba(24, 31, 58, 0.96), rgba(12, 16, 33, 0.96));
}

.service-tab-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.68rem;
}

.service-tab-index {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.56rem;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.11);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-tab-mode {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.service-tab-title {
  display: block;
  margin-bottom: 0.38rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 0.7vw + 1.05rem, 1.72rem);
  line-height: 1.1;
}

.service-tab-copy {
  display: block;
  max-width: 32ch;
  color: #b8c7e5;
  font-size: 1rem;
}

.service-tab-price {
  display: block;
  margin-top: 0.82rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.1vw + 1.25rem, 2.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(212, 160, 23, 0.2);
}

.service-tab-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.82rem;
}

.service-chip {
  display: inline-flex;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-mid);
  font-size: 0.86rem;
}

.service-spotlight {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 17, 40, 0.98), rgba(9, 12, 27, 0.96));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.spotlight-empty-state {
  display: none;
}

.service-spotlight.is-empty > :not(.spotlight-empty-state) {
  display: none;
}

.service-spotlight.is-empty .spotlight-empty-state {
  display: grid;
  place-items: center;
  min-height: clamp(340px, 52vh, 560px);
  padding-block: 0.55rem;
  position: relative;
  z-index: 1;
}

.spotlight-empty-image {
  width: 100%;
  height: 100%;
  max-height: clamp(320px, 50vh, 540px);
  object-fit: fill;
  border-radius: 16px;
}

.service-spotlight::before {
  content: "";
  position: absolute;
  inset: -18% auto auto 62%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.16), transparent 64%);
  pointer-events: none;
}

.spotlight-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.spotlight-eyebrow {
  margin: 0;
  color: var(--accent2);
  font-size: 1rem;
}

.spotlight-mode {
  display: inline-block;
  margin-top: 0.1rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1vw + 1.2rem, 2.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 0 18px rgba(212, 160, 23, 0.22);
}

.spotlight-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.75rem, 1vw + 1.45rem, 2.55rem);
  max-width: 14ch;
  margin-bottom: 0.55rem;
}

.spotlight-summary {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  color: #b9c7e1;
  font-size: 1.05rem;
}

.spotlight-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-block: 1rem 1.1rem;
}

.spotlight-metric {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.metric-label {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.spotlight-metric strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.42;
}

.spotlight-list {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.spotlight-list-label {
  margin: 0 0 0.6rem;
  color: var(--text);
  font-size: 1rem;
}

.spotlight-list ul,
.compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spotlight-list ul {
  display: grid;
  gap: 0.65rem;
}

.spotlight-list li,
.compare-card li {
  position: relative;
  padding-left: 1.05rem;
}

.spotlight-list li {
  color: #d7e1f4;
}

.spotlight-list li::before,
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
}

.spotlight-list li::before {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.spotlight-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.spotlight-note {
  position: relative;
  z-index: 1;
  margin: 0.9rem 0 0;
  max-width: 52ch;
  color: var(--text-mid);
  font-size: 0.97rem;
}

.journey-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.journey-card,
.compare-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.journey-card {
  padding: 1.15rem;
}

.journey-step {
  display: inline-flex;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(0, 180, 216, 0.11);
  color: var(--accent2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.journey-card h3 {
  font-size: clamp(1.22rem, 0.5vw + 1.06rem, 1.48rem);
  margin-bottom: 0.45rem;
}

.journey-card p {
  margin: 0;
}

.compare-card {
  padding: 1.15rem;
}

.compare-card:hover,
.journey-card:hover,
.proof-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.compare-kicker {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: 1rem;
}

.compare-card:nth-child(2) .compare-kicker {
  color: var(--accent2);
}

.compare-card:nth-child(3) .compare-kicker {
  color: #9bd57d;
}

.compare-card h3 {
  font-size: 1.32rem;
  margin-bottom: 0.55rem;
}

.compare-card li {
  color: var(--text-mid);
  margin-bottom: 0.55rem;
}

.compare-card li::before {
  background: rgba(212, 160, 23, 0.8);
}

.services-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: var(--text-mid);
}

.services-cta-card {
  position: sticky;
  top: 1rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(19, 24, 48, 0.96), rgba(10, 14, 33, 0.96));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.cta-card-label {
  margin-bottom: 0.4rem;
  color: var(--accent2);
}

.services-cta-card h3 {
  font-size: clamp(1.5rem, 0.8vw + 1.25rem, 2rem);
  margin-bottom: 0.55rem;
}

.services-cta-card p {
  margin-bottom: 1rem;
}

.services-cta-card .btn {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.cta-card-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--text);
  text-decoration: none;
}

.cta-card-link:hover {
  color: var(--accent);
}

.services-page.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1024px) {
  .home-hero-shell {
    grid-template-columns: 1fr;
  }

  .services-hero-shell,
  .services-selector-grid,
  .services-faq-grid,
  .foryou-hero-shell,
  .not-fit-card {
    grid-template-columns: 1fr;
  }

  .services-title {
    max-width: none;
  }

  .services-cta-card {
    position: static;
  }
}

@media (max-width: 840px) {
  .services-proof-grid,
  .journey-grid,
  .compare-grid,
  .spotlight-metrics,
  .foryou-grid {
    grid-template-columns: 1fr;
  }

  .service-tab-top,
  .spotlight-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .identity-card {
    aspect-ratio: auto;
    grid-template-rows: auto;
  }

  .identity-image-slot {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 720px) {
  .home-hero-shell {
    padding: 1rem;
    border-radius: 22px;
  }

  .home-headline {
    font-size: clamp(1.9rem, 8vw, 3rem);
    max-width: none;
  }

  .home-subheadline {
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
    max-width: none;
  }

  .home-profile-card {
    padding: 0.8rem;
  }

  .home-profile-image {
    aspect-ratio: 4 / 4.8;
    object-position: 52% 24%;
  }

  .site-wrap {
    width: min(100% - 1rem, 1120px);
    margin-top: 0.75rem;
  }

  .brand-block {
    width: 100%;
    min-width: 0;
  }

  .main-nav {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .main-nav a {
    min-height: 2rem;
    padding: 0.34rem 0.62rem;
    font-size: 0.98rem;
  }

  .services-band {
    padding-inline: 1rem;
  }

  .services-title {
    font-size: clamp(1.95rem, 7.8vw, 3.2rem);
  }

  .foryou-title {
    font-size: clamp(1.95rem, 8vw, 3.15rem);
  }

  .services-title-line {
    white-space: normal;
  }

  .services-hero-actions .btn,
  .spotlight-cta .btn,
  .foryou-cta-card .btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .service-tab,
  .service-spotlight,
  .services-hero-aside,
  .foryou-hero-note,
  .fit-card,
  .identity-card,
  .not-fit-card,
  .foryou-cta-card {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
