@charset "UTF-8";
:root {
  /* Hero / header / site-wide */
  --hero-bg: #8c8c8c;
  --hero-blue: #c6dc59;
  --hero-blue-light: #d4e87a;
  --hero-dark: #1a1a1a;
  --hero-white: #ffffff;
  --container: 1280px;
  --header-h: 76px;
  /* Unified page tokens (same theme as hero) */
  --bg: var(--hero-bg);
  --bg2: #7a7a7a;
  --bg3: #6e6e6e;
  --ink: var(--hero-white);
  --ink2: rgba(255, 255, 255, 0.72);
  --ink3: rgba(255, 255, 255, 0.5);
  --accent: var(--hero-blue);
  --accent2: rgba(198, 220, 89, 0.2);
  --green: var(--hero-blue);
  --green-bg: rgba(198, 220, 89, 0.15);
  --border: rgba(255, 255, 255, 0.16);
  --card-bg: rgba(26, 26, 26, 0.65);
  --card-bg-solid: var(--hero-dark);
  --radius: 14px;
  --radius-lg: 12px;
  --font: 'Rubik', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: #000000;
  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%;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: white;
}

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

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

.logo span {
  color: #c6dc59;
}

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

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.78);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

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

.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);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.78);
  background: var(--accent);
}

.header-cta:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

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

.header-cta--outline:hover {
  background: rgba(198, 220, 89, 0.12);
}

.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: var(--hero-white);
  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(--hero-white);
  min-height: 100vh;
  padding-top: var(--header-h);
  margin-bottom: 0;
  overflow: hidden;
  background: radial-gradient(circle, rgba(153, 153, 153, 0.22) 0%, rgb(0, 0, 0) 100%);
}

.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;
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  position: relative;
}

.hero-left {
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
}

.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 {
  font-family: var(--font);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.06;
  color: var(--hero-white);
  margin-bottom: 22px;
}

.hero-title .accent {
  color: var(--hero-blue);
  font-style: italic;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 36px;
}

.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: 10px;
  background: var(--hero-dark);
  color: var(--hero-white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-primary svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--hero-blue);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--hero-blue);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: rgba(198, 220, 89, 0.15);
  transform: translateY(-1px);
}

.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 {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 0 0;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: min(88vh, 820px);
  margin: 0 auto;
}

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

.hero-person {
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  height: 120%;
  width: auto;
  max-width: 200%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 4;
}

.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-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .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;
    padding: 0 24px 48px;
    min-height: auto;
  }
  .hero-left {
    padding: 32px 0 24px;
    text-align: left;
  }
  .hero-right {
    min-height: 480px;
    padding-bottom: 24px;
  }
  .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: 36px;
  }
  .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-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(255, 255, 255, 0.1);
  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(198, 220, 89, 0.35);
  background: rgba(13, 13, 13, 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);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(13, 13, 13, 0.92);
  border: 1px solid rgba(198, 220, 89, 0.22);
  padding: 6px 10px;
  border-radius: 8px;
  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);
  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-title, .site-main .extras-title,
.site-main .microsteps-title, .site-main .faq-q {
  font-family: var(--font);
}
.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: #99aa43;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(136, 150, 67, 0.61);
  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(34, 158, 217, 0.4);
}

@keyframes fiin {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* STATS — dark editorial */
.stats-wrap {
  background-color: white;
}

.stats-row {
  padding: 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
  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 rgba(255, 255, 255, 0.24);
  position: relative;
}

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

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

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

.stat-lbl {
  font-size: 12px;
  color: rgba(68, 68, 68, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font);
  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 rgba(255, 255, 255, 0.08);
  }
  .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);
  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 */
#about {
  --for-card-bg: #0d0d0d;
  --for-card-border: rgba(52, 51, 44, 0.55);
  --for-card-border-top: rgba(196, 192, 140, 0.72);
  --for-card-divider: rgba(112, 108, 82, 0.22);
  background-image: url(/assets/images/bg-foplly.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  margin: 0;
}
#about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 10px;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  overflow: visible;
}

.for-card {
  position: relative;
  isolation: isolate;
  background: var(--for-card-bg);
  border: none;
  border-radius: 24px;
  padding: 30px;
  box-shadow: none;
}
.for-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(ellipse 72% 140% at 50% 0%, var(--for-card-border-top) 0%, rgba(130, 126, 92, 0.42) 22%, rgba(70, 68, 58, 0.38) 48%, var(--for-card-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;
}

.for-card__head {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.for-card__icon,
.author-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(138, 135, 98, 0.45);
  border-radius: 10px;
  color: var(--accent);
  background: transparent;
}

.for-card__titles {
  min-width: 0;
  padding-top: 2px;
}

.for-card .card-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}

