@charset "UTF-8";
:root {
  /* Zenixa brand palette */
  --accent: #c67a38;
  --accent-strong: #b86a2a;
  --accent-light: #d0843f;
  --accent-rgb: 198, 122, 56;
  --accent2: rgba(198, 122, 56, 0.12);
  --accent-glow: rgba(198, 122, 56, 0.18);
  --hero-bg: #f8f8f8;
  --hero-blue: var(--accent);
  --hero-blue-light: var(--accent-light);
  --hero-dark: #111111;
  --hero-white: #ffffff;
  --container: 1280px;
  --header-h: 76px;
  --bg: #f8f8f8;
  --bg2: #ffffff;
  --bg3: #f0f0f0;
  --surface: #ffffff;
  --surface-muted: #f3f3f3;
  --ink: #111111;
  --ink2: rgba(17, 17, 17, 0.72);
  --ink3: rgba(17, 17, 17, 0.5);
  --green: var(--accent);
  --green-bg: rgba(198, 122, 56, 0.1);
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --card-bg: rgba(255, 255, 255, 0.92);
  --card-bg-solid: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 8px 32px rgba(17, 17, 17, 0.06);
  --shadow-card: 0 12px 40px rgba(17, 17, 17, 0.08);
  --shadow-float: 0 24px 60px rgba(17, 17, 17, 0.1);
  --transition: 0.3s ease;
  --font-body: 'Rubik', system-ui, sans-serif;
  --font-title: 'Montserrat', system-ui, sans-serif;
  --font: var(--font-body);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

/* ─── Global typography (Rubik body · Montserrat titles) ─── */
body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
}

.logo {
  font-family: var(--font-title);
}

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

/* ─── HEADER ─── */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 4.5px;
  color: black;
  text-decoration: none;
}

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

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: right;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-desktop a:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 210;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.78);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-cta:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.header-cta--outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.header-cta--outline:hover {
  background: rgba(255, 87, 34, 0.08);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #111;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* mobile nav */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 100px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.nav-mobile a {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.nav-mobile a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--hero-white);
}

.nav-mobile .header-cta {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
  font-size: 15px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  color: var(--ink);
  min-height: 100vh;
  padding-top: var(--header-h);
  margin-bottom: 0;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 78% 22%, rgb(255, 255, 255) 0%, rgba(148, 169, 216, 0.22) 36%), radial-gradient(circle at 18% 88%, rgba(17, 17, 17, 0.03) 0%, rgba(0, 0, 0, 0.1882352941) 30%), #dcdcdc;
}

.hero-watermark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  mask-image: linear-gradient(180deg, #000 0%, #000 42%, rgba(0, 0, 0, 0.35) 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, rgba(0, 0, 0, 0.35) 78%, transparent 100%);
}

.hero-watermark__track {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0;
  padding: 0;
  transform: translateY(1%);
}

.hero-watermark__word {
  flex: 1 1 50%;
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(88px, 13vw, 280px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.9803921569) 0%, rgba(207, 207, 207, 0.92) 28%, rgba(106, 103, 103, 0.5490196078) 58%, rgba(48, 48, 48, 0.5490196078) 82%, rgba(198, 198, 198, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-spheres {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-sphere {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  pointer-events: none;
  animation: sphereFloat 7s ease-in-out infinite;
  will-change: transform;
}

.hero-sphere--1 {
  top: 6%;
  left: -3%;
  width: 320px;
  animation-delay: 0s;
}

.hero-sphere--2 {
  top: 17%;
  left: 13%;
  width: 130px;
  animation-delay: 1.1s;
}

.hero-sphere--3 {
  top: 32%;
  left: 4%;
  width: 130px;
  animation-delay: 2.3s;
}

.hero-sphere--4 {
  bottom: -11%;
  left: -6%;
  width: 426px;
  animation-delay: 0.7s;
}

.hero-sphere--5 {
  top: 16%;
  right: -12%;
  width: 650px;
  animation-delay: 1.8s;
}

@keyframes sphereFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.03);
  }
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(calc(100vh - var(--header-h)), auto);
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  position: relative;
  z-index: 2;
}

.hero-left {
  grid-area: 1/1;
  position: relative;
  z-index: 6;
  max-width: min(920px, 84%);
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.badge {
  background: rgba(21, 21, 21, 0.6509803922);
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(199, 220, 106);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgb(199, 220, 106);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-title);
  font-size: clamp(56px, 7.2vw, 104px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 32px;
  padding: 0.06em 0.04em 0.02em;
  text-align: left;
  overflow: visible;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(90deg, #141414 0%, #141414 28%, #5a5a5a 58%, #9a9a9a 78%, #c8c8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-title .accent {
  font-style: italic;
  font-weight: 800;
}

.hero-subtitle {
  font-size: clamp(17px, 1.85vw, 22px);
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 36px;
  text-shadow: 0 0 32px rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  position: relative;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--hero-dark);
  color: #fff;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.16);
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.2);
}

.btn-primary__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-primary__icon svg {
  width: 14px;
  height: 14px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-2px);
}

.hero-cursor {
  position: absolute;
  left: 42%;
  bottom: -8px;
  width: 22px;
  pointer-events: none;
  animation: cursorBob 2.5s ease-in-out infinite;
}

@keyframes cursorBob {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(4px, 4px);
  }
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--hero-bg);
  overflow: hidden;
  margin-left: -10px;
  flex-shrink: 0;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.av1 {
  background: #5566cc;
}

.av2 {
  background: #cc5566;
}

.av3 {
  background: #55aa88;
}

.av4 {
  background: #cc8844;
}

.social-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.social-text strong {
  color: var(--hero-blue-light);
  font-weight: 700;
}

/* ─── HERO RIGHT (visual) ─── */
.hero-right {
  grid-area: 1/1;
  position: relative;
  justify-self: end;
  align-self: end;
  width: min(56%, 700px);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 0 0;
  z-index: 2;
  pointer-events: none;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: min(90vh, 860px);
  margin: 0 auto;
  pointer-events: auto;
}

.hero-glow {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 120%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.hero-person {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 115%;
  width: auto;
  max-width: 110%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 3;
}

.hero-frame {
  position: absolute;
  top: -11%;
  left: 16%;
  transform: rotate3d(4, 4, 9, 10deg);
  width: 75%;
  height: auto;
  pointer-events: none;
  z-index: 3;
}

.hero-pill {
  position: absolute;
  height: auto;
  width: auto;
  max-width: min(280px, 45vw);
  z-index: 10;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
  animation: pillFloat 4s ease-in-out infinite;
}

.hero-pill--check {
  top: 22%;
  left: -6%;
  animation-delay: 0s;
}

.hero-pill--heart {
  top: 18%;
  right: -8%;
  animation-delay: 0.6s;
}

.hero-pill--telegram {
  bottom: 28%;
  right: -10%;
  animation-delay: 1.2s;
}

@keyframes pillFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-arrow {
  position: absolute;
  left: -27%;
  top: 34%;
  width: min(320px, 22vw);
  z-index: 8;
  pointer-events: none;
  animation: arrowPulse 3s ease-in-out infinite;
  transform: rotate(270deg);
}

/* @keyframes arrowPulse {
  0%, 100% { opacity: 0.85; transform: translate(0, 0); }
  50% { opacity: 1; transform: translate(6px, 4px); }
} */
.hero-tools {
  position: absolute;
  right: 5%;
  bottom: 5%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 12;
}

.hero-tool-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  color: #555;
  transition: transform 0.2s;
}

