    :root {
      --bg: #05060a;
      --surface: rgba(18, 20, 32, 0.72);
      --border: rgba(255, 255, 255, 0.08);
      --text: #f4f5f7;
      --muted: #8b92a8;
      --accent: #6ee7b7;
      --accent-dim: rgba(110, 231, 183, 0.15);
      --violet: #a78bfa;
      --glow: 0 0 80px rgba(110, 231, 183, 0.12);
      --third-color: #6ee7b7;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .hero-atmos {
      pointer-events: none;
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 100vw;
      height: min(100vh, 920px);
      height: min(100dvh, 920px);
      z-index: 0;
      overflow: hidden;
    }

    .hero-atmos__img {
      position: absolute;
      inset: -2px;
      background-image: url("../zeongrow/image.png");
      background-size: cover;
      background-position: center 20%;
      background-repeat: no-repeat;
      filter: brightness(0.42) saturate(0.78) contrast(1.08);
      transform: scale(1.03);
    }

    .hero-atmos__dark {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        165deg,
        rgba(5, 6, 12, 0.88) 0%,
        rgba(5, 6, 12, 0.78) 28%,
        rgba(5, 6, 12, 0.55) 52%,
        rgba(5, 6, 12, 0.92) 82%,
        var(--bg) 100%
      );
    }

    .hero-atmos__accent {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 90% 60% at 75% 8%, rgba(110, 231, 183, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 70% 55% at 12% 45%, rgba(167, 139, 250, 0.12) 0%, transparent 48%),
        linear-gradient(180deg, rgba(110, 231, 183, 0.04) 0%, transparent 38%);
      mix-blend-mode: screen;
    }

    .hero-atmos__edge {
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.55);
    }

    .noise {
      pointer-events: none;
      position: fixed;
      inset: 0;
      opacity: 0.035;
      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");
    }

    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.45;
      z-index: 0;
    }

    .orb-1 {
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, #22d3a8 0%, transparent 70%);
      top: -120px;
      right: -80px;
    }

    .orb-2 {
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
      bottom: 10%;
      left: -100px;
    }

    .wrap {
      position: relative;
      z-index: 1;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 24px 80px;
    }

    .wrap > header,
    .wrap > main {
      position: relative;
      z-index: 1;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 0 48px;
    }

    .logo {
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--accent), #34d399 40%, var(--violet));
      box-shadow: var(--glow);
    }

    .logo-img {
      display: block;
      height: 32px;
      width: auto;
      object-fit: contain;
    }

    nav {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    nav a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.2s;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.2s;
    }

    .btn:active {
      transform: scale(0.98);
    }

    .btn-primary {
      background: linear-gradient(135deg, #34d399, #10b981);
      color: #04120c;
      box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
    }

    .btn-primary:hover {
      box-shadow: 0 12px 40px rgba(16, 185, 129, 0.45);
    }

    .btn-ghost {
      background: var(--surface);
      color: var(--text);
      border: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.15);
    }

    .hero {
      display: grid;
      gap: 48px;
      align-items: center;
      padding: 20px 0 72px;
    }

    @media (min-width: 900px) {
      .hero {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
      }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: var(--accent-dim);
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 20px;
      border: 1px solid rgba(110, 231, 183, 0.25);
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    h1 {
      font-size: clamp(2.25rem, 5vw, 3.35rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    h1 span {
      background: linear-gradient(90deg, var(--accent), #5eead4, var(--violet));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 32ch;
      margin-bottom: 32px;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 40px;
    }

    .trust {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      align-items: center;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .trust strong {
      color: var(--text);
      font-weight: 600;
    }

    .card-stack {
      position: relative;
      min-height: 240px;
    }

    .glass-card {
      position: absolute;
      background: linear-gradient(165deg, rgba(22, 24, 32, 0.95) 0%, rgba(14, 16, 24, 0.92) 100%);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 22px;
      backdrop-filter: blur(20px);
      padding: 24px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    }

    .card-main {
      inset: 0;
      z-index: 2;
    }

    .card-float {
      width: 88%;
      left: 6%;
      bottom: -12px;
      z-index: 1;
      opacity: 0.55;
      transform: scale(0.96);
    }

    .rate-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 8px;
    }

    .rate-label {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .rate-value {
      font-size: 1.75rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      display: inline-block;
      margin: 8px 0 18px;
      padding: 10px 18px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(214, 180, 118, 0.38) 0%, rgba(168, 132, 82, 0.2) 100%);
      border: 1px solid rgba(214, 180, 118, 0.28);
      color: #f8f6f0;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    }

    .rate-change {
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 600;
    }

    .row-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .row-actions .btn {
      width: 100%;
      padding: 14px;
    }

    section {
      padding: 56px 0;
    }

    section h2 {
      font-size: clamp(1.6rem, 3vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      text-align: center;
    }

    .section-sub {
      text-align: center;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 40px;
      font-size: 1rem;
    }

    .grid-3 {
      display: grid;
      gap: 20px;
    }

    @media (min-width: 720px) {
      .grid-3 {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .feature {
      padding: 28px;
      border-radius: 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: blur(12px);
      transition: border-color 0.2s, transform 0.2s;
    }

    .feature:hover {
      border-color: rgba(110, 231, 183, 0.25);
      transform: translateY(-2px);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      margin-bottom: 16px;
      background: linear-gradient(135deg, rgba(110, 231, 183, 0.2), rgba(167, 139, 250, 0.15));
    }

    .feature h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feature p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .reviews {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(110, 231, 183, 0.04) 0%, transparent 55%);
    }

    .reviews-grid {
      display: grid;
      gap: 20px;
    }

    @media (min-width: 720px) {
      .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .review-card {
      padding: 26px;
      border-radius: 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: blur(12px);
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: border-color 0.2s;
    }

    .review-card:hover {
      border-color: rgba(110, 231, 183, 0.22);
    }

    .review-stars {
      color: var(--accent);
      font-size: 0.95rem;
      letter-spacing: 0.12em;
    }

    .review-text {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.65;
      flex: 1;
    }

    .review-text::before {
      content: "“";
      color: var(--violet);
      font-size: 1.5rem;
      font-weight: 800;
      line-height: 0;
      margin-right: 4px;
      vertical-align: -0.15em;
    }

    .review-meta {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 14px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }

    .review-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid rgba(110, 231, 183, 0.22);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    }

    .review-meta-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }

    .review-name {
      font-weight: 700;
      font-size: 0.92rem;
    }

    .review-role {
      font-size: 0.82rem;
      color: var(--muted);
    }

    .offer-bar {
      margin-top: 48px;
      padding: 32px 36px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(110, 231, 183, 0.12), rgba(124, 58, 237, 0.1));
      border: 1px solid rgba(110, 231, 183, 0.2);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .offer-bar p {
      font-size: 1.05rem;
      font-weight: 600;
      max-width: 480px;
    }

    .offer-bar em {
      font-style: normal;
      color: var(--accent);
    }

    .calc-section {
      padding: 56px 0 8px;
    }

    .calc-section h2 {
      text-align: center;
    }

    .calc-layout {
      display: grid;
      gap: 36px;
      max-width: 1000px;
      margin: 0 auto;
      align-items: stretch;
    }

    @media (min-width: 880px) {
      .calc-layout {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
      }
    }

    .calc-inputs {
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .calc-field {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .calc-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .calc-value {
      font-size: clamp(1.35rem, 3vw, 1.65rem);
      font-weight: 800;
      color: var(--accent);
      letter-spacing: -0.02em;
    }

    .calc-range {
      display: flex;
      justify-content: space-between;
      font-size: 0.78rem;
      color: var(--muted);
      margin-top: 4px;
    }

    .calc-field input[type="range"] {
      width: 100%;
      height: 6px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      appearance: none;
      cursor: pointer;
    }

    .calc-field input[type="range"]::-webkit-slider-thumb {
      appearance: none;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), #34d399);
      box-shadow: 0 0 0 4px var(--accent-dim), 0 4px 14px rgba(16, 185, 129, 0.45);
      border: 2px solid rgba(5, 6, 10, 0.9);
    }

    .calc-field input[type="range"]::-moz-range-thumb {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), #34d399);
      box-shadow: 0 0 0 4px var(--accent-dim), 0 4px 14px rgba(16, 185, 129, 0.45);
      border: 2px solid rgba(5, 6, 10, 0.9);
    }

    .calc-field input[type="range"]::-moz-range-track {
      height: 6px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
    }

    .calc-result-card {
      border-radius: 22px;
      padding: 32px 28px;
      border: 1px solid var(--border);
      background:
        linear-gradient(145deg, rgba(110, 231, 183, 0.08) 0%, transparent 42%),
        linear-gradient(210deg, rgba(167, 139, 250, 0.06) 0%, transparent 50%),
        var(--surface);
      backdrop-filter: blur(16px);
      box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
      text-align: center;
    }

    .calc-result-label {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .calc-result-main {
      font-size: clamp(2rem, 5vw, 2.65rem);
      font-weight: 800;
      color: var(--accent);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .calc-result-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .calc-stat {
      background: rgba(5, 6, 12, 0.55);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .calc-stat-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .calc-stat-value {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
    }

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

    .calc-disclaimer {
      text-align: center;
      font-size: 0.78rem;
      color: var(--muted);
      max-width: 520px;
      margin: 20px auto 0;
      line-height: 1.5;
    }

    .calc-cta {
      display: flex;
      margin: 28px auto 0;
      max-width: 420px;
      width: 100%;
      border-radius: 999px;
      padding: 16px 28px;
      font-size: 0.95rem;
      justify-content: center;
      text-align: center;
    }

    .compare-section {
      padding: 56px 0;
    }

    .compare-wrap {
      max-width: 920px;
      margin: 0 auto;
      border-radius: 20px;
      border: 1px solid var(--border);
      overflow: hidden;
      background: var(--surface);
      backdrop-filter: blur(16px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.92rem;
    }

    .compare-table thead th {
      padding: 18px 16px;
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #04120c;
      background: linear-gradient(135deg, #34d399, #0d9488);
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .compare-table thead th:first-child {
      text-align: left;
      padding-left: 22px;
    }

    .compare-table thead th:nth-child(2),
    .compare-table thead th:nth-child(3) {
      text-align: center;
    }

    .compare-table tbody th,
    .compare-table tbody td {
      padding: 16px 14px;
      vertical-align: middle;
      border-bottom: 1px solid var(--border);
      color: var(--text);
      line-height: 1.45;
    }

    .compare-table tbody th[scope="row"] {
      text-align: left;
      padding-left: 22px;
      padding-right: 12px;
      font-weight: 600;
      font-size: inherit;
    }

    .compare-table tbody td {
      text-align: center;
      width: 120px;
    }

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

    .compare-table tbody tr:nth-child(odd) th,
    .compare-table tbody tr:nth-child(odd) td {
      background: rgba(110, 231, 183, 0.04);
    }

    .compare-table tbody tr:nth-child(even) th,
    .compare-table tbody tr:nth-child(even) td {
      background: rgba(167, 139, 250, 0.05);
    }

    .compare-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      font-size: 0.95rem;
      font-weight: 800;
      line-height: 1;
    }

    .compare-icon--yes {
      background: linear-gradient(135deg, #34d399, #10b981);
      color: #04120c;
      box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
    }

    .compare-icon--no {
      background: linear-gradient(135deg, #f87171, #dc2626);
      color: #fff;
      box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
    }

    @media (max-width: 640px) {
      .compare-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -8px;
        padding: 0 8px;
      }

      .compare-table {
        min-width: 520px;
      }

      .compare-table tbody th[scope="row"] {
        font-size: 0.85rem;
      }
    }

    .empower-section {
      padding: 48px 0 56px;
    }

    .empower-panel {
      margin-top: 8px;
      border-radius: 26px;
      padding: clamp(28px, 4vw, 48px);
      border: 1px solid var(--border);
      background:
        linear-gradient(152deg, rgba(110, 231, 183, 0.14) 0%, transparent 42%),
        linear-gradient(220deg, rgba(167, 139, 250, 0.1) 0%, transparent 48%),
        linear-gradient(160deg, rgba(18, 22, 38, 0.92) 0%, rgba(8, 9, 16, 0.96) 100%);
      backdrop-filter: blur(20px);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    }

    .empower-split {
      display: grid;
      gap: 40px;
      align-items: center;
    }

    @media (min-width: 900px) {
      .empower-split {
        grid-template-columns: 1fr minmax(260px, 0.95fr);
        gap: 48px;
      }
    }

    .empower-features {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px 32px;
    }

    @media (min-width: 520px) {
      .empower-features {
        grid-template-columns: 1fr 1fr;
      }
    }

    .empower-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .empower-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #0a0c12;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f4f5f7;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }

    .empower-icon svg {
      width: 22px;
      height: 22px;
    }

    .empower-text {
      font-size: 0.93rem;
      line-height: 1.6;
      color: var(--muted);
      font-weight: 500;
    }

    .empower-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 260px;
      padding: 12px;
    }

    .empower-visual::before,
    .empower-visual::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .empower-visual::before {
      width: min(200px, 55vw);
      height: min(200px, 55vw);
      border: 3px solid rgba(248, 113, 113, 0.28);
      border-right-color: transparent;
      border-bottom-color: transparent;
      transform: rotate(-35deg);
      right: 4%;
      top: 4%;
    }

    .empower-visual::after {
      width: min(160px, 45vw);
      height: min(160px, 45vw);
      border: 3px solid rgba(96, 165, 250, 0.3);
      border-left-color: transparent;
      border-top-color: transparent;
      transform: rotate(20deg);
      left: 2%;
      bottom: 8%;
    }

    .empower-img {
      position: relative;
      z-index: 1;
      max-width: min(100%, 380px);
      width: 100%;
      height: auto;
      transform: rotate(-7deg);
      filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.55));
    }

    @media (max-width: 899px) {
      .empower-split {
        grid-template-columns: 1fr;
      }

      .empower-visual {
        order: -1;
        min-height: 220px;
      }

      .empower-img {
        max-width: min(320px, 88vw);
        transform: rotate(-5deg);
      }
    }


    .logo-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .site-nav {
      display: none;
      align-items: center;
      gap: 22px;
    }

    .site-nav a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .site-nav a:hover,
    .site-nav a[aria-current="page"] {
      color: var(--accent);
    }

    @media (min-width: 960px) {
      .site-nav {
        display: flex;
      }
    }

    .subpage-intro {
      padding: 32px 0 48px;
      max-width: 720px;
    }

    .subpage-intro h1 {
      font-size: clamp(1.85rem, 4vw, 2.35rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 16px;
      text-align: left;
    }

    .subpage-intro .lead {
      max-width: none;
      margin-bottom: 0;
    }

    .subpage-card {
      padding: 28px 32px;
      border-radius: 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: blur(14px);
      margin-bottom: 40px;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    }

    .subpage-card h2 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 14px;
      text-align: left;
    }

    .subpage-card p,
    .subpage-card li {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.65;
    }

    .subpage-card ul {
      margin: 12px 0 0 1.1rem;
    }

    .subpage-card li + li {
      margin-top: 8px;
    }

    .owner-spotlight {
      display: grid;
      gap: 28px;
      align-items: center;
      padding: 32px 28px;
      border-radius: 22px;
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: blur(14px);
      margin-bottom: 40px;
      box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
    }

    @media (min-width: 720px) {
      .owner-spotlight {
        grid-template-columns: minmax(220px, 300px) 1fr;
        gap: 36px;
        padding: 36px 40px;
      }
    }

    .owner-photo {
      margin: 0;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(110, 231, 183, 0.2);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
      aspect-ratio: 4 / 5;
      max-height: 380px;
    }

    .owner-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .owner-body .owner-name {
      font-size: clamp(1.35rem, 3vw, 1.65rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
      color: var(--text);
    }

    .owner-body .owner-role {
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .owner-body p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .owner-body p:last-child {
      margin-bottom: 0;
    }

    .owner-facts {
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }

    .owner-facts li {
      display: grid;
      grid-template-columns: minmax(120px, 38%) 1fr;
      gap: 8px 16px;
      font-size: 0.88rem;
      line-height: 1.45;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      color: var(--muted);
    }

    .owner-facts li:last-child {
      border-bottom: none;
    }

    .owner-facts strong {
      color: var(--text);
      font-weight: 600;
    }

    @media (max-width: 520px) {
      .owner-facts li {
        grid-template-columns: 1fr;
      }
    }

    .plans-pricing {
      padding: 8px 0 40px;
    }

    .plans-pricing-title {
      text-align: center;
      font-size: clamp(1.45rem, 3.2vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
      color: var(--text);
    }

    .plans-pricing-lead {
      text-align: center;
      color: var(--muted);
      font-size: 0.95rem;
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.55;
    }

    .plans-grid {
      display: grid;
      gap: 22px;
      max-width: 1060px;
      margin: 0 auto;
    }

    @media (min-width: 900px) {
      .plans-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
        gap: 20px;
      }
    }

    .plan-card {
      display: flex;
      flex-direction: column;
      background: linear-gradient(165deg, rgba(22, 24, 32, 0.96) 0%, rgba(12, 14, 22, 0.94) 100%);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 22px;
      padding: 28px 22px 30px;
      box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
    }

    .plan-card--featured {
      border-color: rgba(110, 231, 183, 0.5);
      box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(110, 231, 183, 0.08);
    }

    .plan-card-name {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .plan-card-price-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px 12px;
      margin-bottom: 10px;
      min-height: 3.2rem;
    }

    .plan-card-price {
      font-size: clamp(1.6rem, 2.8vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
      line-height: 1.15;
    }

    .plan-card-price-box {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(214, 180, 118, 0.38) 0%, rgba(168, 132, 82, 0.2) 100%);
      border: 1px solid rgba(214, 180, 118, 0.28);
      color: #f8f6f0;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    }

    .plan-card-price-box--long {
      font-size: clamp(1.1rem, 2.1vw, 1.4rem);
      line-height: 1.25;
    }

    .plan-badge {
      font-size: 0.7rem;
      font-weight: 800;
      padding: 5px 10px;
      border-radius: 8px;
      background: var(--accent-dim);
      color: var(--accent);
      border: 1px solid rgba(110, 231, 183, 0.35);
      letter-spacing: 0.02em;
    }

    .plan-card-note {
      font-size: 0.87rem;
      color: var(--muted);
      margin-bottom: 22px;
      line-height: 1.45;
    }

    .plan-features {
      list-style: none;
      margin: 0;
      padding: 0;
      flex: 1 1 auto;
    }

    .plan-features li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 11px;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.45;
    }

    .plan-features li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px rgba(110, 231, 183, 0.45);
    }

    .plan-card .plan-cta {
      margin-top: 22px;
      width: 100%;
      justify-content: center;
      text-align: center;
      padding: 14px 20px;
      border-radius: 14px;
      font-weight: 700;
      text-decoration: none;
    }

    .plans-footnote {
      text-align: center;
      font-size: 0.82rem;
      color: var(--muted);
      max-width: 640px;
      margin: 28px auto 0;
      line-height: 1.55;
    }

    .legal-doc {
      padding: 24px 0 56px;
      max-width: 800px;
      margin: 0 auto;
    }

    .legal-doc h1 {
      font-size: clamp(1.75rem, 4vw, 2.25rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 12px;
      color: var(--text);
      text-align: left;
    }

    .legal-doc .legal-updated {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 32px;
    }

    .legal-doc section {
      margin-bottom: 32px;
    }

    .legal-doc h2 {
      font-size: 1.08rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 14px;
      text-align: left;
      letter-spacing: -0.01em;
    }

    .legal-doc p {
      font-size: 0.93rem;
      line-height: 1.7;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .legal-doc ul {
      margin: 0 0 14px 1.15rem;
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.65;
    }

    .legal-doc li + li {
      margin-top: 8px;
    }

    .hidden,
    .hide {
      display: none !important;
    }

    .clear_both {
      clear: both;
    }

    .contact-block {
      margin: 32px -24px 0;
      padding: 48px 24px 56px;
      border-radius: 24px;
      background-color: color-mix(in srgb, var(--third-color) 22%, #03040a);
      border: 1px solid var(--border);
    }

    @media (min-width: 900px) {
      .contact-block {
        margin-left: 0;
        margin-right: 0;
        padding: 56px 48px 64px;
      }
    }

    .contact-grid {
      display: grid;
      gap: 40px;
      align-items: start;
      max-width: 1040px;
      margin: 0 auto;
    }

    @media (min-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr minmax(320px, 400px);
        gap: 56px;
        align-items: center;
      }
    }

    .contact-copy h2 {
      font-size: clamp(1.5rem, 3vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      text-align: left;
    }

    .contact-copy p {
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.65;
      margin-bottom: 14px;
    }

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

    .contact-form-shell {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      backdrop-filter: blur(16px);
      padding: 28px 24px 32px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }

    .contact-form-shell .contact-form h3 {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text);
      margin: 0;
    }

    #contact .form {
      background: transparent;
      border: none;
      padding: 0;
      text-align: left;
      color: var(--text);
    }

    #contact #form .input_group {
      display: block;
      width: 100%;
      margin-bottom: 16px;
      box-sizing: border-box;
    }

    #contact #form .input_group.input_submit {
      margin-bottom: 0;
      margin-top: 4px;
    }

    /* Телефон: не задаём padding одной строкой — иначе перебивается отступ под флаг intl-tel-input */
    #contact .rf-form-input:not(.phone_input),
    #contact .form input[type="text"],
    #contact .form input[type="email"] {
      width: 100%;
      height: 48px;
      padding: 10px 16px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: rgba(5, 6, 12, 0.65);
      color: var(--text);
      font-family: inherit;
      font-size: 0.95rem;
    }

    #contact #form .iti__flag-container {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      padding: 0 0 0 10px;
      pointer-events: auto;
    }

    #contact #form .iti__selected-flag {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      padding: 0 8px 0 4px;
    }

    #contact #form .iti input#phone_input.rf-form-input,
    #contact #form .iti input.phone_input[type="tel"] {
      width: 100%;
      height: 48px;
      box-sizing: border-box;
      margin: 0;
      padding-top: 10px;
      padding-right: 16px;
      padding-bottom: 10px;
      padding-left: 58px;
      border: none;
      border-radius: 12px;
      background: transparent;
      color: var(--text);
      font-family: inherit;
      font-size: 0.95rem;
    }

    #contact #form .iti:focus-within input#phone_input.rf-form-input {
      outline: none;
    }

    #contact #form .iti:focus-within {
      border-color: rgba(110, 231, 183, 0.45);
      box-shadow: 0 0 0 3px var(--accent-dim);
    }

    #contact .rf-form-input::placeholder {
      color: var(--muted) !important;
    }

    #contact .rf-form-input:not(.phone_input):focus {
      outline: none;
      border-color: rgba(110, 231, 183, 0.45);
      box-shadow: 0 0 0 3px var(--accent-dim);
    }

    #contact .iti__country-name {
      color: var(--text);
    }

    #contact .iti__selected-dial-code {
      color: var(--muted);
    }

    #contact #form .iti {
      position: relative;
      display: block;
      width: 100%;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: rgba(5, 6, 12, 0.65);
    }

    #contact #form .iti--separate-dial-code {
      background: rgba(5, 6, 12, 0.65);
      border: 1px solid var(--border);
      border-radius: 12px;
    }

    #contact #form .iti--separate-dial-code:hover,
    #contact #form .iti--separate-dial-code:focus-within {
      border-color: rgba(110, 231, 183, 0.45);
    }

    #contact .form .btn-submit {
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, #34d399, #10b981);
      color: #04120c;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    #contact .form .btn-submit:hover {
      opacity: 1;
      filter: brightness(1.05);
    }

    #contact .form_error,
    #contact .form_success {
      background: rgba(30, 22, 40, 0.95);
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: 10px;
    }

    #contact .form-disclaimer {
      font-size: 0.78rem;
      color: var(--muted);
      line-height: 1.55;
      margin-top: 16px;
      text-align: center;
    }

    #contact .form-disclaimer a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    #contact .error-msg:not(.hide) {
      display: block;
      color: #fca5a5;
      font-size: 0.82rem;
      margin-top: 8px;
    }

    #contact .phone-error .rf-form-input {
      border-color: rgba(248, 113, 113, 0.6);
    }

    footer {
      padding-top: 48px;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--muted);
      font-size: 0.8rem;
    }

    .faq {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq details {
      border: 1px solid var(--border);
      border-radius: 14px;
      margin-bottom: 12px;
      background: var(--surface);
      backdrop-filter: blur(12px);
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .faq details[open] {
      border-color: rgba(110, 231, 183, 0.22);
    }

    .faq summary {
      cursor: pointer;
      padding: 18px 22px;
      padding-right: 48px;
      font-weight: 600;
      font-size: 0.98rem;
      list-style: none;
      position: relative;
      user-select: none;
    }

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

    .faq summary::after {
      content: "";
      position: absolute;
      right: 22px;
      top: 50%;
      width: 10px;
      height: 10px;
      border-right: 2px solid var(--muted);
      border-bottom: 2px solid var(--muted);
      transform: translateY(-60%) rotate(45deg);
      transition: transform 0.2s;
    }

    .faq details[open] summary::after {
      transform: translateY(-20%) rotate(-135deg);
    }

    .faq .faq-a {
      padding: 0 22px 20px;
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.65;
    }

    @media (max-width: 720px) {
      nav {
        display: none;
      }
    }
