:root {
  --bg: #070b10;
  --bg-soft: #0a1018;
  --panel: #0d141e;
  --panel-2: #111a26;
  --panel-3: #151f2c;
  --line: rgba(255, 255, 255, 0.095);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f6f8;
  --muted: #9aa8b7;
  --muted-2: #6e7b89;
  --teal: #12b8c4;
  --teal-soft: #36d1d5;
  --teal-dark: #087d8e;
  --gold: #c6a056;
  --gold-soft: #ddbf80;
  --danger: #e77b74;
  --success: #5bd1a2;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 0%, rgba(18, 184, 196, 0.09), transparent 24rem),
    radial-gradient(circle at 8% 35%, rgba(25, 63, 101, 0.12), transparent 28rem),
    var(--bg);
  font-family: Inter, Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: -0.02em;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  display: block;
}

::selection {
  color: #031013;
  background: var(--teal-soft);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.18;
  background: radial-gradient(circle, rgba(18, 184, 196, 0.14), transparent 68%);
  filter: blur(20px);
  transition: opacity 0.3s ease;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.section-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--container));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

[data-reveal] {
  --reveal-y: 28px;
}

[data-reveal] .section-heading,
[data-reveal] .pain-grid,
[data-reveal] .loss-line,
[data-reveal] .comparison-shell,
[data-reveal] .signature-line,
[data-reveal] .service-grid,
[data-reveal] .process-track,
[data-reveal] .report-copy,
[data-reveal] .report-ui,
[data-reveal] .proof-metrics,
[data-reveal] .case-carousel,
[data-reveal] .proof-more,
[data-reveal] .proof-note,
[data-reveal] .assurance-card,
[data-reveal] .faq-list,
[data-reveal] .contact-copy,
[data-reveal] .lead-form,
[data-reveal] .hero-copy,
[data-reveal] .hero-panel-wrap {
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible .section-heading,
[data-reveal].is-visible .pain-grid,
[data-reveal].is-visible .loss-line,
[data-reveal].is-visible .comparison-shell,
[data-reveal].is-visible .signature-line,
[data-reveal].is-visible .service-grid,
[data-reveal].is-visible .process-track,
[data-reveal].is-visible .report-copy,
[data-reveal].is-visible .report-ui,
[data-reveal].is-visible .proof-metrics,
[data-reveal].is-visible .case-carousel,
[data-reveal].is-visible .proof-more,
[data-reveal].is-visible .proof-note,
[data-reveal].is-visible .assurance-card,
[data-reveal].is-visible .faq-list,
[data-reveal].is-visible .contact-copy,
[data-reveal].is-visible .lead-form,
[data-reveal].is-visible .hero-copy,
[data-reveal].is-visible .hero-panel-wrap {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible .hero-panel-wrap,
[data-reveal].is-visible .pain-grid,
[data-reveal].is-visible .service-grid,
[data-reveal].is-visible .report-ui,
[data-reveal].is-visible .faq-list,
[data-reveal].is-visible .lead-form {
  transition-delay: 0.12s;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 14, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 35px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: 0.105em;
}

.brand-copy small {
  margin-top: 5px;
  color: #a9b7c4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-left: auto;
  margin-right: 34px;
}

.desktop-nav a {
  position: relative;
  color: #b7c1ca;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #041013;
  background: linear-gradient(135deg, #5be1df 0%, #12b8c4 54%, #0f8fa2 100%);
  box-shadow: 0 14px 36px rgba(18, 184, 196, 0.18), inset 0 1px rgba(255, 255, 255, 0.35);
}

.button-primary:hover {
  box-shadow: 0 18px 45px rgba(18, 184, 196, 0.28), inset 0 1px rgba(255, 255, 255, 0.35);
}

.button-outline {
  color: #dbe4eb;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.025);
}

.button-outline:hover {
  border-color: rgba(18, 184, 196, 0.55);
  color: #fff;
}

.button-ghost {
  color: #c5ced6;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.015);
}

.button-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.045);
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 13px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  display: flex;
  min-height: 930px;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 110px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(198, 160, 86, 0.22), transparent);
}

.hero-aurora {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  opacity: 0.32;
  background: radial-gradient(circle, rgba(18, 184, 196, 0.28), rgba(4, 69, 88, 0.08) 42%, transparent 70%);
  filter: blur(25px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.82fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  max-width: 750px;
  margin: 29px 0 30px;
  color: #f7f9fb;
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 730;
  line-height: 1.16;
  letter-spacing: -0.062em;
  word-break: keep-all;
}

.hero h1 em,
.contact-copy h2 em,
.report-copy h2 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #ffffff 0%, #c5d4da 34%, #5ed7d5 75%, #12b8c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 680px;
  margin: 0;
  color: #aeb9c4;
  font-size: 17px;
  line-height: 1.95;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 33px;
  color: #8f9aa5;
  font-size: 12px;
  font-weight: 600;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(18, 184, 196, 0.85);
}

.hero-panel-wrap {
  position: relative;
  perspective: 1200px;
}

.hero-panel-glow {
  position: absolute;
  inset: 7% -5% -10%;
  border-radius: 50%;
  opacity: 0.45;
  background: radial-gradient(circle, rgba(18, 184, 196, 0.25), transparent 64%);
  filter: blur(45px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 27px 28px 23px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.02) 44%, rgba(18, 184, 196, 0.025)),
    rgba(10, 16, 24, 0.88);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  transform: rotateY(-4deg) rotateX(1deg);
  transition: transform 0.45s ease;
}