.hero-tool-btn:hover {
  transform: scale(1.06);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-sphere--2 {
    left: 10%;
  }
  .hero-sphere--5 {
    right: 2%;
    width: clamp(48px, 5vw, 72px);
  }
  .hero-left {
    max-width: min(780px, 88%);
  }
  .hero-right {
    width: min(50%, 560px);
  }
  .hero-pill--check {
    left: -12%;
  }
  .hero-pill--heart {
    right: -14%;
  }
  .hero-pill--telegram {
    right: -14%;
  }
  .hero-arrow {
    left: -22%;
  }
}
@media (max-width: 900px) {
  .header-inner {
    padding: 12px 24px;
  }
  .nav-desktop,
  .header-actions .header-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0 24px 48px;
    min-height: auto;
  }
  .hero-left {
    grid-area: auto;
    max-width: none;
    padding: 32px 0 24px;
    text-align: left;
  }
  .hero-title {
    font-size: clamp(40px, 11vw, 52px);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }
  .hero-subtitle {
    text-shadow: none;
  }
  .hero-right {
    grid-area: auto;
    justify-self: center;
    width: 100%;
    min-height: 480px;
    padding-bottom: 24px;
  }
  .hero-watermark__word {
    font-size: clamp(56px, 22vw, 160px);
  }
  .hero-visual {
    max-width: 420px;
    height: 520px;
  }
  .hero-pill {
    max-width: 200px;
  }
  .hero-pill--check {
    top: 18%;
    left: -4%;
  }
  .hero-pill--heart {
    top: 12%;
    right: -6%;
  }
  .hero-pill--telegram {
    bottom: 22%;
    right: -6%;
  }
  .hero-arrow {
    left: -8%;
    top: 42%;
    width: 80px;
  }
  .hero-tools {
    display: none;
  }
  .hero-sphere--2,
  .hero-sphere--5 {
    display: none;
  }
  .hero-sphere--1 {
    top: 8%;
    left: 1%;
    width: 40px;
  }
  .hero-sphere--3 {
    top: 38%;
    left: 2%;
    width: 48px;
  }
  .hero-sphere--4 {
    bottom: 6%;
    left: 2%;
    width: 36px;
  }
}
@media (max-width: 520px) {
  .header-inner {
    padding: 10px 16px;
  }
  .logo-text {
    display: none;
  }
  .hero-grid {
    padding: 0 16px 40px;
  }
  .hero-title {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 0.92;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }
  .hero-cursor {
    display: none;
  }
  .hero-visual {
    height: 440px;
    max-width: 100%;
  }
  .hero-watermark__word {
    font-size: clamp(44px, 20vw, 100px);
  }
  .hero-pill {
    max-width: 160px;
  }
  .hero-pill--check {
    top: 14%;
    left: 0;
  }
  .hero-pill--heart {
    top: 8%;
    right: 0;
  }
  .hero-pill--telegram {
    bottom: 18%;
    right: 0;
  }
  .hero-arrow {
    left: 0;
    width: 64px;
    opacity: 0.7;
  }
  .social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-sphere--3 {
    display: none;
  }
  .hero-sphere--1 {
    top: 6%;
    width: 36px;
  }
  .hero-sphere--4 {
    bottom: 4%;
    width: 32px;
    opacity: 0.85;
  }
}
.scroll-section {
  scroll-margin-top: var(--header-h);
}

.section-nav {
  display: none;
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .section-nav {
    display: block;
  }
}
.section-nav__inner {
  position: relative;
}

.section-nav__track {
  position: absolute;
  right: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.section-nav__track-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, rgba(198, 220, 89, 0.45), var(--accent));
  border-radius: inherit;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.section-nav__dot {
  pointer-events: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.section-nav__dot::after {
  content: "";
  position: absolute;
  inset: -8px;
}
.section-nav__dot:hover {
  border-color: rgba(198, 220, 89, 0.65);
  background: rgba(198, 220, 89, 0.12);
  transform: scale(1.15);
}
.section-nav__dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(198, 220, 89, 0.18);
  transform: scale(1.2);
}

.section-nav__tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: #111;
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

.section-nav__dot:hover .section-nav__tip,
.section-nav__dot:focus-visible .section-nav__tip,
.section-nav__dot.is-active .section-nav__tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.section-nav__dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 1280px) {
  .section-nav {
    right: 16px;
  }
  .section-nav__tip {
    display: none;
  }
}
.site-main {
  font-family: var(--font-body);
  color: var(--ink);
}
.site-main h1, .site-main h2, .site-main h3, .site-main h4,
.site-main .price-val, .site-main .plan-name,
.site-main .section-label, .site-main .card-label,
.site-main .stat-big, .site-main .cal-heading, .site-main .extras-title,
.site-main .microsteps-title, .site-main .faq-q {
  font-family: var(--font-title);
}
.site-main em {
  color: var(--accent);
}

/* FLOAT */
.float-btn {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 300;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(255, 87, 34, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fiin 0.5s ease 0.4s both;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(255, 87, 34, 0.45);
}

@keyframes fiin {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* STATS — dark editorial */
.stats-wrap {
  max-width: 1200px;
  margin: 80px auto 0;
}

.stats-row {
  justify-content: space-between;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.stat {
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat:last-child {
  border-right: none;
}

.stat-val {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 12px;
}

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

.stat-lbl {
  font-size: 12px;
  color: var(--ink3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .stats-wrap {
    padding: 0 20px;
    margin-bottom: 56px;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .stat {
    padding: 28px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat:last-child {
    border-bottom: none;
  }
  .stat-val {
    font-size: 48px;
  }
}
/* SECTION */
.site-main section {
  max-width: 1200px;
  margin: 80px auto;
}

.section-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.site-main h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* FOR WHOM cards — see layout/_about-section.scss */
/* block decorations */
.block-decor {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  height: auto;
  display: block;
}

.card-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 12px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink2);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 700;
}

/* AUTHOR — see layout/_author-section.scss */
.btn-tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 24px;
  border-radius: 100px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-tg:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* HOW IT WORKS — see layout/_how-section.scss */
/* PRICING steps & help — see layout/_pricing-section.scss */
/* CALENDAR — see layout/_calendar-section.scss */
/* PRICING — see layout/_pricing-section.scss */
/* SECURITY — see layout/_security-section.scss */
/* TESTIMONIALS — see layout/_reviews-section.scss */
/* FAQ — see layout/_faq-section.scss */
/* CTA FINAL — see layout/_contact-section.scss */
/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
  background: #0a0a0a;
}

footer .logo {
  color: #fff;
  text-decoration: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay[hidden] {
  display: none !important;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  --modal-border-top: rgba(255, 87, 34, 0.55);
  --modal-border: rgba(0, 0, 0, 0.08);
  position: relative;
  isolation: isolate;
  background: #ffffff;
  color: var(--ink);
  border: none;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: min(82vh, 860px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.modal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(ellipse 72% 140% at 50% 0%, var(--modal-border-top) 0%, rgba(255, 87, 34, 0.22) 22%, rgba(0, 0, 0, 0.04) 48%, var(--modal-border) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-head-text h2 {
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.8px;
  margin: 0 0 8px;
  line-height: 1.1;
}

.modal-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-label::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  display: block;
}

.modal-date {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.45;
}

.modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 87, 34, 0.28);
  background: rgba(255, 87, 34, 0.06);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.modal-close:hover {
  background: rgba(255, 87, 34, 0.14);
  border-color: rgba(255, 87, 34, 0.45);
  transform: translateY(-1px);
}

.modal-body {
  overflow-y: auto;
  padding: 22px 28px 32px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 87, 34, 0.35) transparent;
}
.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 87, 34, 0.35);
  border-radius: 999px;
}

.modal h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 22px 0 8px;
  font-family: var(--font-title);
}

.modal p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 10px;
}

.modal strong {
  color: var(--ink);
  font-weight: 600;
}

.modal-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.modal-link:hover {
  opacity: 0.85;
}

.modal-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

@media (prefers-reduced-motion: reduce) {
  .modal-overlay,
  .modal {
    transition: none;
  }
}
/* DEADLINE BANNER — sticky strip under nav, shown only when ≤14 days to deadline */
.deadline-banner {
  display: none;
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: linear-gradient(90deg, rgba(255, 87, 34, 0.12), rgba(255, 87, 34, 0.06));
  border-bottom: 1px solid rgba(255, 87, 34, 0.2);
  padding: 11px 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink);
}