.for-card h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font);
  line-height: 1.2;
}

.for-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.for-check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--for-card-divider);
}

.for-check-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.for-check-mark {
  flex-shrink: 0;
  width: 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* block decorations */
.block-decor {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  height: auto;
  display: block;
}

.card-label {
  font-family: var(--font);
  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 */
#author {
  --author-card-bg: #0d0d0d;
  --author-card-border-top: rgba(198, 220, 89, 0.55);
  --author-card-border: rgba(52, 51, 44, 0.55);
  max-width: 100%;
  margin: 0;
}
#author .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 10px;
}

#author h2 em {
  font-style: italic;
  color: var(--accent);
}

.author-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 36px;
}
.author-title-row h2 {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.author-stats {
  display: flex;
  gap: clamp(32px, 5vw, 56px);
  flex-shrink: 0;
}

.author-stat__val {
  font-family: var(--font);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}

.author-stat__lbl {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.35;
}

.author-body {
  margin-bottom: 32px;
}
.author-body .author-name {
  font-weight: 700;
  font-size: 20px;
}
.author-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink2);
  margin-bottom: 20px;
}
.author-body p:last-child {
  margin-bottom: 0;
}
.author-body em {
  color: var(--ink);
  font-style: italic;
}
.author-body strong {
  color: var(--ink);
  font-weight: 600;
}

.gray {
  font-size: 14px;
  font-weight: 500;
  color: gray;
}

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

.author-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.author-card {
  position: relative;
  isolation: isolate;
  background: var(--author-card-bg);
  border: none;
  border-radius: 16px;
  padding: 32px 36px;
  min-height: 100%;
}
.author-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(ellipse 72% 140% at 50% 0%, var(--author-card-border-top) 0%, rgba(198, 220, 89, 0.22) 22%, rgba(70, 68, 58, 0.38) 48%, var(--author-card-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;
}

.author-card--contact {
  display: flex;
  flex-direction: column;
}

.author-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.author-card__label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0;
}

.author-dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.author-dash-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink2);
}

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

.author-card__btn {
  white-space: nowrap;
}

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

@media (max-width: 768px) {
  .author-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .author-stats {
    width: 100%;
    text-align: left;
  }
  .author-cards {
    grid-template-columns: 1fr;
  }
}
.btn-tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #9aaa50;
  color: #fff;
  padding: 13px 24px;
  border-radius: 100px;
  font-family: var(--font);
  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 */
#how {
  --step-card-bg: #0d0d0d;
  --step-card-border-top: rgba(198, 220, 89, 0.55);
  --step-card-border: rgba(52, 51, 44, 0.55);
  margin: 0;
  max-width: 100%;
}
#how .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 10px 80px 10px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  background: var(--step-card-bg);
  border: none;
  border-radius: 16px;
  padding: 32px 28px 28px;
  overflow: hidden;
}
.step-card::before {
  content: attr(data-num);
  position: absolute;
  right: 12px;
  bottom: 0;
  font-family: var(--font);
  font-size: clamp(100px, 11vw, 132px);
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 0.88;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.065) 38%, rgba(255, 255, 255, 0.02) 58%, rgba(255, 255, 255, 0) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(ellipse 72% 140% at 50% 0%, var(--step-card-border-top) 0%, rgba(198, 220, 89, 0.22) 22%, rgba(70, 68, 58, 0.38) 48%, var(--step-card-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;
}
.step-card h3 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.step-card p {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-tag {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  background: transparent;
  color: var(--accent);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.step-note {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--ink3);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

/* MICROSTEPS */
#pricing .microsteps-wrap {
  position: relative;
  isolation: isolate;
  background: var(--plan-card-bg);
  border: none;
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 40px;
  overflow: visible;
}
#pricing .microsteps-wrap > * {
  position: relative;
  z-index: 1;
}

.microsteps-title {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.mss {
  display: flex;
}

.ms {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.ms:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 1px;
  background: var(--border);
}

.ms-n {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
  font-family: var(--font);
}

.ms-t {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.5;
  padding: 0 6px;
}

.ms-t strong {
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* HELP STRIP */
.help-strip {
  background: var(--accent2);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.help-strip p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.5;
}

.btn-ask {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--hero-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

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

/* CALENDAR */
.calendar-strip {
  --cal-card-bg: #0d0d0d;
  --cal-card-border-top: rgba(198, 220, 89, 0.55);
  --cal-card-border: rgba(52, 51, 44, 0.55);
  position: relative;
  isolation: isolate;
  background: var(--cal-card-bg);
  border: none;
  border-radius: 16px;
  padding: 28px 32px 32px;
  margin-bottom: 80px;
}
.calendar-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(ellipse 72% 140% at 50% 0%, var(--cal-card-border-top) 0%, rgba(198, 220, 89, 0.22) 22%, rgba(70, 68, 58, 0.38) 48%, var(--cal-card-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;
}

.cal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.cal-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(198, 220, 89, 0.25);
  background: rgba(198, 220, 89, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cal-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0;
  font-family: var(--font);
  line-height: 1.3;
}

.cal-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 20px;
  overflow: hidden;
}

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

.cal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cal-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px 16px 14px;
  transition: transform 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);
  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-item.past {
  opacity: 0.45;
}
.cal-item.past .cal-badge {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.35);
}
.cal-item.past .cal-date {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.18);
}

.cal-item.next {
  background: rgba(198, 220, 89, 0.08);
  border-color: rgba(198, 220, 89, 0.42);
  box-shadow: 0 0 0 1px rgba(198, 220, 89, 0.1), 0 10px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}
.cal-item.next .cal-badge {
  display: inline-flex;
  color: var(--accent);
}
.cal-item.next .cal-q {
  color: var(--accent);
}
.cal-item.next:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(198, 220, 89, 0.18), 0 14px 32px rgba(0, 0, 0, 0.32);
}