.hero-panel-wrap:hover .hero-panel {
  transform: rotateY(0) rotateX(0) translateY(-4px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent);
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(18, 184, 196, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(18, 184, 196, 0.025), 0 0 0 58px rgba(18, 184, 196, 0.015);
}

.panel-topline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  color: #83909d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.panel-topline strong {
  color: var(--gold-soft);
  font-size: 9px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #56d9aa;
  box-shadow: 0 0 12px #56d9aa;
}

.panel-statement {
  display: grid;
  gap: 9px;
  margin: 44px 0 25px;
}

.panel-statement span {
  color: #8794a0;
  font-size: 13px;
}

.panel-statement strong {
  max-width: 360px;
  font-size: 27px;
  line-height: 1.45;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.panel-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.principle-list {
  display: grid;
  gap: 0;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 6px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list li > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.principle-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
}

.principle-list strong {
  color: #e8edf1;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.principle-list p {
  margin: 0;
  color: #8996a2;
  font-size: 12px;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 19px;
  color: #60707c;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.panel-footer img {
  width: 28px;
  height: 32px;
  object-fit: contain;
  opacity: 0.72;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #697681;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.32em;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.scroll-indicator i {
  position: relative;
  display: block;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.scroll-indicator i::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 1px;
  background: var(--teal);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { left: -50%; }
  100% { left: 120%; }
}

.section-heading {
  margin-bottom: 62px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr;
  gap: 100px;
  align-items: end;
}

.section-heading h2,
.contact-copy h2,
.report-copy h2,
.assurance-card h2 {
  margin: 18px 0 0;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.057em;
  word-break: keep-all;
}

.section-heading > p,
.split-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  word-break: keep-all;
}

.centered-heading {
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 66px;
  margin-left: auto;
  text-align: center;
}

.centered-heading h2 {
  margin-top: 19px;
}

.centered-heading p {
  max-width: 680px;
  margin: 20px auto 0;
}

.narrow-heading {
  max-width: 680px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pain-card {
  position: relative;
  min-height: 310px;
  padding: 39px 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  transition: background 0.35s ease, transform 0.35s ease;
}

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

.pain-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(18, 184, 196, 0.12);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.pain-card:hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.025);
  transform: translateY(-5px);
}

.pain-card:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.card-number {
  display: inline-block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.pain-card h3 {
  margin: 70px 0 18px;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.pain-card p {
  margin: 0;
  color: #8e9ba8;
  font-size: 14px;
  line-height: 1.9;
  word-break: keep-all;
}

.loss-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 44px;
  color: #d9e0e6;
  text-align: center;
}

.loss-line p {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.loss-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(231, 123, 116, 0.35);
  border-radius: 50%;
  color: var(--danger);
  font-size: 18px;
}

.boutique-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 20, 30, 0.78), rgba(7, 11, 16, 0.94)),
    radial-gradient(circle at 50% 20%, rgba(18, 184, 196, 0.08), transparent 38rem);
}

.boutique-orbit {
  position: absolute;
  top: -370px;
  left: 50%;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.012), 0 0 0 170px rgba(255, 255, 255, 0.008);
}

.comparison-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  background: rgba(6, 10, 15, 0.62);
  box-shadow: var(--shadow);
}

.comparison-side {
  min-height: 430px;
  padding: 45px 47px 44px;
}

.muted-side {
  opacity: 0.68;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.035), transparent 70%);
}

.premium-side {
  position: relative;
  border-left: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(18, 184, 196, 0.095), transparent 55%),
    rgba(12, 20, 29, 0.84);
}

.premium-side::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.comparison-label {
  color: #7d8995;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.premium-side .comparison-label {
  color: var(--gold-soft);
}

.comparison-side h3 {
  margin: 26px 0 37px;
  font-size: 26px;
  line-height: 1.45;
  letter-spacing: -0.045em;
}

.comparison-side ul {
  display: grid;
  gap: 21px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-side li {
  position: relative;
  padding-left: 25px;
  color: #98a4af;
  font-size: 14px;
  line-height: 1.7;
}

.comparison-side li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 1px;
  background: #66727d;
}

.premium-side li {
  color: #c4cdd5;
}

.premium-side li::before {
  width: 11px;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(18, 184, 196, 0.55);
}

.comparison-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-soft);
  background: #0a1017;
  font-family: Georgia, serif;
  font-size: 12px;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.signature-line {
  margin: 54px 0 0;
  color: #d9e1e6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 25px);
  font-style: italic;
  text-align: center;
  letter-spacing: -0.02em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 39px 39px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 52%),
    rgba(11, 17, 25, 0.72);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(18, 184, 196, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(18, 184, 196, 0.018), 0 0 0 54px rgba(18, 184, 196, 0.01);
  transition: transform 0.5s ease;
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(18, 184, 196, 0.34);
  background:
    linear-gradient(145deg, rgba(18, 184, 196, 0.07), transparent 55%),
    rgba(12, 20, 29, 0.88);
  transform: translateY(-6px);
}

.service-card:hover::after {
  transform: scale(1.16) translate(-8px, 8px);
}

.service-kicker {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: 61px 0 18px;
  font-size: 27px;
  letter-spacing: -0.05em;
}

.service-card p {
  max-width: 480px;
  margin: 0;
  color: #919daa;
  font-size: 14px;
  line-height: 1.85;
  word-break: keep-all;
}

.service-tags {
  position: absolute;
  right: 38px;
  bottom: 30px;
  left: 38px;
  display: flex;
  gap: 8px;
}

.service-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #82909c;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.process-section {
  overflow: hidden;
  background: #080d13;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 50%;
  width: 1000px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 184, 196, 0.055), transparent 68%);
  transform: translate(-50%, -50%);
}

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

.process-track::before {
  content: "";
  position: absolute;
  top: 52px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 184, 196, 0.1), rgba(198, 160, 86, 0.4), rgba(18, 184, 196, 0.4), rgba(18, 184, 196, 0.1));
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 23px;
  text-align: center;
}