.deadline-banner.show {
  display: flex;
}

.db-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.db-text strong {
  font-weight: 700;
  color: var(--accent);
}

.db-cta {
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  border: 1px solid var(--accent);
}

.db-cta:hover {
  opacity: 0.88;
}

.db-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.55;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
  transition: opacity 0.2s;
  margin-left: 6px;
}

.db-close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .deadline-banner {
    padding: 9px 16px;
    font-size: 12.5px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .db-cta {
    font-size: 11px;
    padding: 5px 12px;
  }
}
/* CALCULATOR — see layout/_calculator-section.scss */
/* EXTRAS — see layout/_extras-section.scss */
/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links li:not(:last-child) {
    display: none;
  }
  .nav-links .btn-primary {
    padding: 9px 18px;
    font-size: 13px;
  }
  section {
    padding: 56px 20px;
  }
  .for-whom-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-wrap {
    padding: 36px 20px;
  }
  footer {
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
    background: #0a0a0a;
  }
  .modal-overlay {
    padding: 16px;
  }
  .modal-head {
    padding: 22px 20px 16px;
  }
  .modal-body {
    padding: 18px 20px 24px;
  }
}
/* Light theme overrides for all sections below hero */
.bg-gradient {
  background: #ffffff;
}

.site-main {
  background: #ffffff;
}

/* Cards — shared light elevation */
.for-card,
.author-card,
.step-card,
.plan-card,
.extra-card,
.calc-card,
#pricing .microsteps-wrap {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.for-card:hover,
.plan-card:hover,
.extra-card:hover {
  box-shadow: var(--shadow-card);
}

/* Step card watermark numbers */
.step-card::before {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.07) 0%, rgba(17, 17, 17, 0.03) 40%, rgba(17, 17, 17, 0) 78%);
}

.step-note {
  border-color: var(--border);
  background: var(--surface-muted);
  color: var(--ink2);
}

/* Pricing featured */
.plan-card.featured {
  border: 2px solid var(--accent);
  color: var(--ink);
  box-shadow: 0 16px 48px rgba(255, 87, 34, 0.14);
}

.plan-card.featured .plan-name,
.plan-card.featured .price-note,
.plan-card.featured .plan-for,
.plan-card.featured .plan-feature {
  color: var(--ink2);
}

.plan-card.featured .price-val {
  color: var(--ink);
}

.plan-card.featured .plan-divider {
  background: var(--border);
}

.popular-badge {
  background: var(--accent);
  color: #fff;
}

.btn-ask {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-ask:hover {
  background: var(--accent-strong);
}

/* Calculator CTA — scoped to light panel sections only */
.site-main .calc-section:not(#calculator) .calc-cta-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.site-main .calc-section:not(#calculator) .calc-cta-btn:hover {
  background: var(--accent-strong);
}

.help-strip {
  background: rgba(255, 87, 34, 0.08);
  border: 1px solid rgba(255, 87, 34, 0.16);
}

/* Calendar */
.cal-track {
  background: rgba(0, 0, 0, 0.06);
}

.cal-item {
  background: var(--surface-muted);
  border-color: var(--border);
}

.cal-item.past .cal-badge {
  color: var(--ink3);
}

.cal-item.past .cal-date {
  text-decoration-color: rgba(17, 17, 17, 0.2);
}

.cal-item.next {
  background: rgba(255, 87, 34, 0.06);
  border-color: rgba(255, 87, 34, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 87, 34, 0.08), 0 10px 28px rgba(17, 17, 17, 0.06);
}

.cal-item.next:hover {
  box-shadow: 0 0 0 1px rgba(255, 87, 34, 0.14), 0 14px 32px rgba(17, 17, 17, 0.08);
}

.cal-item.upcoming:hover {
  border-color: var(--border-strong);
}

/* Security cards */
.sec-card {
  background: var(--surface-muted);
  border: 1px solid var(--border);
}

/* Testimonials */
.testimonials-arrow {
  border-color: var(--border);
  background: #fff;
  color: var(--ink2);
}

.testimonials-arrow:hover:not(:disabled) {
  background: rgba(255, 87, 34, 0.08);
  border-color: rgba(255, 87, 34, 0.28);
  color: var(--accent);
}

.testimonials-dot {
  background: rgba(17, 17, 17, 0.12);
}

.testimonials-dot:hover:not(.is-active) {
  background: rgba(17, 17, 17, 0.22);
}

.testi-author {
  border-top-color: var(--border);
}

.testi-avatar {
  border-color: rgba(255, 87, 34, 0.22);
  background: rgba(255, 87, 34, 0.06);
}

/* FAQ */
.faq-list,
.faq-item {
  border-color: var(--border);
}

.faq-icon {
  border-color: rgba(255, 87, 34, 0.28);
}

.faq-item.open .faq-icon {
  border-color: rgba(255, 87, 34, 0.45);
  background: rgba(255, 87, 34, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 87, 34, 0.1);
}

/* Calculator */
.calc-period {
  background: var(--surface-muted);
  border-color: var(--border);
}

.calc-input-wrap,
.calc-limit {
  background: #fff;
  border-color: var(--border);
}

.calc-right {
  background: var(--surface-muted);
  border-color: var(--border);
  color: var(--ink);
}

.calc-row {
  color: var(--ink2);
}

.calc-row-name {
  color: var(--ink);
}

.calc-row-sub {
  color: var(--ink3);
}

.calc-row-val,
.calc-total-val {
  color: var(--ink);
}

.calc-divider,
.calc-net {
  border-color: var(--border);
}

.calc-total-lbl,
.calc-net-title {
  color: var(--ink3);
}

.calc-net-row {
  color: var(--ink2);
}

.calc-net-row--minus .calc-net-val {
  color: var(--ink2);
}

.calc-cta-text strong {
  color: var(--ink);
}

/* CTA final */
.cta-final {
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-final h2 {
  color: var(--ink);
}

.cta-final p {
  color: var(--ink2);
}

/* Footer */
.site-main footer {
  background: #0a0a0a;
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
}

.site-main footer .footer-links a {
  color: rgba(255, 255, 255, 0.48);
}

.site-main footer .footer-links a:hover {
  color: #fff;
}

/* Modal */
.modal {
  background: #fff;
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.16);
}

.modal-head {
  border-bottom-color: var(--border);
}

.modal-divider {
  background: var(--border);
}

.modal-close {
  border-color: rgba(255, 87, 34, 0.22);
  background: rgba(255, 87, 34, 0.06);
}

.modal-close:hover {
  background: rgba(255, 87, 34, 0.12);
  border-color: rgba(255, 87, 34, 0.35);
}

.modal-body {
  scrollbar-color: rgba(255, 87, 34, 0.35) transparent;
}
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 87, 34, 0.35);
}