.cal-item.upcoming {
  opacity: 0.68;
}
.cal-item.upcoming:hover {
  opacity: 0.88;
  border-color: rgba(255, 255, 255, 0.14);
}

.cal-q {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink3);
  margin-bottom: 6px;
  font-family: var(--font);
  transition: color 0.25s ease;
}

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

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

.cal-item.next .cal-countdown {
  display: flex;
}

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

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

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

/* PRICING */
#pricing {
  --plan-card-bg: #0d0d0d;
  --plan-card-border-top: rgba(198, 220, 89, 0.55);
  --plan-card-border: rgba(52, 51, 44, 0.55);
  margin: 0;
  max-width: 100%;
}
#pricing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 10px;
}

.pricing-wrap {
  max-width: 1200px;
  margin: 0 auto 0;
  box-sizing: border-box;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
  padding-top: 18px;
  align-items: stretch;
  overflow: visible;
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  isolation: isolate;
  background: var(--plan-card-bg);
  border: none;
  border-radius: 16px;
  padding: 32px 28px 28px;
  overflow: visible;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(ellipse 72% 140% at 50% 0%, var(--plan-card-border-top) 0%, rgba(198, 220, 89, 0.22) 22%, rgba(70, 68, 58, 0.38) 48%, var(--plan-card-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;
}
.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.plan-card.featured {
  border: 1px solid var(--accent);
  --plan-card-border-top: rgba(198, 220, 89, 0.72);
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.plan-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .plan-card.featured {
    transform: none;
  }
  .plan-card.featured:hover {
    transform: translateY(-4px);
  }
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--hero-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--font);
  white-space: nowrap;
  z-index: 5;
}

.plan-name {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink3);
  margin-bottom: 16px;
  text-align: center;
}

.plan-card.featured .plan-name {
  color: rgba(255, 255, 255, 0.5);
}

.price-val {
  font-size: clamp(40px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
}

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

.price-currency {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
  font-family: var(--font);
}

.price-note {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 16px;
  text-align: center;
}

.plan-card.featured .price-note {
  color: rgba(255, 255, 255, 0.45);
}

.plan-for {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.55;
  margin-bottom: 20px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  text-align: center;
}

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

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

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

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  flex: 1;
  text-align: left;
}

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

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

.feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-card.featured .feat-check {
  color: var(--accent);
}

.plan-cta {
  align-self: center;
  margin-top: auto;
  flex-shrink: 0;
}

/* SECURITY */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sec-card {
  background: var(--card-bg-solid);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.sec-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(138, 135, 98, 0.45);
  border-radius: 10px;
  color: var(--accent);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sec-card h4 {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: var(--font);
}

.sec-card p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.5;
}

/* TESTIMONIALS */
#reviews {
  --testi-card-bg: #0d0d0d;
}

.testimonials-slider {
  position: relative;
}

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

.reviews-head-text h2 {
  margin-bottom: 0;
}

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

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

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

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

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

@media (max-width: 1023px) {
  .testimonials-track .testi-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
.testimonials-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink2);
  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;
}

.testimonials-arrow:hover:not(:disabled) {
  background: rgba(198, 220, 89, 0.1);
  border-color: rgba(198, 220, 89, 0.35);
  color: var(--accent);
  transform: translateY(-1px);
}

