:root {
      --bg-deep: #06152F;
      --bg-mid: #0a2247;
      --accent: #3b82f6;
      --accent-bright: #60a5fa;
      --accent-glow: rgba(59, 130, 246, 0.55);
      --cyan: #22d3ee;
      --cyan-glow: rgba(34, 211, 238, 0.35);
      --text-primary: #f8fafc;
      --text-secondary: rgba(248, 250, 252, 0.72);
      --text-muted: rgba(248, 250, 252, 0.52);
      --glass-bg: rgba(255, 255, 255, 0.06);
      --glass-border: rgba(255, 255, 255, 0.12);
      --glass-highlight: rgba(255, 255, 255, 0.08);
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --section-pad: clamp(4rem, 8vw, 7rem);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 18px;
    }

    body {
      font-family: var(--font);
      font-size: 1.125rem;
      background: var(--bg-deep);
      color: var(--text-primary);
      line-height: 1.65;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .ng-page {
      position: relative;
      min-height: 100vh;
      isolation: isolate;
      font-size: 1.125rem;
    }

    .ng-skip {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      z-index: 100;
      padding: 0.75rem 1.25rem;
      background: #fff;
      color: #06152F;
      font-weight: 600;
      text-decoration: none;
      border-radius: 8px;
    }

    .ng-skip:focus {
      left: 1rem;
      top: 1rem;
      width: auto;
      height: auto;
    }

    /* Animated wave layers */
    .ng-waves {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .ng-wave {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.45;
      animation: ng-wave-drift 18s var(--ease-out) infinite alternate;
    }

    .ng-wave--1 {
      width: min(90vw, 720px);
      height: min(90vw, 720px);
      background: radial-gradient(circle, rgba(37, 99, 235, 0.55) 0%, transparent 70%);
      top: -15%;
      left: -10%;
      animation-duration: 22s;
    }

    .ng-wave--2 {
      width: min(85vw, 640px);
      height: min(85vw, 640px);
      background: radial-gradient(circle, rgba(34, 211, 238, 0.35) 0%, transparent 68%);
      top: 35%;
      right: -15%;
      animation-duration: 26s;
      animation-delay: -4s;
    }

    .ng-wave--3 {
      width: min(70vw, 520px);
      height: min(70vw, 520px);
      background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 72%);
      bottom: -10%;
      left: 25%;
      animation-duration: 20s;
      animation-delay: -8s;
    }

    .ng-wave--4 {
      width: min(60vw, 480px);
      height: min(60vw, 480px);
      background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 75%);
      top: 55%;
      left: 5%;
      animation-duration: 24s;
      animation-delay: -2s;
    }

    @keyframes ng-wave-drift {
      0% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(4%, 3%) scale(1.05); }
      66% { transform: translate(-3%, 5%) scale(0.98); }
      100% { transform: translate(2%, -2%) scale(1.03); }
    }

    .ng-grid-overlay {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 70%);
      opacity: 0.5;
    }

    .ng-container {
      position: relative;
      z-index: 1;
      width: min(1120px, 100% - 2rem);
      margin-inline: auto;
    }

    .ng-section {
      padding-block: var(--section-pad);
    }

    .ng-section-header {
      text-align: center;
      max-width: 720px;
      margin-inline: auto;
      margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    }

    .ng-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-bright);
      margin-bottom: 1rem;
    }

    .ng-eyebrow svg {
      width: 18px;
      height: 18px;
      opacity: 0.9;
    }

    .ng-h1 {
      font-size: clamp(2.125rem, 5vw, 3.5rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.12;
      margin-bottom: 1.25rem;
      background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.85) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .ng-h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .ng-lead {
      font-size: clamp(1.2rem, 2.2vw, 1.45rem);
      color: var(--text-secondary);
      max-width: 640px;
      margin-inline: auto;
    }

    .ng-sub {
      font-size: 1.125rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
    }

    /* Glass card */
    .ng-glass {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 24px 48px rgba(0, 0, 0, 0.25);
    }

    /* Buttons */
    .ng-btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-top: 2.25rem;
    }

    .ng-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.625rem;
      padding: 1rem 1.75rem;
      font-size: 1.0625rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
      position: relative;
      overflow: hidden;
    }

    .ng-btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .ng-btn--primary {
      color: #fff;
      background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
      box-shadow:
        0 0 24px var(--accent-glow),
        0 4px 16px rgba(37, 99, 235, 0.4);
    }

    .ng-btn--primary::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
      transform: translateX(-100%);
      transition: transform 0.6s var(--ease-out);
    }

    .ng-btn--primary:hover {
      transform: translateY(-2px);
      box-shadow:
        0 0 36px var(--accent-glow),
        0 8px 28px rgba(37, 99, 235, 0.5);
    }

    .ng-btn--primary:hover::before {
      transform: translateX(100%);
    }

    .ng-btn--secondary {
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow: 0 0 20px rgba(34, 211, 238, 0.12);
    }

    .ng-btn--secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 211, 238, 0.45);
      box-shadow: 0 0 32px var(--cyan-glow);
    }

    .ng-btn--ghost {
      color: var(--text-secondary);
      background: transparent;
      border-color: rgba(255, 255, 255, 0.14);
    }

    .ng-btn--ghost:hover {
      transform: translateY(-2px);
      color: var(--text-primary);
      border-color: rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.05);
    }

    .ng-btn--block {
      width: 100%;
    }

    /* Hero */
    .ng-hero {
      padding-top: clamp(5rem, 12vw, 8rem);
      padding-bottom: clamp(4rem, 10vw, 6rem);
      text-align: center;
    }

    .ng-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem 0.5rem 0.75rem;
      margin-bottom: 1.75rem;
      border-radius: 999px;
      font-size: 1rem;
      color: var(--text-secondary);
      animation: ng-fade-up 0.8s var(--ease-out) both;
    }

    .ng-pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #34d399;
      box-shadow: 0 0 12px rgba(52, 211, 153, 0.8);
      animation: ng-pulse 2s ease-in-out infinite;
    }

    @keyframes ng-pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(1.15); }
    }

    @keyframes ng-fade-up {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .ng-hero .ng-h1 {
      animation: ng-fade-up 0.8s var(--ease-out) 0.1s both;
    }

    .ng-hero .ng-lead {
      animation: ng-fade-up 0.8s var(--ease-out) 0.2s both;
    }

    .ng-hero .ng-btn-row {
      animation: ng-fade-up 0.8s var(--ease-out) 0.35s both;
    }

    .ng-deadline {
      margin-top: 2rem;
      padding: 1rem 1.25rem;
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      font-size: 1.0625rem;
      color: var(--text-secondary);
      animation: ng-fade-up 0.8s var(--ease-out) 0.45s both;
    }

    .ng-deadline strong {
      color: var(--accent-bright);
      font-weight: 600;
    }

    .ng-gift-promo {
      margin-top: 1.25rem;
      padding: 1.25rem 1.5rem;
      text-align: left;
      max-width: 720px;
      margin-inline: auto;
      border-color: rgba(52, 211, 153, 0.35);
      background: rgba(52, 211, 153, 0.08);
    }

    .ng-gift-promo-head {
      display: flex;
      align-items: flex-start;
      gap: 0.875rem;
      margin-bottom: 0.65rem;
    }

    .ng-gift-promo-head svg {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      color: #34d399;
      margin-top: 0.15rem;
    }

    .ng-gift-promo-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.35;
    }

    .ng-gift-promo-title strong {
      color: #6ee7b7;
    }

    .ng-gift-promo p {
      font-size: 1.0625rem;
      color: var(--text-secondary);
      line-height: 1.55;
      padding-left: 2.625rem;
    }

    @media (max-width: 520px) {
      .ng-gift-promo p {
        padding-left: 0;
      }
    }

    .ng-price-term {
      font-size: 1.0625rem;
      color: var(--text-secondary);
      margin-bottom: 1.75rem;
      padding: 0.65rem 0.85rem;
      border-radius: var(--radius-sm);
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(96, 165, 250, 0.25);
    }

    /* Benefits grid */
    .ng-benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    .ng-benefit-card {
      padding: 1.75rem;
      transition: transform 0.4s var(--ease-out), border-color 0.4s;
    }

    .ng-benefit-card:hover {
      transform: translateY(-4px);
      border-color: rgba(96, 165, 250, 0.35);
    }

    .ng-icon-wrap {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      background: rgba(59, 130, 246, 0.15);
      border: 1px solid rgba(96, 165, 250, 0.25);
      margin-bottom: 1.25rem;
      color: var(--accent-bright);
    }

    .ng-icon-wrap svg {
      width: 24px;
      height: 24px;
    }

    .ng-benefit-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }

    .ng-benefit-card p {
      font-size: 1.0625rem;
      color: var(--text-secondary);
    }

    /* Pricing */
    .ng-pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
      gap: 1.5rem;
      align-items: stretch;
    }

    .ng-price-card {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.4s var(--ease-out);
    }

    .ng-price-card:hover {
      transform: translateY(-6px);
    }

    .ng-price-card--featured {
      border-color: rgba(96, 165, 250, 0.45);
      background: rgba(255, 255, 255, 0.08);
    }

    .ng-price-card--featured::after {
      content: "Популярный выбор";
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
      background: rgba(59, 130, 246, 0.25);
      color: var(--accent-bright);
      border: 1px solid rgba(96, 165, 250, 0.35);
    }

    .ng-price-name {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .ng-price-desc {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      min-height: 2.5em;
    }

    .ng-price-amount {
      font-size: clamp(2.25rem, 4vw, 2.75rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .ng-price-amount span {
      font-size: 1.25rem;
      font-weight: 500;
      opacity: 0.85;
    }

    .ng-price-old {
      font-size: 1.0625rem;
      color: var(--text-muted);
      margin-bottom: 1.75rem;
      padding: 0.65rem 0.85rem;
      border-radius: var(--radius-sm);
      background: rgba(251, 191, 36, 0.08);
      border: 1px solid rgba(251, 191, 36, 0.2);
    }

    .ng-price-old s {
      color: rgba(248, 250, 252, 0.45);
    }

    .ng-price-features {
      list-style: none;
      flex: 1;
      margin-bottom: 1.75rem;
    }

    .ng-price-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 1.0625rem;
      color: var(--text-secondary);
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .ng-price-features li:last-child {
      border-bottom: none;
    }

    .ng-price-features svg {
      width: 18px;
      height: 18px;
      color: #34d399;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }

    /* Included */
    .ng-included-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    @media (max-width: 768px) {
      .ng-included-layout {
        grid-template-columns: 1fr;
      }
    }

    .ng-included-panel {
      padding: 2rem;
    }

    .ng-check-list {
      list-style: none;
    }

    .ng-check-list li {
      display: flex;
      gap: 0.875rem;
      padding: 0.875rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 1.0625rem;
      color: var(--text-secondary);
    }

    .ng-check-list li:last-child {
      border-bottom: none;
    }

    .ng-check-list .ng-check-icon {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      color: var(--accent-bright);
    }

    .ng-check-list strong {
      display: block;
      color: var(--text-primary);
      font-weight: 600;
      margin-bottom: 0.15rem;
    }

    /* ROI */
    .ng-roi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    @media (max-width: 900px) {
      .ng-roi-grid {
        grid-template-columns: 1fr;
      }
    }

    .ng-stat-card {
      padding: 1.75rem;
      text-align: center;
    }

    .ng-stat-value {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--accent-bright);
      margin-bottom: 0.35rem;
    }

    .ng-stat-label {
      font-size: 1.0625rem;
      color: var(--text-secondary);
    }

    .ng-roi-copy {
      margin-top: 2rem;
      padding: 2rem;
    }

    .ng-roi-copy p {
      color: var(--text-secondary);
      font-size: 1rem;
      margin-bottom: 1rem;
    }

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

    /* SEO & Legal */
    .ng-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    @media (max-width: 768px) {
      .ng-two-col {
        grid-template-columns: 1fr;
      }
    }

    .ng-info-card {
      padding: 2rem;
      height: 100%;
    }

    .ng-info-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.625rem;
    }

    .ng-info-card h3 svg {
      width: 24px;
      height: 24px;
      color: var(--accent-bright);
    }

    .ng-info-card ul {
      list-style: none;
    }

    .ng-info-card li {
      position: relative;
      padding-left: 1.25rem;
      margin-bottom: 0.75rem;
      font-size: 1.0625rem;
      color: var(--text-secondary);
    }

    .ng-info-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-bright);
      box-shadow: 0 0 8px var(--accent-glow);
    }

    /* CTA */
    .ng-cta {
      text-align: center;
    }

    .ng-cta-box {
      padding: clamp(2.5rem, 6vw, 4rem);
      position: relative;
      overflow: hidden;
    }

    .ng-cta-box::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 120%;
      height: 120%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 55%);
      pointer-events: none;
    }

    .ng-cta-box .ng-h2 {
      position: relative;
    }

    .ng-cta-box .ng-lead {
      position: relative;
      margin-inline: auto;
    }

    .ng-cta-box .ng-btn-row {
      position: relative;
    }

    .ng-footer-note {
      text-align: center;
      padding: 2rem 1rem 3rem;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    /* Why experts need a site */
    .ng-expert-intro {
      padding: 2rem;
      margin-bottom: 2rem;
    }

    .ng-expert-intro p {
      color: var(--text-secondary);
      font-size: 1.0625rem;
      margin-bottom: 1rem;
    }

    .ng-expert-intro p:last-child {
      margin-bottom: 0;
    }

    .ng-expert-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    .ng-expert-card {
      padding: 1.5rem 1.65rem;
    }

    .ng-expert-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .ng-expert-card p {
      font-size: 1.0625rem;
      color: var(--text-secondary);
    }

    /* Contact form */
    .ng-contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 2rem;
      align-items: start;
    }

    @media (max-width: 900px) {
      .ng-contact-layout {
        grid-template-columns: 1fr;
      }
    }

    .ng-contact-aside {
      padding: 2rem;
    }

    .ng-contact-aside h3 {
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .ng-contact-aside p {
      color: var(--text-secondary);
      font-size: 1.0625rem;
      margin-bottom: 1rem;
    }

    .ng-contact-aside ul {
      list-style: none;
      margin-top: 1.25rem;
    }

    .ng-contact-aside li {
      position: relative;
      padding-left: 1.15rem;
      margin-bottom: 0.65rem;
      font-size: 1.0625rem;
      color: var(--text-secondary);
    }

    .ng-contact-aside li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-bright);
    }

    .ng-contact-channels {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      margin: 1.25rem 0 1.5rem;
      padding: 1rem 1.1rem;
      border-radius: var(--radius-sm);
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(96, 165, 250, 0.22);
    }

    .ng-messenger-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }

    .ng-messenger-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 8px 20px rgba(0, 0, 0, 0.18);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .ng-messenger-icon:hover {
      transform: translateY(-2px);
    }

    .ng-messenger-icon svg {
      width: 1.35rem;
      height: 1.35rem;
      flex-shrink: 0;
    }

    .ng-messenger-icon--telegram {
      color: #fff;
      background: linear-gradient(145deg, #2aabee 0%, #229ed9 100%);
      border-color: rgba(42, 171, 238, 0.45);
    }

    .ng-messenger-icon--telegram:hover {
      box-shadow: 0 10px 24px rgba(42, 171, 238, 0.35);
    }

    .ng-messenger-icon--whatsapp {
      color: #fff;
      background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
      border-color: rgba(37, 211, 102, 0.45);
    }

    .ng-messenger-icon--whatsapp:hover {
      box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
    }

    .ng-messenger-icon--max {
      color: #fff;
      background: linear-gradient(145deg, #5b4eff 0%, #007aff 100%);
      border-color: rgba(91, 78, 255, 0.45);
    }

    .ng-messenger-icon--max:hover {
      box-shadow: 0 10px 24px rgba(91, 78, 255, 0.32);
    }

    .ng-messenger-icon--max svg {
      width: 1.55rem;
      height: 1.55rem;
    }

    .ng-messenger-phone {
      margin: 0;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: 0.01em;
    }

    .ng-messenger-phone a {
      color: inherit;
      text-decoration: none;
    }

    .ng-messenger-phone a:hover {
      color: var(--accent-bright);
    }

    .ng-messenger-hint {
      margin: 0;
      font-size: 0.8125rem;
      color: var(--text-muted);
      line-height: 1.45;
    }

    .ng-contact-channels a.ng-contact-email {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--accent-bright);
      text-decoration: none;
      font-size: 1.0625rem;
      font-weight: 600;
    }

    .ng-contact-channels a.ng-contact-email:hover {
      color: #93c5fd;
    }

    .ng-contact-channels a.ng-contact-email svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    .ng-contact-channels span {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--text-muted);
    }

    .ng-footer-messengers {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      vertical-align: middle;
      margin-inline: 0.15rem;
    }

    .ng-footer-messengers .ng-messenger-icon {
      width: 2rem;
      height: 2rem;
    }

    .ng-footer-messengers .ng-messenger-icon svg {
      width: 1rem;
      height: 1rem;
    }

    .ng-footer-messengers .ng-messenger-icon--max svg {
      width: 1.15rem;
      height: 1.15rem;
    }

    .ng-form-panel {
      padding: 2rem;
    }

    .ng-form-grid {
      display: grid;
      gap: 1rem;
    }

    .ng-form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    @media (max-width: 560px) {
      .ng-form-row-2 {
        grid-template-columns: 1fr;
      }
    }

    .ng-field label {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
      color: var(--text-primary);
    }

    .ng-field input,
    .ng-field textarea,
    .ng-field select {
      width: 100%;
      padding: 0.85rem 1rem;
      font-size: 1.0625rem;
      font-family: var(--font);
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius-sm);
      transition: border-color 0.25s, box-shadow 0.25s;
    }

    .ng-field input:focus,
    .ng-field textarea:focus,
    .ng-field select:focus {
      outline: none;
      border-color: rgba(96, 165, 250, 0.55);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }

    .ng-field textarea {
      min-height: 140px;
      resize: vertical;
    }

    .ng-field-hint {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.35rem;
    }

    .ng-form-consent {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      font-size: 0.95rem;
      color: var(--text-secondary);
      cursor: pointer;
    }

    .ng-form-consent input {
      width: 1.125rem;
      height: 1.125rem;
      margin-top: 0.2rem;
      flex-shrink: 0;
      accent-color: var(--accent);
    }

    .ng-form-consent a {
      color: var(--accent-bright);
    }

    .ng-form-submit {
      width: 100%;
      margin-top: 0.5rem;
      border: none;
      font-family: var(--font);
    }

    .ng-form-submit:disabled {
      opacity: 0.65;
      cursor: not-allowed;
      transform: none;
    }

    .ng-form-msg {
      margin-top: 1rem;
      padding: 0.85rem 1rem;
      border-radius: var(--radius-sm);
      font-size: 1rem;
      display: none;
    }

    .ng-form-msg.is-visible {
      display: block;
    }

    .ng-form-msg--ok {
      background: rgba(52, 211, 153, 0.12);
      border: 1px solid rgba(52, 211, 153, 0.35);
      color: #a7f3d0;
    }

    .ng-form-msg--err {
      background: rgba(248, 113, 113, 0.12);
      border: 1px solid rgba(248, 113, 113, 0.35);
      color: #fecaca;
    }

    .ng-form-err-detail {
      display: block;
      margin-top: 0.5rem;
      font-size: 0.95rem;
      opacity: 0.95;
    }

    .ng-honey {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    /* Sticky nav */
    .ng-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(6, 21, 47, 0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .ng-nav-inner {
      width: min(1120px, 100% - 1.25rem);
      margin-inline: auto;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 0;
      min-height: 3.25rem;
    }

    .ng-nav-brand {
      font-weight: 700;
      font-size: 0.9375rem;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      padding: 0.35rem 0;
    }

    .ng-nav-brand span {
      color: var(--accent-bright);
    }

    .ng-nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      flex: 1;
      justify-content: flex-end;
      padding: 0.15rem 0;
    }

    .ng-nav-links::-webkit-scrollbar {
      display: none;
    }

    .ng-nav-links a {
      padding: 0.5rem 0.8rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-secondary);
      text-decoration: none;
      border-radius: 999px;
      white-space: nowrap;
      transition: color 0.25s, background 0.25s;
    }

    .ng-nav-links a:hover,
    .ng-nav-links a:focus-visible {
      color: var(--text-primary);
      background: rgba(255, 255, 255, 0.08);
      outline: none;
    }

    .ng-nav-links a.is-active {
      color: var(--accent-bright);
      background: rgba(59, 130, 246, 0.18);
    }

    .ng-nav-cta {
      flex-shrink: 0;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      border-radius: 999px;
      background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
      box-shadow: 0 0 16px var(--accent-glow);
      white-space: nowrap;
    }

    .ng-nav-cta:hover {
      filter: brightness(1.08);
    }

    @media (min-width: 768px) {
      .ng-nav-links a {
        font-size: 0.9375rem;
        padding: 0.5rem 0.95rem;
      }

      .ng-nav-brand {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .ng-nav-cta {
        display: none;
      }

      .ng-nav-brand {
        font-size: 0.8125rem;
        max-width: 7.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }

    .ng-section[id],
    .ng-hero {
      scroll-margin-top: 4.25rem;
    }

    /* Reveal animation */
    .ng-reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

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

    @media (prefers-reduced-motion: reduce) {
      .ng-wave,
      .ng-pulse-dot,
      .ng-reveal {
        animation: none !important;
        transition: none !important;
      }
      .ng-reveal {
        opacity: 1;
        transform: none;
      }
    }

    .ng-header {
      position: sticky;
      top: 0;
      z-index: 10;
      padding: 0.85rem 0;
      background: rgba(6, 21, 47, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .ng-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
    .ng-nav-logo { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); text-decoration: none; }
    .ng-nav-links { display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem; list-style: none; }
    .ng-nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-secondary); text-decoration: none; }
    .ng-nav-links a:hover, .ng-nav-links a[aria-current="page"] { color: var(--accent-bright); }
    .ng-page-hero { padding-top: clamp(3rem, 8vw, 5rem); padding-bottom: clamp(2.5rem, 6vw, 4rem); text-align: center; }

    .ng-hero-offer {
      font-size: clamp(1.35rem, 2.8vw, 1.85rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.22;
      margin-bottom: 1rem;
      color: var(--accent-bright);
      max-width: 720px;
      margin-inline: auto;
    }

    .ng-page-hero .ng-h1 {
      margin-bottom: 0.85rem;
    }
    .ng-prose { max-width: 720px; margin-inline: auto; color: var(--text-secondary); font-size: 1.0625rem; }
    .ng-prose p { margin-bottom: 1.15rem; }
    .ng-prose h2 { font-size: 1.35rem; font-weight: 600; color: var(--text-primary); margin: 2rem 0 0.85rem; }
    .ng-prose ul { margin: 0 0 1.15rem 1.25rem; }
    .ng-case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
    .ng-case-card { padding: 1.75rem; height: 100%; }
    .ng-case-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.65rem; }
    .ng-case-card p { font-size: 1rem; color: var(--text-secondary); }
    .ng-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; max-width: 720px; margin-inline: auto; }
    .ng-contact-item { padding: 1.5rem; text-align: center; }
    .ng-contact-item strong { display: block; margin-bottom: 0.35rem; color: var(--text-primary); }
    .ng-contact-item a { color: var(--accent-bright); text-decoration: none; }
    .ng-site-footer { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 2rem 1rem 3rem; }
    .ng-footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; list-style: none; margin-bottom: 1rem; }
    .ng-footer-nav a { font-size: 0.95rem; color: var(--text-secondary); text-decoration: none; }
    .ng-footer-copy { text-align: center; font-size: 0.95rem; color: var(--text-muted); }
    .ng-footer-copy a { color: inherit; }
    .ng-link-more { display: inline-block; margin-top: 1rem; font-size: 0.95rem; font-weight: 600; color: var(--accent-bright); text-decoration: none; }
    .ng-case-card--featured { border-color: rgba(96, 165, 250, 0.45); background: rgba(255, 255, 255, 0.08); }
    .ng-case-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.35rem 0.65rem; border-radius: 999px; background: rgba(52, 211, 153, 0.15); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.35); margin-bottom: 0.85rem; }
    .ng-case-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-size: 0.95rem; font-weight: 600; color: var(--accent-bright); text-decoration: none; }
    .ng-case-link:hover { text-decoration: underline; }

    .ng-about-layout {
      display: grid;
      grid-template-columns: minmax(160px, 200px) 1fr;
      gap: clamp(1.5rem, 4vw, 2.5rem);
      align-items: start;
    }

    @media (max-width: 768px) {
      .ng-about-layout {
        grid-template-columns: 1fr;
        justify-items: center;
      }
    }

    .ng-author-photo {
      margin: 0;
      text-align: center;
      max-width: 200px;
      width: 100%;
    }

    .ng-author-photo-frame {
      position: relative;
      padding: 0.65rem;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 16px 32px rgba(0, 0, 0, 0.22),
        0 0 28px rgba(59, 130, 246, 0.14);
    }

    .ng-author-photo-frame::after {
      content: "";
      position: absolute;
      inset: 0.65rem;
      border-radius: calc(var(--radius-lg) - 6px);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
      pointer-events: none;
    }

    .ng-author-photo-frame img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: calc(var(--radius-lg) - 6px);
    }

    .ng-author-photo-caption {
      margin-top: 0.75rem;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: -0.01em;
    }

    .ng-author-photo-role {
      margin-top: 0.2rem;
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .ng-author-photo--compact {
      max-width: 108px;
      margin-inline: auto;
      margin-bottom: 1rem;
    }

    .ng-author-photo--compact .ng-author-photo-frame {
      padding: 0.45rem;
      border-radius: var(--radius-md);
    }

    .ng-author-photo--compact .ng-author-photo-frame::after {
      inset: 0.45rem;
      border-radius: calc(var(--radius-md) - 4px);
    }

    .ng-author-photo--compact .ng-author-photo-frame img {
      border-radius: calc(var(--radius-md) - 4px);
    }

    .ng-author-photo--compact .ng-author-photo-caption {
      font-size: 0.875rem;
      margin-top: 0.5rem;
    }