/* Deadline banner */
.deadline-banner {
  background: linear-gradient(90deg, rgba(255, 87, 34, 0.12), rgba(255, 87, 34, 0.06));
  border-bottom-color: rgba(255, 87, 34, 0.2);
  color: var(--ink);
}

.db-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Section nav on light pages */
.section-nav__dot {
  border-color: rgba(17, 17, 17, 0.12);
  background: #fff;
}

.section-nav__dot:hover {
  border-color: rgba(255, 87, 34, 0.45);
  background: rgba(255, 87, 34, 0.08);
}

.section-nav__dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.16);
}

.section-nav__tip {
  color: #fff;
  background: #111;
}

/* Mobile nav — light */
.nav-mobile {
  background: rgba(255, 255, 255, 0.98);
}

.nav-mobile a {
  color: var(--ink2);
}

.nav-mobile a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
}

.header-cta--outline:hover {
  background: rgba(255, 87, 34, 0.08);
}

.burger:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Zenixa — premium agency design system */
.bg-gradient,
.site-main {
  background: var(--bg);
}

/* Remove legacy dark gradient card borders */
.for-card::before,
.author-card::before,
.step-card::after,
.plan-card::after,
.calendar-strip::after,
.calc-card::after,
.extra-card::after,
.modal::after {
  display: none !important;
}

/* Glass cards */
.for-card,
.author-card,
.step-card,
.plan-card,
.extra-card,
.calc-card,
#pricing .microsteps-wrap,
.sec-card {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
}

.for-card,
.author-card {
  border-radius: var(--radius-xl);
}

.step-card,
.plan-card,
.extra-card,
.calc-card {
  border-radius: var(--radius-lg);
}

.for-card:hover,
.plan-card:hover,
.extra-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

/* Typography */
.site-main h2 {
  font-weight: 700;
  letter-spacing: -0.04em;
}

.section-label {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.section-sub,
.card-label {
  color: var(--ink3);
}

/* Featured plan — dark Zenixa card */
.for-card,
.plan-card,
.extra-card,
.step-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan-card.featured {
  background: var(--hero-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: var(--shadow-float);
  transform: scale(1.04);
}

.plan-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

@media (max-width: 900px) {
  .plan-card.featured,
  .plan-card.featured:hover {
    transform: none;
  }
}
.plan-card.featured .plan-name,
.plan-card.featured .price-note {
  color: rgba(255, 255, 255, 0.5);
}

.plan-card.featured .price-val {
  color: #fff;
}

.plan-card.featured .plan-for,
.plan-card.featured .plan-feature {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card.featured .plan-divider {
  background: rgba(255, 255, 255, 0.1);
}

.popular-badge {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-light));
  color: #fff;
}

/* Pill buttons */
.btn-primary,
.btn-ask,
.calc-cta-btn,
.btn-tg,
.plan-cta,
.db-cta,
.float-btn {
  border-radius: 999px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary,
.plan-cta.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--hero-dark);
  color: #fff;
  padding: 8px 8px 8px 22px;
  border: none;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.16);
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.2);
}

.btn-primary__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-primary__icon svg {
  width: 14px;
  height: 14px;
}

.btn-secondary,
.step-note,
.author-card__btn.btn-secondary {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  color: var(--ink);
}

.btn-ask,
.calc-cta-btn,
.btn-tg {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-light));
  border: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.28);
}

.btn-ask:hover,
.calc-cta-btn:hover,
.btn-tg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.34);
}

.help-strip {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}

/* Stats */
.stats-wrap {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
  padding: 8px 0;
  margin-top: 48px;
}

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

/* Icons in cards */
.for-card__icon,
.author-card__icon,
.sec-icon,
.cal-icon,
.calc-limit-icon,
.calc-hint-icon {
  border-radius: 14px;
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
}

.check-icon,
.ms-n,
.feat-check,
.for-check-mark,
.step-tag {
  color: var(--accent);
}

.ms-n,
.check-icon {
  background: var(--accent2);
}

/* Calendar active state */
.cal-item.next {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.cal-track-fill,
.calc-limit-fill {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.45), var(--accent));
}

/* Testimonials — see layout/_reviews-section.scss */
/* FAQ */
.faq-q:hover {
  color: var(--accent);
}

.faq-icon {
  border-color: rgba(var(--accent-rgb), 0.28);
  color: var(--accent);
}

.faq-item.open .faq-icon {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.08);
}

/* CTA block */
.cta-final {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* Modal */
.modal {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
}

.modal-close {
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(var(--accent-rgb), 0.06);
  color: var(--accent);
}

/* Float button */
.float-btn {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-light));
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.4);
}

.float-btn:hover {
  box-shadow: 0 12px 36px rgba(var(--accent-rgb), 0.5);
}

/* Section nav */
.section-nav__track-fill {
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.45), var(--accent));
}

.section-nav__dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.16);
}

.section-nav__dot:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.08);
}

/* Deadline banner */
.deadline-banner {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.14), rgba(var(--accent-rgb), 0.06));
  border-bottom-color: rgba(var(--accent-rgb), 0.2);
}

.db-cta {
  background: var(--accent);
}

/* Header glass on scroll areas below hero */
header {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.nav-desktop a {
  border-radius: 999px;
  padding: 10px 14px;
}

.header-cta {
  border-radius: 999px;
}

/* ─── HOW IT WORKS (Zenixa services layout) ─── */
.how-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 48px 64px;
  align-items: start;
}

.how-layout__head {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}

.how-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--hero-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.how-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.how-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 20px;
}

.how-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink2);
  margin-bottom: 36px;
  max-width: 280px;
}

.how-cta {
  margin-top: auto;
}

#how .steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

#how .step-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px 28px 32px;
  border-radius: 28px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