.step-number {
  display: block;
  margin-bottom: 20px;
  color: #66737f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.step-dot {
  width: 14px;
  height: 14px;
  margin: 0 auto 30px;
  border: 3px solid #080d13;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 0 22px rgba(198, 160, 86, 0.28);
}

.process-step:nth-child(n+3) .step-dot {
  background: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 0 22px rgba(18, 184, 196, 0.28);
}

.process-step h3 {
  margin: 0 0 15px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.process-step p {
  margin: 0;
  color: #85929e;
  font-size: 13px;
  line-height: 1.8;
  word-break: keep-all;
}

.reporting-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 88px;
  align-items: center;
}

.report-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(36px, 3.8vw, 55px);
}

.report-copy > p:not(.report-pledge) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  word-break: keep-all;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #c3ccd4;
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--teal);
}

.report-pledge {
  margin: 35px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.report-ui {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 35%),
    #0b121b;
  box-shadow: var(--shadow);
}

.report-window-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  color: #74818e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.report-window-top > div {
  display: flex;
  gap: 6px;
}

.report-window-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.report-window-top strong {
  justify-self: end;
  color: #5cdbaa;
  font-size: 9px;
}

.report-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.report-summary > div {
  padding: 27px 25px 25px;
  border-right: 1px solid var(--line);
}

.report-summary > div:last-child {
  border-right: 0;
}

.report-summary span {
  display: block;
  margin-bottom: 7px;
  color: #798692;
  font-size: 11px;
}

.report-summary strong {
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.chart-shell {
  padding: 28px 28px 23px;
  border-bottom: 1px solid var(--line);
}

.chart-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: #8d99a4;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.chart-label strong {
  color: var(--teal-soft);
  font-size: 14px;
}

.chart-bars {
  display: grid;
  height: 118px;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  align-items: end;
  padding-top: 10px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 29px;
}

.chart-bars i {
  display: block;
  min-height: 5px;
  border-radius: 1px 1px 0 0;
  background: linear-gradient(to top, rgba(12, 91, 108, 0.7), rgba(54, 209, 213, 0.95));
  box-shadow: 0 -8px 18px rgba(18, 184, 196, 0.07);
}

.report-table {
  padding: 14px 21px 18px;
}

.report-row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  align-items: center;
  min-height: 47px;
  padding: 0 8px;
  border-bottom: 1px solid var(--line);
  color: #a9b3bc;
  font-size: 11px;
}

.report-row:last-child {
  border-bottom: 0;
}

.report-row.head {
  min-height: 34px;
  color: #65727e;
  font-size: 9px;
  font-weight: 700;
}

.pill {
  justify-self: start;
  padding: 3px 8px;
  border: 1px solid;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
}

.pill-gold { color: var(--gold-soft); border-color: rgba(198, 160, 86, 0.28); background: rgba(198, 160, 86, 0.08); }
.pill-blue { color: var(--teal-soft); border-color: rgba(18, 184, 196, 0.28); background: rgba(18, 184, 196, 0.08); }
.pill-muted { color: #98a3ad; border-color: rgba(255,255,255,0.13); background: rgba(255,255,255,0.03); }

.proof-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 11, 16, 0.75), rgba(8, 14, 21, 0.96)),
    radial-gradient(circle at 50% 20%, rgba(198, 160, 86, 0.055), transparent 33rem);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.proof-metrics article {
  position: relative;
  min-height: 310px;
  padding: 38px 35px 34px;
  overflow: hidden;
  border-right: 1px solid var(--line-strong);
  text-align: center;
}

.proof-metrics article:last-child {
  border-right: 0;
}

.proof-metrics article::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.25;
  background: radial-gradient(circle, rgba(18, 184, 196, 0.14), transparent 68%);
  transform: translate(-50%, -50%);
}

.metric-label {
  position: relative;
  display: block;
  margin-bottom: 44px;
  color: #707e89;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.proof-metrics strong {
  position: relative;
  color: #f6f9fa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 7vw, 93px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

.proof-metrics small {
  position: relative;
  margin-left: 6px;
  color: var(--teal-soft);
  font-size: 17px;
  font-weight: 700;
}

.proof-metrics p {
  position: relative;
  max-width: 260px;
  margin: 26px auto 0;
  color: #84919c;
  font-size: 12px;
  line-height: 1.75;
  word-break: keep-all;
}

.case-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border: 1px solid var(--line);
}

.case-strip > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 10px;
  align-items: center;
  min-height: 95px;
  padding: 19px 24px;
  border-right: 1px solid var(--line);
}

.case-strip > div:last-child {
  border-right: 0;
}

.case-strip span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.case-strip strong {
  font-size: 14px;
}

.case-strip p {
  margin: 2px 0 0;
  color: #7e8a95;
  font-size: 11px;
}

.proof-note {
  margin: 18px 0 0;
  color: #66737e;
  font-size: 10px;
  text-align: right;
}

.assurance-grid {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  gap: 85px;
  align-items: start;
}

.assurance-card {
  position: sticky;
  top: 130px;
  padding: 8px 0;
}

.assurance-card h2 {
  margin-bottom: 24px;
}

.assurance-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  word-break: keep-all;
}

.assurance-rule {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 0 12px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.assurance-rule span,
.assurance-rule p {
  min-height: 47px;
  display: flex;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.assurance-rule span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
}

.assurance-rule p {
  color: #b8c2ca;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(18, 184, 196, 0.42);
  color: #d7e2e7;
  font-size: 13px;
  font-weight: 700;
}

.text-link b {
  color: var(--teal);
  transition: transform 0.2s ease;
}

.text-link:hover b {
  transform: translateX(4px);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 87px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 6px;
  color: #dbe2e7;
  font-size: 17px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
  word-break: keep-all;
}

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

.faq-list summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: #8b98a3;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details[open] summary {
  color: #fff;
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 0;
  padding: 0 50px 30px 6px;
  color: #8f9ca8;
  font-size: 14px;
  line-height: 1.9;
  word-break: keep-all;
}