.testimonials-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

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

.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;
}

.testimonials-dot.is-active {
  width: 28px;
  background: var(--accent);
}

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

.testi-card {
  background: var(--testi-card-bg);
  border: none;
  border-radius: 16px;
  padding: 28px 28px 24px;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.testi-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  margin-bottom: 18px;
  opacity: 0.9;
}

.testi-text {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.65;
  font-style: normal;
  margin: 0 0 24px;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(198, 220, 89, 0.28);
  background: rgba(198, 220, 89, 0.06);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.3;
}

.testi-role {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 2px;
  line-height: 1.35;
}

/* FAQ */
#faq .section-sub {
  margin-bottom: 36px;
}

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

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

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  font-family: var(--font);
  gap: 24px;
  transition: color 0.2s;
  line-height: 1.35;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(198, 220, 89, 0.35);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.faq-icon-plus,
.faq-icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -7px 0 0 -7px;
  transition: opacity 0.28s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-plus {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.faq-icon-close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
}

.faq-item.open .faq-icon {
  border-color: rgba(198, 220, 89, 0.55);
  background: rgba(198, 220, 89, 0.08);
  box-shadow: 0 0 0 1px rgba(198, 220, 89, 0.12);
}

.faq-item.open .faq-icon-plus {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
}

.faq-item.open .faq-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.faq-a {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.7;
  max-width: 760px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  padding: 0 48px 0 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), padding 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  padding: 0 48px 26px 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq-icon-plus,
  .faq-icon-close,
  .faq-a,
  .faq-icon {
    transition: none;
  }
  .faq-item.open .faq-a {
    transform: none;
  }
}
@media (max-width: 768px) {
  .faq-q {
    font-size: 16px;
    padding: 22px 0;
    gap: 16px;
  }
  .faq-a {
    padding: 0;
  }
  .faq-item.open .faq-a {
    padding: 0 0 22px;
  }
}
/* CTA FINAL */
.cta-final {
  background: var(--hero-dark);
  background: linear-gradient(1deg, rgba(198, 220, 89, 0.21) 0%, rgba(0, 0, 0, 0.82) 100%);
  padding: 80px 60px;
  text-align: center;
}

.cta-final h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink3);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-links a {
  color: var(--ink3);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* 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(198, 220, 89, 0.55);
  --modal-border: rgba(52, 51, 44, 0.55);
  position: relative;
  isolation: isolate;
  background: #0d0d0d;
  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(198, 220, 89, 0.22) 22%, rgba(70, 68, 58, 0.38) 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 rgba(255, 255, 255, 0.08);
  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);
  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(198, 220, 89, 0.28);
  background: rgba(198, 220, 89, 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(198, 220, 89, 0.14);
  border-color: rgba(198, 220, 89, 0.45);
  transform: translateY(-1px);
}

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

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

.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: rgba(255, 255, 255, 0.08);
  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(198, 220, 89, 0.35), rgba(198, 220, 89, 0.2));
  border-bottom: 1px solid rgba(198, 220, 89, 0.4);
  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(--hero-dark);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font);
  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 */
.calc-section {
  max-width: 1200px;
  margin: 0 auto;
}

.calc-wrap {
  position: relative;
  overflow: visible;
}

.calc-head {
  margin-bottom: 36px;
}

.calc-card {
  background: #0d0d0d;
  border: none;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: stretch;
  position: relative;
  isolation: isolate;
}
.calc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(ellipse 72% 140% at 50% 0%, rgba(198, 220, 89, 0.55) 0%, rgba(198, 220, 89, 0.22) 22%, rgba(70, 68, 58, 0.38) 48%, rgba(52, 51, 44, 0.55) 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;
}

.calc-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
}

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

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