#how .step-card::before {
  content: attr(data-num) ".";
  position: absolute;
  left: 16px;
  bottom: 4px;
  right: auto;
  font-family: var(--font-title);
  font-size: clamp(88px, 9vw, 128px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.85;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0.9803921569) 0%, rgba(207, 207, 207, 0.92) 28%, rgba(106, 103, 103, 0.5490196078) 58%, rgba(48, 48, 48, 0.5490196078) 82%, rgba(198, 198, 198, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#how .step-card::after {
  display: none;
}
#how .step-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  max-width: 85%;
}
#how .step-card p {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 72%;
  padding-bottom: 48px;
}
#how .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

#how .step-card:nth-child(2) {
  margin-top: 72px;
}

.step-card__tags {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink3);
  letter-spacing: 0.01em;
}

.how-section .step-note {
  display: block;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 40px auto 0;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--ink3);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 1024px) {
  .how-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-layout__head {
    position: static;
  }
  #how .step-card:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .how-section .container {
    padding: 0 24px;
  }
  #how .steps-grid {
    grid-template-columns: 1fr;
  }
  #how .step-card {
    min-height: 260px;
  }
  #how .step-card p {
    max-width: 100%;
    padding-bottom: 56px;
  }
  .how-section .step-note {
    max-width: calc(100% - 48px);
  }
}
/* ─── PRICING (mockup layout) ─── */
.pricing-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.pricing-intro {
  position: static;
  text-align: center;
  margin: 0 auto 52px;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  margin-bottom: 22px;
}

.pricing-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.pricing-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}
.pricing-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

.pricing-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink2);
  margin: 0;
}

#pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 0;
  padding-top: 0;
}

#pricing .plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 36px 32px 28px;
  border-radius: 32px;
  background: #f3f3f3;
  border: 1px solid var(--border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0px 6px 17px 4px rgba(0, 0, 0, 0.1411764706);
}
#pricing .plan-card::after {
  display: none;
}
#pricing .plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.plan-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  margin-bottom: 28px;
}

.plan-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.plan-card__title {
  font-family: var(--font-title);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 12px;
}

.plan-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink2);
  margin-bottom: 8px;
}

.plan-card__price-pill {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 28px 0 24px;
  padding: 18px 24px;
  border-radius: 999px;
  background: var(--hero-dark);
  color: #fff;
  text-align: center;
}

.plan-card__price-from,
.plan-card__price-unit {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.82;
}

.plan-card__price-val {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

#pricing .plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

#pricing .plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink2);
}

#pricing .feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 8px;
}

.plan-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink3);
}
.plan-card__meta svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.plan-card__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.08);
}

.plan-card__arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.12);
}

/* Featured — copper gradient card */
#pricing .plan-card.featured {
  background: linear-gradient(165deg, #c9844a 0%, #9a5a30 42%, #5c3018 100%);
  border: none;
  color: #fff;
  box-shadow: 0 20px 56px rgba(92, 48, 24, 0.28);
  transform: none;
}

#pricing .plan-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(92, 48, 24, 0.34);
}

#pricing .plan-card.featured .plan-card__badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}

#pricing .plan-card.featured .plan-card__badge-dot {
  background: #fff;
}

#pricing .plan-card.featured .plan-card__title {
  color: #fff;
}

#pricing .plan-card.featured .plan-card__desc,
#pricing .plan-card.featured .plan-feature {
  color: rgba(255, 255, 255, 0.78);
}

#pricing .plan-card.featured .feat-check {
  color: rgba(255, 255, 255, 0.95);
}

#pricing .plan-card.featured .plan-card__price-pill {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#pricing .plan-card.featured .plan-card__meta {
  color: rgba(255, 255, 255, 0.65);
}

#pricing .plan-card.featured .plan-card__arrow {
  background: #fff;
  color: var(--ink);
  border-color: transparent;
}

/* Steps after plan cards — linear layout, updated card shell */
#pricing .microsteps-wrap {
  margin-top: 88px;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}

#pricing .microsteps-head {
  margin-bottom: 28px;
}

#pricing .microsteps-pill {
  margin-bottom: 16px;
}

#pricing .microsteps-title {
  text-align: center;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

#pricing .mss {
  display: flex;
  gap: 0;
}

#pricing .ms {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 0;
}

#pricing .ms:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

#pricing .ms-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ededed;
  color: #393939;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

#pricing .ms-t {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5;
  padding: 0 8px;
}

#pricing .ms-t strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  color: #000000;
}

@media (max-width: 1024px) {
  #pricing .mss {
    flex-direction: column;
    gap: 20px;
  }
  #pricing .ms::after {
    display: none;
  }
}
@media (max-width: 640px) {
  #pricing .microsteps-wrap {
    padding: 24px 20px 20px;
  }
}
@media (max-width: 1024px) {
  #pricing .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  #pricing .plan-card {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .pricing-section .container {
    padding: 0 24px;
  }
}
/* ─── CALENDAR / DEADLINES (process mockup layout) ─── */
.calendar-section {
  margin: 80px auto;
}
.calendar-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.calendar-strip {
  position: relative;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.calendar-strip::after {
  display: none;
}

.cal-intro {
  margin-bottom: 48px;
}

.cal-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  margin-bottom: 24px;
}

.cal-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}

.cal-heading {
  font-family: var(--font-title);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}

.cal-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 420px;
}

.cal-col {
  position: relative;
  padding: 0 10px 0 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.43);
  min-width: 0;
}
.cal-col:first-child {
  border-left: none;
  padding-left: 0;
}

.cal-step-num {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink3);
  margin-bottom: 20px;
  padding-left: 4px;
}

.cal-col:nth-child(1) .cal-item {
  margin-top: 0;
}

.cal-col:nth-child(2) .cal-item {
  margin-top: 72px;
}

.cal-col:nth-child(3) .cal-item {
  margin-top: 144px;
}

.cal-col:nth-child(4) .cal-item {
  margin-top: 216px;
}

.cal-item {
  position: relative;
  width: 100%;
}

.cal-item__card {
  width: 100%;
  border-radius: 20px;
  padding: 18px 18px 16px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.cal-badge {
  display: none;
  align-items: center;
  gap: 5px;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1;
}
.cal-badge svg {
  flex-shrink: 0;
}

.cal-q {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink3);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cal-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 4px;
}

.cal-countdown {
  display: none;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0 4px;
}

.cal-countdown:not(:empty) {
  display: flex;
}

.cal-countdown-num {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}

.cal-countdown-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink2);
}

.cal-note {
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink3);
  margin-top: 8px;
}

/* Past */
.cal-item.past .cal-item__card {
  opacity: 0.55;
}
.cal-item.past .cal-badge {
  display: inline-flex;
  color: var(--ink3);
}
.cal-item.past .cal-date {
  text-decoration: line-through;
  text-decoration-color: rgba(17, 17, 17, 0.2);
}

/* Upcoming */
.cal-item.upcoming .cal-item__card {
  background: rgba(0, 0, 0, 0.035);
}