.contact-section {
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 120px;
  background:
    linear-gradient(135deg, rgba(10, 18, 27, 0.96), rgba(5, 9, 14, 0.98)),
    #070b10;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 86px 86px;
}

.contact-aurora {
  position: absolute;
  right: -230px;
  bottom: -280px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  opacity: 0.25;
  background: radial-gradient(circle, rgba(18, 184, 196, 0.32), transparent 67%);
  filter: blur(30px);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact-copy {
  padding-top: 22px;
}

.contact-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(39px, 4.5vw, 62px);
}

.contact-copy > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  word-break: keep-all;
}

.contact-points {
  display: grid;
  gap: 13px;
  margin-top: 39px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #aeb9c2;
  font-size: 13px;
}

.contact-points i {
  color: var(--gold);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.contact-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
}

.contact-signature img {
  width: 43px;
  height: 50px;
  object-fit: contain;
  opacity: 0.9;
}

.contact-signature div {
  display: grid;
}

.contact-signature strong {
  font-size: 13px;
  letter-spacing: 0.12em;
}

.contact-signature span {
  margin-top: 4px;
  color: #63717d;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.lead-form {
  padding: 42px 43px 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 35%),
    rgba(10, 16, 24, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.form-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.form-top > div {
  display: grid;
}

.form-top span {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.form-top strong {
  margin-top: 6px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.form-top em {
  color: #75838f;
  font-size: 10px;
  font-style: normal;
}

.field {
  margin-bottom: 23px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: #bac4cc;
  font-size: 12px;
  font-weight: 650;
}

.field label b {
  color: var(--teal);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 2px;
  outline: none;
  color: #ecf1f4;
  background: rgba(4, 9, 14, 0.58);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 140px;
  padding: 15px 16px;
  line-height: 1.7;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #56636e;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(18, 184, 196, 0.6);
  background: rgba(5, 12, 18, 0.82);
  box-shadow: 0 0 0 3px rgba(18, 184, 196, 0.065);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(231, 123, 116, 0.66);
}

.field-error,
.privacy-error {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  color: var(--danger);
  font-size: 10px;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.field-meta > span {
  margin-top: 6px;
  color: #5d6a76;
  font-size: 10px;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  cursor: pointer;
}

.select-wrap svg {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  fill: none;
  stroke: #7b8994;
  stroke-width: 1.6;
  transform: translateY(-50%);
  pointer-events: none;
}

.field select option {
  color: #eef3f5;
  background: #0a1119;
}

.privacy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 3px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8f9ca7;
  font-size: 11px;
  cursor: pointer;
}

.checkbox-label input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-checkbox {
  display: grid;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.custom-checkbox svg {
  width: 13px;
  fill: none;
  stroke: #041013;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
}

.checkbox-label input:checked + .custom-checkbox {
  border-color: var(--teal);
  background: var(--teal);
}

.checkbox-label input:checked + .custom-checkbox svg {
  opacity: 1;
}

.checkbox-label b {
  color: var(--teal-soft);
}

.privacy-open,
.footer-copy button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #596773;
  color: #818e99;
  background: none;
  font-size: 10px;
  cursor: pointer;
}

.privacy-error {
  margin-top: 4px;
}

.honeypot {
  position: absolute !important;
  left: -99999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  min-height: 59px;
  margin-top: 17px;
  border: 0;
}

.form-submit.is-loading {
  pointer-events: none;
  opacity: 0.78;
}

.form-submit.is-loading span::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 10px;
  border: 2px solid rgba(3, 16, 19, 0.25);
  border-top-color: #031013;
  border-radius: 50%;
  vertical-align: -2px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-note {
  margin: 13px 0 0;
  color: #5c6974;
  font-size: 9px;
  text-align: center;
}

.form-status {
  min-height: 20px;
  margin-top: 8px;
  color: var(--success);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 37px 0;
  border-top: 1px solid var(--line);
  background: #05080c;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 36px;
}

.footer-brand .brand-copy strong {
  font-size: 14px;
}

.footer-brand .brand-copy small {
  font-size: 7px;
}

.footer-brand > p {
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  color: #66737f;
  font-size: 10px;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #596570;
  font-size: 9px;
}

.footer-copy p {
  margin: 0;
}

.floating-cta {
  position: fixed;
  right: 27px;
  bottom: 27px;
  z-index: 80;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(18, 184, 196, 0.36);
  border-radius: 30px;
  color: #e8f4f5;
  background: rgba(7, 15, 21, 0.9);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.floating-cta:hover {
  background: rgba(10, 25, 32, 0.94);
  transform: translateY(-3px);
}

.floating-cta svg {
  width: 19px;
  fill: none;
  stroke: var(--teal-soft);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-pulse {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5bd1a2;
  box-shadow: 0 0 0 0 rgba(91, 209, 162, 0.52);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(91, 209, 162, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 209, 162, 0); }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  padding: 43px;
  border: 1px solid var(--line-strong);
  background: #0c131c;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.62);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s ease;
}

.modal.is-open .modal-card {
  transform: none;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: 0;
  color: #7f8b96;
  background: none;
  font-size: 30px;
  font-weight: 200;
  cursor: pointer;
}

.modal-card h2 {
  margin: 13px 0 26px;
  font-size: 29px;
  letter-spacing: -0.045em;
}

.privacy-table {
  border-top: 1px solid var(--line-strong);
}

.privacy-table > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 19px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-table strong {
  color: #b8c3cc;
  font-size: 12px;
}

.privacy-table p,
.privacy-copy {
  margin: 0;
  color: #85929e;
  font-size: 12px;
  line-height: 1.8;
  word-break: keep-all;
}

.privacy-copy {
  margin-top: 18px;
}

.modal-confirm {
  width: 100%;
  margin-top: 27px;
}

.toast {
  position: fixed;
  top: 102px;
  left: 50%;
  z-index: 400;
  min-width: 260px;
  max-width: calc(100% - 30px);
  padding: 14px 18px;
  border: 1px solid rgba(91, 209, 162, 0.3);
  color: #dff8ed;
  background: rgba(10, 27, 25, 0.94);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.45);
  font-size: 12px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast.is-error {
  border-color: rgba(231, 123, 116, 0.35);
  color: #ffe3df;
  background: rgba(37, 17, 19, 0.95);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 22px;
    margin-right: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(46px, 5.5vw, 65px);
  }

  .panel-statement strong {
    font-size: 23px;
  }

  .principle-list div {
    grid-template-columns: 75px 1fr;
  }

  .reporting-grid,
  .contact-grid {
    gap: 55px;
  }

  .assurance-grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 105px 0;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    color: inherit;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: #c8d0d7;
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(6, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    transition: max-height 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  }

  .mobile-menu.is-open {
    max-height: 420px;
    padding-top: 14px;
    padding-bottom: 21px;
    border-color: var(--line);
  }

  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: #b9c3cb;
    font-size: 14px;
  }

  .mobile-menu a:last-child {
    margin-top: 11px;
    padding: 14px 18px;
    border: 1px solid rgba(18, 184, 196, 0.35);
    color: #d8f3f4;
    text-align: center;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-panel-wrap {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .hero-panel {
    transform: none;
  }

  .split-heading,
  .reporting-grid,
  .assurance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading > p {
    max-width: 660px;
  }

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

  .pain-card {
    min-height: auto;
    padding: 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .pain-card h3 {
    margin-top: 34px;
  }

  .comparison-side {
    padding: 40px 35px;
  }

  .process-track {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

  .process-track::before {
    top: 0;
    bottom: 0;
    left: 21px;
    width: 1px;
    height: auto;
    background: linear-gradient(rgba(198,160,86,.25), rgba(18,184,196,.38), rgba(18,184,196,.05));
  }

  .process-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 20px;
    padding: 0 0 35px;
    text-align: left;
  }

  .step-number {
    grid-column: 1;
    margin: 0 0 4px;
    text-align: center;
  }

  .step-dot {
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 4px auto 0;
  }

  .process-step h3,
  .process-step p {
    grid-column: 2;
  }

  .process-step h3 {
    grid-row: 2;
  }

  .process-step p {
    grid-row: 3;
  }

  .assurance-card {
    position: static;
  }

  .report-ui {
    max-width: 720px;
  }

  .contact-copy {
    max-width: 700px;
  }

  .lead-form {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 83px 0;
  }

  .section-border::before {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 72px;
  }

  .mobile-menu {
    top: 72px;
  }

  .brand-mark {
    width: 30px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .hero {
    padding-top: 125px;
    padding-bottom: 95px;
  }

  .hero::before {
    background-size: 48px 48px;
  }

  .hero h1 {
    margin-top: 23px;
    font-size: clamp(39px, 11.4vw, 54px);
    line-height: 1.19;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-panel {
    padding: 24px 20px 20px;
  }

  .panel-topline {
    grid-template-columns: auto 1fr;
  }

  .panel-topline strong {
    display: none;
  }

  .panel-statement {
    margin-top: 34px;
  }

  .panel-statement strong {
    font-size: 21px;
  }

  .principle-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .principle-list p {
    font-size: 11px;
  }

  .scroll-indicator {
    display: none;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .section-heading h2,
  .contact-copy h2,
  .report-copy h2,
  .assurance-card h2 {
    font-size: clamp(32px, 9.7vw, 44px);
    line-height: 1.32;
  }

  .section-heading > p,
  .split-heading > p,
  .contact-copy > p,
  .report-copy > p:not(.report-pledge),
  .assurance-card > p {
    font-size: 14px;
  }

  .eyebrow,
  .section-index {
    font-size: 9px;
  }

  .pain-card {
    padding: 29px 24px;
  }

  .loss-line {
    align-items: flex-start;
    text-align: left;
  }

  .loss-line p {
    flex: 1;
    font-size: 16px;
  }

  .comparison-shell {
    grid-template-columns: 1fr;
  }

  .comparison-side {
    min-height: auto;
    padding: 35px 26px;
  }

  .premium-side {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .comparison-center {
    top: 50%;
  }

  .comparison-side h3 {
    margin-bottom: 28px;
    font-size: 23px;
  }

  .comparison-side li {
    font-size: 13px;
  }

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

  .service-card {
    min-height: 300px;
    padding: 32px 27px;
  }

  .service-card h3 {
    margin-top: 52px;
    font-size: 24px;
  }

  .service-tags {
    right: 27px;
    left: 27px;
  }

  .report-summary strong {
    font-size: 25px;
  }

  .report-summary > div {
    padding: 23px 15px 21px;
  }

  .chart-shell {
    padding: 24px 18px 20px;
  }

  .chart-bars {
    gap: 5px;
  }

  .report-row {
    grid-template-columns: 1.1fr 0.75fr 0.8fr;
    font-size: 10px;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .proof-metrics article {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .proof-metrics article:last-child {
    border-bottom: 0;
  }

  .case-strip {
    grid-template-columns: 1fr;
  }

  .case-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-strip > div:last-child {
    border-bottom: 0;
  }

  .proof-note {
    text-align: left;
  }

  .faq-list summary {
    min-height: 77px;
    padding-left: 0;
    font-size: 15px;
  }

  .faq-list details p {
    padding-right: 25px;
    padding-left: 0;
    font-size: 13px;
  }

  .contact-section {
    padding-top: 95px;
  }

  .contact-points span {
    align-items: flex-start;
    font-size: 12px;
  }

  .contact-signature {
    margin-top: 42px;
  }

  .lead-form {
    padding: 31px 22px 27px;
  }

  .form-top {
    align-items: flex-start;
  }

  .privacy-row {
    align-items: flex-start;
  }

  .checkbox-label {
    align-items: flex-start;
    line-height: 1.55;
  }

  .custom-checkbox {
    margin-top: 1px;
  }

  .footer-grid,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    gap: 17px;
  }

  .footer-brand > p {
    padding-left: 0;
    border-left: 0;
  }

  .footer-copy {
    flex-wrap: wrap;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 15px;
  }

  .modal-card {
    max-height: calc(100vh - 32px);
    padding: 34px 23px 25px;
    overflow: auto;
  }

  .privacy-table > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Transparent master logo update
   Uses the exact background-free BIGCALL MARKETING artwork supplied by client.
   -------------------------------------------------------------------------- */
.brand-logo {
  display: block;
  width: 92px;
  height: auto;
  object-fit: contain;
}

.site-header .header-inner {
  min-height: 96px;
}

.site-header .brand-logo {
  width: 92px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

.panel-footer .panel-logo {
  width: 64px;
  height: auto;
  opacity: 0.76;
  filter: saturate(0.92);
}

.contact-signature {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.contact-signature img {
  width: 132px;
  height: auto;
  object-fit: contain;
  opacity: 0.94;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
}

.contact-signature > span {
  margin-top: 0;
  padding-left: 2px;
  color: #63717d;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.02em;
}

.footer-brand .footer-logo {
  width: 94px;
  height: auto;
}

@media (max-width: 650px) {
  .site-header .header-inner {
    min-height: 84px;
  }

  .mobile-menu {
    top: 84px;
  }

  .site-header .brand-logo {
    width: 76px;
  }

  .hero {
    padding-top: 137px;
  }

  .panel-footer .panel-logo {
    width: 56px;
  }

  .contact-signature img {
    width: 116px;
  }

  .footer-brand .footer-logo {
    width: 88px;
  }
}


/* ========================================================================== 
   BIGCALL 2026-09 content & brand refinement
   ========================================================================== */

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

/* Clean Korean display type for highlighted statements */
.signature-line,
.report-pledge {
  font-family: Inter, Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  font-style: normal;
  font-weight: 650;
  letter-spacing: -0.042em;
  word-break: keep-all;
}

.signature-line {
  line-height: 1.65;
}

.report-pledge {
  font-size: 18px;
  line-height: 1.7;
}

/* Logo system: mark everywhere, white full lock-up in footer only */
.site-header .brand-logo {
  width: 45px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.panel-footer .panel-logo {
  width: 31px;
  height: 37px;
  opacity: 0.94;
  filter: none;
}

.contact-signature img {
  width: 62px;
  height: 73px;
  object-fit: contain;
  opacity: 1;
}

.footer-brand .footer-logo {
  width: 158px;
  height: auto;
  object-fit: contain;
}

/* Selected work: one verified headline metric */
.proof-metrics-single {
  width: min(100%, 560px);
  grid-template-columns: 1fr;
  margin: 0 auto 48px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(18, 184, 196, 0.13), transparent 15rem),
    rgba(9, 15, 23, 0.72);
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.32);
}

.proof-metrics-single article {
  min-height: 284px;
  padding: 42px 36px 40px;
  border: 0;
}

.proof-metrics-single .metric-label {
  margin-bottom: 30px;
  color: var(--gold-soft);
}

.metric-value {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
}

.proof-metrics-single strong {
  font-family: Inter, Pretendard, "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(72px, 9vw, 112px);
  font-weight: 720;
  letter-spacing: -0.07em;
}

.proof-metrics-single small {
  margin: 0 0 13px 10px;
  font-size: 19px;
}

.proof-metrics-single p {
  margin-top: 24px;
  color: #aeb9c2;
  font-size: 15px;
  font-weight: 650;
}

/* Success case image carousel */
.case-carousel {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 38%),
    rgba(7, 12, 18, 0.78);
  box-shadow: var(--shadow);
}

.case-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding: 0 2px;
}

.case-carousel-head > div:first-child {
  display: grid;
  gap: 4px;
}

.case-carousel-head > div:first-child span {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.case-carousel-head > div:first-child strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

.case-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-controls > span {
  min-width: 54px;
  color: #76838f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
}

.case-controls > span b {
  color: var(--teal-soft);
  font-weight: 800;
}

.case-controls button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #d9e2e8;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.case-controls button:hover:not(:disabled) {
  border-color: rgba(18, 184, 196, 0.45);
  background: rgba(18, 184, 196, 0.09);
  transform: translateY(-1px);
}

.case-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}

.case-controls svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 18px;
  outline: none;
}

.case-viewport::-webkit-scrollbar {
  display: none;
}

.case-viewport:focus-visible {
  box-shadow: 0 0 0 2px rgba(54, 209, 213, 0.45);
}

.case-track {
  display: flex;
  gap: 20px;
}

.case-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.case-slide img {
  width: 100%;
  aspect-ratio: 5 / 3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  user-select: none;
  -webkit-user-drag: none;
}

.case-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.case-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.19);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.case-dots button.is-active {
  width: 28px;
  background: var(--teal-soft);
}

.proof-more {
  width: min(100%, 850px);
  margin: 30px auto 0;
  color: #c8d1d8;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
  text-align: center;
  word-break: keep-all;
}

.proof-note {
  width: min(100%, 920px);
  margin: 14px auto 0;
  text-align: center;
}

/* Corporate information footer */
.site-footer {
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.footer-brand {
  display: block;
}

.footer-information {
  display: grid;
  gap: 11px;
  padding-top: 6px;
}

.footer-information p {
  margin: 0;
  color: #87949f;
  font-size: 11px;
  line-height: 1.8;
}

.footer-address {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.footer-address span {
  position: relative;
}

.footer-address span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #55616c;
  transform: translateY(-50%);
}

.footer-information a {
  color: #b9c4cc;
  transition: color 0.2s ease;
}

.footer-information a:hover {
  color: var(--teal-soft);
}

.footer-company {
  color: #a7b2bb !important;
  font-weight: 600;
}

.footer-company span {
  margin: 0 8px;
  color: #495561;
}

.footer-policy {
  margin-top: 7px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #697681 !important;
  font-size: 10px !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: #596570;
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  color: #6e7a85;
  background: transparent;
  cursor: pointer;
}

.footer-bottom button:hover {
  color: #aab5bd;
}

/* Floating consultation buttons */
.floating-contact {
  bottom: 27px;
}

.floating-kakao {
  bottom: 91px;
  border-color: rgba(254, 229, 0, 0.7);
  color: #191919;
  background: #fee500;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.38);
}

.floating-kakao:hover {
  color: #111;
  background: #f8df00;
  transform: translateY(-3px);
}

.floating-kakao svg {
  width: 20px;
  fill: #191919;
  stroke: none;
}

@media (max-width: 780px) {
  .case-carousel {
    padding: 18px;
    border-radius: 20px;
  }

  .case-carousel-head {
    align-items: flex-end;
  }

  .case-slide img {
    border-radius: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand .footer-logo {
    width: 144px;
  }
}

@media (max-width: 650px) {
  .site-header .brand-logo {
    width: 39px;
    height: 47px;
  }

  .panel-footer .panel-logo {
    width: 28px;
    height: 34px;
  }

  .contact-signature img {
    width: 55px;
    height: 65px;
  }

  .proof-metrics-single article {
    min-height: 242px;
    padding: 35px 24px;
  }

  .case-carousel {
    width: calc(100% + 12px);
    margin-left: -6px;
    padding: 12px;
  }

  .case-carousel-head {
    margin-bottom: 13px;
  }

  .case-carousel-head > div:first-child strong {
    font-size: 16px;
  }

  .case-controls {
    gap: 7px;
  }

  .case-controls button {
    width: 36px;
    height: 36px;
  }

  .case-controls > span {
    min-width: 44px;
    font-size: 9px;
  }

  .case-track {
    gap: 12px;
  }

  .case-dots {
    margin-top: 14px;
  }

  .proof-more {
    margin-top: 25px;
    font-size: 13px;
  }

  .footer-address {
    display: grid;
    gap: 4px;
  }

  .footer-address span + span::before {
    display: none;
  }

  .footer-company span {
    display: block;
    width: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 27px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-kakao {
    right: 14px;
    bottom: 75px;
  }
}

/* =========================================================
   08 / SERVICE PLANS
   ========================================================= */
[data-reveal] .plans-pricing-shell,
[data-reveal] .plan-grid,
[data-reveal] .plans-cta {
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible .plans-pricing-shell,
[data-reveal].is-visible .plan-grid,
[data-reveal].is-visible .plans-cta {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible .plans-pricing-shell {
  transition-delay: 0.08s;
}

[data-reveal].is-visible .plan-grid {
  transition-delay: 0.16s;
}

[data-reveal].is-visible .plans-cta {
  transition-delay: 0.24s;
}

.plans-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 14, 21, 0.97), rgba(6, 10, 15, 0.98)),
    radial-gradient(circle at 86% 12%, rgba(18, 184, 196, 0.09), transparent 32rem);
}

.plans-section::after {
  content: "";
  position: absolute;
  right: -270px;
  bottom: 120px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(18, 184, 196, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 82px rgba(18, 184, 196, 0.018), 0 0 0 164px rgba(18, 184, 196, 0.009);
  pointer-events: none;
}

.plans-orbit {
  position: absolute;
  top: 170px;
  left: -320px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.5;
  background: radial-gradient(circle, rgba(198, 160, 86, 0.07), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.plans-container {
  position: relative;
  z-index: 1;
}

.plans-heading {
  margin-bottom: 58px;
}

.plans-heading > p {
  max-width: 460px;
}

.plans-pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  margin-bottom: 22px;
}

.plan-price-card,
.valid-contact-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3);
}

.plan-price-card {
  padding: 43px 45px 39px;
  background:
    linear-gradient(132deg, rgba(18, 184, 196, 0.14), transparent 51%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(10, 17, 25, 0.92);
}

.plan-price-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal-soft), transparent 92%);
}

.plan-price-card::after {
  content: "";
  position: absolute;
  top: -115px;
  right: -110px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(54, 209, 213, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(54, 209, 213, 0.025), 0 0 0 64px rgba(54, 209, 213, 0.012);
  pointer-events: none;
}

.plan-price-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.plan-price-topline i {
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 160, 86, 0.7), transparent);
}

.plan-price-card h3 {
  position: relative;
  z-index: 1;
  margin: 23px 0 0;
  color: #cbd5dc;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.plan-price-value {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 22px;
  margin-top: 18px;
  padding-bottom: 31px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.plan-price-value strong {
  color: var(--teal-soft);
  font-size: clamp(41px, 4.5vw, 63px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.plan-price-value span {
  color: #f5f8fa;
  font-size: clamp(30px, 3.3vw, 47px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.plan-price-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 15px;
  align-items: start;
  margin-top: 24px;
}

.vat-badge {
  grid-row: span 2;
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(198, 160, 86, 0.32);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(198, 160, 86, 0.06);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.plan-price-meta p {
  position: relative;
  margin: 0;
  padding-left: 13px;
  color: #8d9aa6;
  font-size: 11px;
  line-height: 1.75;
  word-break: keep-all;
}

.plan-price-meta p::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(18, 184, 196, 0.65);
}

.valid-contact-card {
  display: flex;
  flex-direction: column;
  padding: 43px 41px 39px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 43%),
    rgba(11, 17, 25, 0.76);
}

.valid-contact-card::after {
  content: "";
  position: absolute;
  right: -98px;
  bottom: -118px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(198, 160, 86, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.valid-contact-kicker {
  position: relative;
  z-index: 1;
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.valid-contact-card h3 {
  position: relative;
  z-index: 1;
  margin: 19px 0 17px;
  color: #edf2f5;
  font-size: 29px;
  letter-spacing: -0.05em;
}

.valid-contact-definition {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #a5b0ba;
  font-size: 14px;
  line-height: 1.9;
  word-break: keep-all;
}

.valid-contact-exclusions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.valid-contact-exclusions span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #98a5af;
  background: rgba(255, 255, 255, 0.025);
  font-size: 10px;
  font-weight: 650;
}

.valid-contact-notice {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #6f7d88;
  font-size: 10px;
  line-height: 1.75;
  word-break: keep-all;
}

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

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 410px;
  flex-direction: column;
  padding: 37px 39px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.034), transparent 47%),
    rgba(10, 16, 24, 0.72);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transition: width 0.35s ease;
}

.plan-card::after {
  content: "";
  position: absolute;
  top: -95px;
  right: -105px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(18, 184, 196, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(18, 184, 196, 0.012);
  transition: transform 0.45s ease, border-color 0.35s ease;
  pointer-events: none;
}

.plan-card:hover {
  border-color: rgba(18, 184, 196, 0.3);
  background:
    linear-gradient(148deg, rgba(18, 184, 196, 0.065), transparent 48%),
    rgba(11, 19, 28, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

.plan-card:hover::before {
  width: 145px;
}

.plan-card:hover::after {
  border-color: rgba(18, 184, 196, 0.15);
  transform: scale(1.08) translate(-8px, 8px);
}

.plan-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.plan-number {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.plan-name {
  color: #72808c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.21em;
}

.plan-card h3 {
  position: relative;
  z-index: 1;
  margin: 47px 0 17px;
  color: #eff4f6;
  font-size: 27px;
  line-height: 1.35;
  letter-spacing: -0.052em;
  word-break: keep-all;
}

.plan-description {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #919eaa;
  font-size: 13px;
  line-height: 1.9;
  word-break: keep-all;
}

.plan-recommendation {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 13px;
  align-items: start;
  margin-top: auto;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.plan-recommendation span {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.plan-recommendation p {
  margin: -3px 0 0;
  color: #c2ccd3;
  font-size: 12px;
  line-height: 1.75;
  word-break: keep-all;
}

.plan-condition {
  position: relative;
  z-index: 1;
  margin: 17px 0 0;
  padding: 14px 15px;
  border-left: 2px solid rgba(18, 184, 196, 0.55);
  color: #74818c;
  background: rgba(18, 184, 196, 0.035);
  font-size: 9px;
  line-height: 1.7;
  word-break: keep-all;
}

.plans-cta {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.plans-cta .button {
  min-width: 318px;
}

@media (max-width: 980px) {
  .plans-pricing-shell {
    grid-template-columns: 1fr;
  }

  .valid-contact-card {
    min-height: 350px;
  }
}

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

  .plan-card {
    min-height: 360px;
  }
}

@media (max-width: 650px) {
  .plans-section {
    padding-top: 106px;
    padding-bottom: 106px;
  }

  .plans-heading {
    margin-bottom: 42px;
  }

  .plans-heading > p br {
    display: none;
  }

  .plans-pricing-shell {
    gap: 13px;
    margin-bottom: 13px;
  }

  .plan-price-card,
  .valid-contact-card {
    border-radius: 16px;
  }

  .plan-price-card {
    padding: 30px 24px 27px;
  }

  .plan-price-card h3 {
    margin-top: 19px;
    font-size: 15px;
  }

  .plan-price-value {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 25px;
  }

  .plan-price-value strong {
    font-size: clamp(41px, 13vw, 54px);
  }

  .plan-price-value span {
    font-size: clamp(29px, 9.3vw, 39px);
  }

  .plan-price-meta {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 20px;
  }

  .vat-badge {
    grid-row: auto;
    justify-self: start;
  }

  .valid-contact-card {
    min-height: 0;
    padding: 30px 24px 27px;
  }

  .valid-contact-card h3 {
    font-size: 25px;
  }

  .valid-contact-definition {
    font-size: 13px;
  }

  .valid-contact-notice {
    margin-top: 25px;
  }

  .plan-grid {
    gap: 13px;
    margin-top: 13px;
  }

  .plan-card {
    min-height: 410px;
    padding: 30px 24px 27px;
    border-radius: 14px;
  }

  .plan-card h3 {
    margin-top: 37px;
    font-size: 24px;
  }

  .plan-description {
    font-size: 12px;
  }

  .plan-recommendation {
    grid-template-columns: 67px 1fr;
    margin-top: 42px;
  }

  .plan-condition {
    font-size: 9px;
  }

  .plans-cta {
    margin-top: 34px;
  }

  .plans-cta .button {
    width: 100%;
    min-width: 0;
    padding-right: 18px;
    padding-left: 18px;
  }
}