.calc-period {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-period-btn {
  border: none;
  background: transparent;
  color: var(--ink3);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.calc-period-btn.active {
  background: rgba(198, 220, 89, 0.14);
  color: var(--accent);
}

.calc-input-wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px 12px;
}

.calc-input {
  width: 100%;
  font-family: var(--font);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: var(--ink);
  background: transparent;
  border: none;
  padding: 0 60px 0 0;
  outline: none;
  -moz-appearance: textfield;
  font-variant-numeric: tabular-nums;
}

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

.calc-input::placeholder {
  color: var(--ink3);
  font-weight: 600;
  opacity: 0.45;
}

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

.calc-limit {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.25s ease;
}
.calc-limit--warn {
  border-color: rgba(255, 193, 7, 0.35);
}
.calc-limit--warn .calc-limit-pct,
.calc-limit--warn .calc-limit-fill {
  color: #ffc107;
}
.calc-limit--warn .calc-limit-fill {
  background: linear-gradient(90deg, rgba(255, 193, 7, 0.45), #ffc107);
}
.calc-limit--over {
  border-color: rgba(255, 107, 107, 0.4);
}
.calc-limit--over .calc-limit-pct {
  color: #ff6b6b;
}
.calc-limit--over .calc-limit-fill {
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.45), #ff6b6b);
}

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

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

.calc-limit-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(198, 220, 89, 0.08);
  border: 1px solid rgba(198, 220, 89, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

.calc-limit-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(198, 220, 89, 0.45), var(--accent));
  border-radius: inherit;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.calc-hints {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.calc-hint-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 6px;
  background: rgba(198, 220, 89, 0.08);
  border: 1px solid rgba(198, 220, 89, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.calc-right {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

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

.calc-row-name {
  font-family: var(--font);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 14px;
}

.calc-row-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.35;
}

.calc-row-val {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}

.calc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 6px 0;
}

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

.calc-total-lbl {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.calc-total-val {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

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

.calc-net {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-net-title {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.calc-net-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.calc-net-row--minus .calc-net-val {
  color: rgba(255, 255, 255, 0.72);
}

.calc-net-val {
  font-family: var(--font);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.calc-net-result {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.calc-net-result-lbl {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.calc-net-result-val {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.8px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

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

.calc-cta-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.calc-cta-text strong {
  color: #fff;
  font-weight: 600;
}

.calc-cta-btn {
  background: var(--accent);
  color: var(--hero-dark);
  padding: 11px 20px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}

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

@media (max-width: 900px) {
  .calc-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }
  .calc-wrap {
    padding: 36px 24px;
  }
  .calc-section {
    padding: 0 20px 60px;
  }
  .calc-input {
    font-size: 32px;
  }
  .calc-total-val {
    font-size: 28px;
  }
  .calc-net-result-val {
    font-size: 24px;
  }
}
/* EXTRA SERVICES */
/* EXTRAS */
.extras-section {
  max-width: 1200px;
  margin: 40px auto;
  --extra-card-bg: #0d0d0d;
  --extra-card-border-top: rgba(198, 220, 89, 0.55);
  --extra-card-border: rgba(52, 51, 44, 0.55);
}

.extras-title {
  font-family: var(--font);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 16px;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.extra-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--extra-card-bg);
  border: none;
  border-radius: 16px;
  padding: 28px 24px 24px;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.extra-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(ellipse 72% 140% at 50% 0%, var(--extra-card-border-top) 0%, rgba(198, 220, 89, 0.22) 22%, rgba(70, 68, 58, 0.38) 48%, var(--extra-card-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;
}
.extra-card > * {
  position: relative;
  z-index: 1;
}
.extra-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.extra-price-block {
  margin-bottom: 20px;
}

.extra-price {
  font-family: var(--font);
  font-size: clamp(36px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}

.extra-currency {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.extra-price-label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink3);
}

.extra-name {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1.3;
}

.extra-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.55;
  margin-bottom: 0;
  flex: 1;
}

@media (max-width: 900px) {
  .extras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .extras-section {
    padding: 0 20px 60px;
  }
}
@media (max-width: 520px) {
  .extras-grid {
    grid-template-columns: 1fr;
  }
}
/* 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;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 56px 20px 40px;
    min-height: auto;
  }
  .hero-visual {
    display: none;
  }
  section {
    padding: 56px 20px;
  }
  .for-whom-grid, .steps-grid, .security-grid {
    grid-template-columns: 1fr;
  }
  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }
  .testimonials-arrows {
    align-self: flex-end;
  }
  .testimonials-track .testi-card {
    flex: 0 0 100%;
    min-height: 220px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .calendar-strip {
    padding: 22px 20px 24px;
  }
  .cal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cal-item.next {
    transform: none;
  }
  .cal-countdown-num {
    font-size: 26px;
  }
  .pricing-wrap {
    padding: 36px 20px;
  }
  .cta-final {
    margin: 0 20px 60px;
    padding: 56px 24px;
  }
  footer {
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .mss {
    flex-direction: column;
    gap: 18px;
  }
  .ms::after {
    display: none;
  }
  .help-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-overlay {
    padding: 16px;
  }
  .modal-head {
    padding: 22px 20px 16px;
  }
  .modal-body {
    padding: 18px 20px 24px;
  }
}
.bg-gradient {
  background: radial-gradient(circle, rgb(37, 37, 37) 0%, rgb(13, 13, 13) 100%);
}

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