/* Active / next */
.cal-item.next .cal-item__card {
  background: var(--hero-dark);
  border-color: transparent;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.18);
  padding: 20px 18px 18px;
}
.cal-item.next .cal-badge {
  display: inline-flex;
  color: var(--accent);
}
.cal-item.next .cal-q {
  color: var(--accent);
}
.cal-item.next .cal-date {
  color: #fff;
}
.cal-item.next .cal-countdown-num {
  color: var(--accent);
}
.cal-item.next .cal-countdown-label {
  color: rgba(255, 255, 255, 0.78);
}
.cal-item.next .cal-note {
  color: rgba(255, 255, 255, 0.55);
}

/* Progress bar — bottom of block */
.cal-track {
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  margin-top: 40px;
  overflow: hidden;
}

.cal-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(198, 122, 56, 0.45), var(--accent));
  border-radius: inherit;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1024px) {
  .cal-timeline {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    gap: 0 8px;
  }
  .cal-col {
    border-left: none;
    padding: 0 8px;
    margin-bottom: 20px;
  }
  .cal-col:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
  .cal-col:nth-child(1) .cal-item,
  .cal-col:nth-child(2) .cal-item,
  .cal-col:nth-child(3) .cal-item,
  .cal-col:nth-child(4) .cal-item {
    margin-top: 0;
  }
  .cal-col:nth-child(2) .cal-item {
    margin-top: 48px;
  }
  .cal-col:nth-child(4) .cal-item {
    margin-top: 48px;
  }
}
@media (max-width: 640px) {
  .calendar-section .container {
    padding: 0 24px;
  }
  .cal-intro {
    margin-bottom: 36px;
  }
  .cal-timeline {
    grid-template-columns: 1fr;
  }
  .cal-col {
    border-right: none !important;
    padding: 0;
  }
  .cal-col:nth-child(2) .cal-item,
  .cal-col:nth-child(4) .cal-item {
    margin-top: 0;
  }
}
/* ─── REVIEWS / TESTIMONIALS (dark panel) ─── */
.reviews-section {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(48px, 6vw, 72px) 0;
  background: #000;
}
.reviews-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.reviews-panel {
  position: relative;
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3.5vw, 44px) clamp(32px, 3.5vw, 40px);
  border-radius: 40px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.reviews-pill {
  display: none;
}

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

#reviews .reviews-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

#reviews .testimonials-slider {
  position: relative;
}

#reviews .testimonials-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#reviews .testimonials-viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

#reviews .testimonials-viewport:active {
  cursor: grabbing;
}

#reviews .testimonials-grid.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

#reviews .testimonials-track .testi-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  box-sizing: border-box;
}

#reviews .testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

#reviews .testimonials-arrow:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

#reviews .testimonials-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

#reviews .testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  min-height: 12px;
}

#reviews .testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.2s ease;
}

#reviews .testimonials-dot.is-active {
  width: 28px;
  background: #fff;
}

#reviews .testimonials-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.32);
}

#reviews .testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px 28px 24px;
  border-radius: 28px;
  background: #1a1a1c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}

#reviews .testi-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

#reviews .testi-brand {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: lowercase;
}

#reviews .testi-photo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-title);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  overflow: hidden;
}

#reviews .testi-text {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 28px;
  flex: 1;
}

#reviews .testi-text::before {
  content: "“";
  margin-right: 2px;
}

#reviews .testi-card__foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

#reviews .testi-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#reviews .testi-role {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.42);
}

#reviews .testi-name {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

#reviews .testi-quote-mark {
  position: absolute;
  right: 18px;
  bottom: 8px;
  font-family: var(--font-body);
  font-size: clamp(72px, 8vw, 96px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  user-select: none;
}

#reviews .testi-card--featured {
  background: #222224;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
}

#reviews .testi-card--featured .testi-brand,
#reviews .testi-card--featured .testi-name {
  color: #fff;
}

#reviews .testi-card--featured .testi-text {
  color: rgba(255, 255, 255, 0.78);
}

#reviews .testi-card--featured .testi-role {
  color: rgba(255, 255, 255, 0.48);
}

#reviews .testi-card--featured .testi-photo {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

#reviews .testi-card--featured .testi-quote-mark {
  color: rgba(255, 255, 255, 0.07);
}

@media (max-width: 1023px) {
  #reviews .testimonials-track .testi-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media (max-width: 767px) {
  .reviews-section {
    padding: 40px 0 48px;
  }
  .reviews-section .container {
    padding: 0 24px;
  }
  .reviews-panel {
    border-radius: 28px;
    padding: 28px 20px 24px;
  }
  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }
  #reviews .testimonials-track .testi-card {
    flex: 0 0 100%;
  }
}
/* ─── ABOUT section ─── */
#about.about-section {
  overflow-x: clip;
  max-width: 100%;
  margin: 0;
  padding: 80px;
}
#about.about-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

#about .about-heading {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 20px;
}

.about-subheading {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink3);
  font-weight: 500;
}

.about-cards-wrap {
  position: relative;
  isolation: isolate;
}

.about-planet-wrap {
  position: absolute;
  left: -72%;
  top: 172%;
  z-index: 0;
  width: clamp(420px, 125vw, 1860px);
  transform: translate(-2%, -52%);
  pointer-events: none;
  user-select: none;
}

.about-planet {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.38;
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.45) 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.45) 78%, transparent 100%);
}

.about-planet-wrap::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  height: 42%;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.65) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.65) 45%, transparent 100%);
}

#about .for-whom-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

#about .for-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 32px 28px 28px;
  border-radius: 28px;
  background: #f3f3f3;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.0784313725);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
#about .for-card::before {
  display: none;
}
#about .for-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.for-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  margin-bottom: 24px;
}

.for-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

#about .for-card__title {
  font-family: var(--font-title);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 90%;
}

#about .for-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#about .for-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  border: none;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink2);
}

#about .for-check-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
}

#about .for-card--featured {
  background: linear-gradient(165deg, #c9844a 0%, #9a5a30 42%, #5c3018 100%);
  border: none;
  box-shadow: 0 20px 56px rgba(92, 48, 24, 0.24);
}
#about .for-card--featured:hover {
  box-shadow: 0 28px 64px rgba(92, 48, 24, 0.3);
}
#about .for-card--featured .for-card__badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}
#about .for-card--featured .for-card__badge-dot {
  background: #fff;
}
#about .for-card--featured .for-card__title {
  color: #fff;
}
#about .for-card--featured .for-check-item {
  color: rgba(255, 255, 255, 0.78);
}
#about .for-card--featured .for-check-mark {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@media (max-width: 1024px) {
  .about-intro {
    margin-bottom: 36px;
  }
  .about-planet-wrap {
    width: min(520px, 92vw);
    transform: translate(-50%, -48%);
  }
  .about-planet {
    opacity: 0.32;
  }
  #about .for-whom-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  #about.about-section .container {
    padding: 0 24px;
  }
  .about-intro {
    margin-bottom: 28px;
  }
  .about-planet-wrap {
    width: min(420px, 110vw);
  }
}
/* ─── AUTHOR / FOUNDER (dark panel mockup) ─── */
#author.author-section {
  max-width: none;
  width: 100%;
  margin: 80px 0;
}
#author.author-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.author-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 55%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px);
  isolation: isolate;
}

.author-watermark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 35%, #000 68%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 35%, #000 68%, #000 100%);
}

.author-watermark__track {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  transform: translateY(28%);
}

.author-watermark__word {
  flex: 1 1 50%;
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(72px, 14vw, 220px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0.03) 58%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.author-panel__inner {
  position: relative;
  z-index: 1;
}

.author-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}
.author-pill::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

#author .author-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 32px;
}
#author .author-title-row h2 {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}
#author .author-title-row em {
  font-style: italic;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

#author .author-stats {
  display: flex;
  gap: clamp(28px, 4vw, 48px);
  flex-shrink: 0;
}

#author .author-stat__val {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}

#author .author-stat__lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.35;
}

#author .author-body {
  margin-bottom: 36px;
  max-width: 920px;
}

#author .author-name {
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: #fff;
  margin: 0 0 16px;
}

#author .author-body p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 18px;
}
#author .author-body p:last-child {
  margin-bottom: 0;
}

#author .author-highlight {
  color: #fff;
  font-weight: 600;
}

#author .author-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

#author .author-block {
  min-height: 100%;
}

#author .author-block__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

#author .author-block__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#author .author-block__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

#author .author-dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#author .author-dash-list li {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

#author .author-block--contact {
  padding: 28px 26px 26px;
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

#author .author-block--contact .author-dash-list {
  margin-bottom: 28px;
}

#author .author-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

#author .author-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

#author .author-btn--primary {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
}
#author .author-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.12);
}

#author .author-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
#author .author-btn--outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  #author .author-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  #author .author-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  #author.author-section .container {
    padding: 0 24px;
  }
  #author .author-block__actions {
    flex-direction: column;
    align-items: stretch;
  }
  #author .author-btn {
    justify-content: center;
  }
  .author-watermark__word {
    font-size: clamp(56px, 22vw, 120px);
  }
}
/* ─── SECURITY (light cards grid) ─── */
#security.security-section {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(64px, 8vw, 96px) 0;
  background: #eaeaea;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
#security.security-section .container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.security-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, #000 38%, rgba(0, 0, 0, 0.25) 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 38%, rgba(0, 0, 0, 0.25) 72%, transparent 100%);
}

.security-intro {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 52px);
}

#security .security-title {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
}

#security .security-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(15, 15, 15, 0.55);
}

#security .security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#security .sec-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#security .sec-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eaeaea;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#security .sec-icon svg {
  stroke: currentColor;
}

#security .sec-card__body {
  min-width: 0;
}

#security .sec-card__title {
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

#security .sec-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(15, 15, 15, 0.55);
}

@media (max-width: 768px) {
  #security.security-section {
    border-top-left-radius: 24%;
    border-bottom-right-radius: 24%;
  }
  #security .security-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  #security.security-section .container {
    padding: 0 24px;
  }
  #security .sec-card {
    padding: 22px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #security .sec-card {
    transition: none;
  }
}
/* ─── EXTRAS / one-off services (table list) ─── */
.extras-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(64px, 8vw, 96px) 0;
  overflow: hidden;
  isolation: isolate;
}
.extras-section .container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.extras-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.14) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.35) 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.35) 100%);
}

.extras-intro {
  max-width: 720px;
  margin-bottom: 40px;
}

.extras-section .extras-title {
  font-family: var(--font-title);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 16px;
}
.extras-section .extras-title em {
  font-style: italic;
  color: var(--accent);
}

.extras-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink2);
}

.extras-table {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.extras-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 32px;
  align-items: stretch;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
}
.extras-row:last-child {
  border-bottom: none;
}

.extras-row__index {
  display: flex;
  align-items: center;
  padding: 28px 0 28px 4px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink3);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.extras-row__body {
  padding: 15px 8px 15px 0;
  min-width: 0;
}

.extras-row__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 8px;
}

.extras-row__name {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(22px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  transition: color 0.25s ease;
}

.extras-row__price {
  flex-shrink: 0;
  font-family: var(--font-title);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
}

.extras-row__currency {
  font-size: 0.75em;
  font-weight: 600;
  margin-right: 2px;
}

.extras-row__desc {
  margin: 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink2);
  transition: color 0.25s ease;
}

.extras-section .extras-help {
  margin-top: 32px;
  padding-left: 88px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.extras-section .extras-help__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink2);
}
.extras-section .extras-help__text strong {
  color: var(--ink);
  font-weight: 700;
}

.extras-section .extras-help__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}
.extras-section .extras-help__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}

@media (max-width: 768px) {
  .extras-row {
    grid-template-columns: 64px 1fr;
    gap: 0 16px;
  }
  .extras-row__index {
    padding: 20px 0;
    font-size: 12px;
  }
  .extras-row__body {
    padding: 18px 0;
  }
  .extras-row__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
@media (max-width: 640px) {
  .extras-section .container {
    padding: 0 24px;
  }
  .extras-intro {
    margin-bottom: 28px;
  }
  .extras-section .extras-help {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ─── FAQ (accordion mockup) ─── */
#faq.faq-section {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(64px, 8vw, 96px) 0;
  background: #000;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
#faq.faq-section .container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.faq-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000 0%, #000 38%, rgba(0, 0, 0, 0.25) 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 38%, rgba(0, 0, 0, 0.25) 72%, transparent 100%);
}

.faq-intro {
  margin-bottom: 48px;
}

#faq .faq-title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
}

.faq-lead {
  margin: 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

#faq .faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

#faq .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#faq .faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-title);
  transition: color 0.25s ease;
}

#faq .faq-q__index {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.25s ease;
}

#faq .faq-q__label {
  font-size: clamp(18px, 2.8vw, 20px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.25s ease;
}

#faq .faq-q__toggle {
  justify-self: end;
  width: 32px;
  height: 32px;
  position: relative;
  color: rgba(255, 255, 255, 0.55);
  transition: transform 0.3s ease, color 0.25s ease;
}
#faq .faq-q__toggle::before, #faq .faq-q__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
#faq .faq-q__toggle::before {
  width: 18px;
  height: 1.5px;
}
#faq .faq-q__toggle::after {
  width: 1.5px;
  height: 18px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#faq .faq-item.open .faq-q__index,
#faq .faq-item.open .faq-q__label {
  color: #fff;
}

#faq .faq-item.open .faq-q__toggle {
  color: #fff;
}

#faq .faq-item.open .faq-q__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

#faq .faq-q:hover .faq-q__label {
  color: rgba(255, 255, 255, 0.72);
}

#faq .faq-item.open .faq-q:hover .faq-q__label {
  color: #fff;
}

#faq .faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0 0 96px;
  margin: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
#faq .faq-a p {
  margin: 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

#faq .faq-item.open .faq-a {
  max-height: 320px;
  opacity: 1;
  padding: 0 0 32px 96px;
}

@media (max-width: 768px) {
  #faq.faq-section .container {
    padding: 0 24px;
  }
  #faq .faq-q {
    grid-template-columns: 56px minmax(0, 1fr) 36px;
    gap: 16px;
    padding: 22px 0;
  }
  #faq .faq-a,
  #faq .faq-item.open .faq-a {
    padding-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  #faq .faq-a,
  #faq .faq-q__toggle::after {
    transition: none;
  }
}
/* ─── CONTACT / FINAL CTA (reference card) ─── */
#contact.contact-section {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(64px, 8vw, 96px) 0 clamp(56px, 7vw, 80px);
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border: none;
}
#contact.contact-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
#contact.contact-section a {
  color: inherit;
  text-decoration: none;
}

.contact-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  min-height: clamp(300px, 36vw, 380px);
  padding: clamp(36px, 4vw, 52px);
  border-radius: 40px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.contact-panel__globe {
  position: absolute;
  top: -8%;
  right: -6%;
  width: min(52%, 440px);
  aspect-ratio: 1;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.14);
}

.contact-panel__top {
  position: relative;
  z-index: 1;
  max-width: min(100%, 480px);
}

.contact-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
}

.contact-brand__mark {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  flex-shrink: 0;
}

.contact-brand__name {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.contact-brand__name span {
  color: #c6dc59;
}

.contact-brand__text {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
}

.contact-panel__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-panel__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

.contact-panel__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: 360px;
}

.contact-panel__nav a {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-panel__nav a:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
  .contact-panel {
    border-radius: 28px;
    min-height: 0;
    gap: 36px;
  }
  .contact-panel__globe {
    width: 70%;
    right: -18%;
    top: -4%;
    opacity: 0.7;
  }
  .contact-panel__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-panel__nav {
    justify-content: flex-start;
    max-width: none;
  }
}
@media (max-width: 640px) {
  #contact.contact-section .container {
    padding: 0 24px;
  }
  .contact-panel {
    padding: 28px 24px;
  }
  .contact-brand__text {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-panel__nav a {
    transition: none;
  }
}
/* ─── CALCULATOR (dark section + light panel) ─── */
#calculator.calc-section {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(64px, 8vw, 96px) 0;
  background: #000;
  color: var(--ink);
}
#calculator.calc-section .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.calc-panel {
  position: relative;
  padding: clamp(36px, 4vw, 52px) clamp(28px, 3.5vw, 44px) clamp(32px, 3.5vw, 40px);
  border-radius: 40px;
  background-color: #f3f3f3;
  background-image: linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  border: none;
  overflow: hidden;
  color: var(--ink);
}

.calc-head {
  margin-bottom: 32px;
  max-width: 720px;
}

#calculator .calc-title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
}

#calculator .calc-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink2);
}
#calculator .calc-lead strong {
  color: var(--ink);
  font-weight: 600;
}

#calculator .calc-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(28px, 4vw, 40px);
  align-items: stretch;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}
#calculator .calc-card::after {
  display: none;
}

#calculator .calc-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#calculator .calc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

#calculator .calc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
}

#calculator .calc-period {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: none;
  background: none;
}

#calculator .calc-period-btn {
  border: none;
  background: transparent;
  color: var(--ink3);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 0;
  margin-left: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}
#calculator .calc-period-btn:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}
#calculator .calc-period-btn + #calculator .calc-period-btn {
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
#calculator .calc-period-btn:hover {
  color: var(--ink2);
}
#calculator .calc-period-btn.active {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.28);
  text-underline-offset: 4px;
}

#calculator .calc-input-wrap {
  position: relative;
  background: #fafafa;
  border: none;
  border-radius: 10px;
  padding: 16px 18px 14px;
  transition: background 0.2s ease;
}
#calculator .calc-input-wrap:focus-within {
  background: #f5f5f5;
}

#calculator .calc-input {
  width: 100%;
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  background: transparent;
  border: none;
  padding: 0 56px 0 0;
  outline: none;
  -moz-appearance: textfield;
  font-variant-numeric: tabular-nums;
}

#calculator .calc-input::-webkit-outer-spin-button,
#calculator .calc-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#calculator .calc-input::placeholder {
  color: var(--ink3);
  opacity: 0.5;
}

#calculator .calc-suffix {
  position: absolute;
  right: 18px;
  bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink3);
  pointer-events: none;
}

#calculator .calc-limit {
  background: #fafafa;
  border: none;
  border-radius: 10px;
  padding: 16px 18px;
  transition: background 0.25s ease;
}
#calculator .calc-limit--warn {
  background: rgba(255, 193, 7, 0.12);
}
#calculator .calc-limit--warn .calc-limit-pct {
  color: #c99200;
}
#calculator .calc-limit--warn .calc-limit-fill {
  background: linear-gradient(90deg, rgba(255, 193, 7, 0.45), #ffc107);
}
#calculator .calc-limit--over {
  background: rgba(255, 107, 107, 0.1);
}
#calculator .calc-limit--over .calc-limit-pct {
  color: #e05555;
}
#calculator .calc-limit--over .calc-limit-fill {
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.45), #ff6b6b);
}

#calculator .calc-limit-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
}

#calculator .calc-limit-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#calculator .calc-limit-pct {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

#calculator .calc-limit-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

#calculator .calc-limit-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.35), #111);
  border-radius: inherit;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

#calculator .calc-limit-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--ink3);
  margin-bottom: 8px;
}
#calculator .calc-limit-meta strong {
  color: var(--ink2);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

#calculator .calc-limit-status {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.45;
  margin: 0;
}

#calculator .calc-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.55;
}

#calculator .calc-hint-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
}

#calculator .calc-hint-text strong {
  color: var(--ink2);
  font-weight: 600;
}

#calculator .calc-right {
  background: #f5f5f5;
  border: none;
  border-radius: 10px;
  padding: clamp(24px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ink);
}

#calculator .calc-limit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

#calculator .calc-hints {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#calculator .calc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: var(--ink2);
}

#calculator .calc-row-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

#calculator .calc-row-val {
  font-size: 18px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

#calculator .calc-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 4px;
}

#calculator .calc-net {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#calculator .calc-net-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

#calculator .calc-net-result {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 8px;
  padding-top: 12px;
}

#calculator .calc-row-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

#calculator .calc-row-sub {
  font-size: 12px;
  color: var(--ink3);
}

#calculator .calc-row-val,
#calculator .calc-total-val {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

#calculator .calc-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 6px 0;
}

#calculator .calc-total-lbl,
#calculator .calc-net-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
}

#calculator .calc-total-val {
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

#calculator .calc-net {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#calculator .calc-net-row {
  font-size: 13px;
  color: var(--ink2);
}

#calculator .calc-net-val {
  font-weight: 600;
  color: var(--ink);
}

#calculator .calc-net-result {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

#calculator .calc-net-result-val {
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

#calculator .calc-cta-wrap {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

#calculator .calc-cta-text {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5;
}
#calculator .calc-cta-text strong {
  color: var(--ink);
  font-weight: 600;
}

#calculator .calc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
#calculator .calc-cta-btn:hover {
  background: #2a2a2a;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  #calculator .calc-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  #calculator.calc-section .container {
    padding: 0 24px;
  }
  .calc-panel {
    border-radius: 28px;
    padding: 28px 24px;
  }
  #calculator .calc-cta-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  #calculator .calc-cta-btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  #calculator .calc-cta-btn,
  #calculator .calc-limit-fill,
  #calculator .calc-period-btn {
    transition: none;
  }
}

/*# sourceMappingURL=main.css.map */
