* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      :root {
        --bg1: #667eea;
        --bg2: #764ba2;
        --ink: #1f2937;
        --muted: #6b7280;
        --brand: #667eea;
        --accent: #ff6b6b;
        --surface: #fff;
        --ring: rgba(102, 126, 234, 0.18);
        --radius: 20px;
        --shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
      }
      body {
        font-family: Inter, system-ui, Arial, sans-serif;
        line-height: 1.6;
        color: var(--ink);
        background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 100%)
          fixed;
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }

      /* Header */
      header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      }
      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
      }
      .logo {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.2px;
      }
      .nav-links {
        display: flex;
        list-style: none;
        gap: 1.5rem;
      }
      .nav-links a {
        text-decoration: none;
        color: #374151;
        font-weight: 600;
      }
      .nav-links a:hover {
        color: var(--brand);
      }

      /* Main */
      main {
        margin-top: 80px;
      }
      .hero {
        display: grid;
        place-items: center;
        text-align: center;
        padding: 90px 0 100px;
        color: #fff;
        background: radial-gradient(
            1200px 500px at 10% 0%,
            rgba(255, 255, 255, 0.08),
            transparent 60%
          ),
          radial-gradient(
            1200px 500px at 90% 0%,
            rgba(255, 255, 255, 0.08),
            transparent 60%
          );
      }
      .hero h1 {
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
      }
      .hero p {
        font-size: 1.15rem;
        max-width: 720px;
        margin: 0 auto 1.8rem;
        opacity: 0.95;
      }
      .badges {
        display: flex;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.6rem;
      }
      .badge {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        padding: 0.45rem 0.8rem;
        border-radius: 999px;
        font-size: 0.9rem;
      }
      .cta-row {
        display: flex;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
      }
      .btn {
        display: inline-block;
        border-radius: 999px;
        padding: 14px 22px;
        font-weight: 800;
        text-decoration: none;
      }
      .btn-primary {
        background: var(--accent);
        color: #fff;
        box-shadow: 0 10px 25px rgba(255, 107, 107, 0.35);
      }
      .btn-outline {
        border: 2px solid rgba(255, 255, 255, 0.75);
        color: #fff;
      }
      .hero-figure {
        margin-top: 28px;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.3);
      }
      .hero-figure img {
        display: block;
        width: 100%;
        max-width: 420px;
        height: auto;
      }
      @media (max-width: 768px) {
        .hero-figure img {
          max-width: 480px;
        }
      }

      /* Strip */
      .strip {
        background: #fff;
      }
      .strip .inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        padding: 30px 0;
      }
      .pill {
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        border-radius: 999px;
        padding: 12px 14px;
        text-align: center;
        font-weight: 700;
      }

      /* Sections */
      .section {
        background: var(--surface);
        margin: 42px 0;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
      }
      .section-header {
        padding: 34px 34px 0;
      }
      .section-title {
        font-size: 2rem;
        margin-bottom: 0.4rem;
      }
      .section-sub {
        color: var(--muted);
        margin-bottom: 1rem;
      }
      .grid-2 {
        display: grid;
        grid-template-columns: 2fr 3fr;
      }
      .img-cover {
        min-height: 320px;
        background-size: contain;
        background-position: center;
        margin-bottom: 10px;

      }
      .pad {
        padding: 42px;
      }
      .list {
        display: grid;
        gap: 14px;
        margin-top: 12px;
      }
      .list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
      }
      .check {
        width: 22px;
        height: 22px;
        border-radius: 6px;
        background: #eaf0ff;
        border: 1px solid #d7e0ff;
        display: grid;
        place-items: center;
        font-weight: 900;
        color: #4353d6;
      }

      /* Stats */
      .stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        padding: 30px;
      }
      .stat {
        background: #f8fafc;
        border: 1px solid #eef2f7;
        border-radius: 16px;
        padding: 22px;
        text-align: center;
      }
      .stat h3 {
        font-size: 2rem;
      }
      .stat p {
        color: var(--muted);
      }

      /* Timeline */
      .timeline {
        padding: 10px 30px 34px;
      }
      .step {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 16px;
        align-items: start;
        margin: 18px 0;
      }
      .dot {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #eef2ff;
        display: grid;
        place-items: center;
        font-weight: 800;
        color: #4353d6;
      }
      .step h4 {
        margin-bottom: 6px;
      }
      .muted {
        color: var(--muted);
      }

      /* Cards */
      .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding: 30px;
      }
      .card {
        border: 1px solid #eef2f7;
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
      }
      .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
      .card-body {
        padding: 18px;
      }
      .stars {
        color: #f59e0b;
        font-size: 1.1rem;
      }
      .role {
        font-size: 0.9rem;
        color: var(--muted);
      }

      /* Pricing */
      .pricing {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding: 30px;
      }
      .price {
        border: 2px solid #e5e7eb;
        border-radius: 18px;
        padding: 24px;
        background: #fff;
        position: relative;
      }
      .price.popular {
        border-color: var(--brand);
        box-shadow: 0 12px 36px rgba(102, 126, 234, 0.2);
      }
      .ribbon {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--brand);
        color: #fff;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 800;
      }
      .price h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
      }
      .price .amount {
        font-size: 2.2rem;
        font-weight: 900;
        margin: 8px 0;
      }
      .price ul {
        list-style: none;
        display: grid;
        gap: 10px;
        margin: 12px 0 16px;
      }
      .price .btn {
        width: 100%;
        text-align: center;
      }

      /* FAQ */
      .faq {
        padding: 10px 30px 30px;
      }
      details {
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 14px 16px;
        margin: 10px 0;
        background: #fff;
      }
      summary {
        font-weight: 800;
        cursor: pointer;
      }

      /* Blog */
      .blog {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        padding: 30px;
      }
      .blog .card img {
        height: 180px;
      }

      /* Registration */
      .registration-section {
        background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
        padding: 80px 0;
        margin-top: 40px;
      }
      .form-container {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        max-width: 700px;
        margin: 0 auto;
      }
      .form-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 10px;
      }
      .form-sub {
        color: var(--muted);
        text-align: center;
        margin-bottom: 18px;
      }
      .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .form-group {
        display: flex;
        flex-direction: column;
      }
      label {
        font-weight: 700;
        margin-bottom: 6px;
      }
      input,
      textarea,
      select {
        padding: 14px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 1rem;
      }
      textarea {
        min-height: 110px;
        resize: vertical;
      }
      .submit-btn {
        margin-top: 10px;
        width: 100%;
        background: var(--brand);
        color: #fff;
        padding: 16px;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 900;
        cursor: pointer;
      }
      .submit-btn:hover {
        filter: brightness(0.95);
      }
      .submit-btn:disabled {
        background: #cbd5e1;
        cursor: not-allowed;
      }

      /* CTA band */
      .cta-band {
        background: #0f172a;
        color: #fff;
        border-radius: 20px;
        margin: 40px 0px;
        
      }
      .cta-band .inner {
        display: grid;
        grid-template-columns: 3fr 1fr;
        gap: 18px;
        align-items: center;
        padding: 26px;
      }

      /* Footer */
      footer {
        background: #111827;
        color: #e5e7eb;
        padding: 40px 0;
        margin-top: 40px;
      }
      .footer-cols {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 18px;
      }
      .footer-links a {
        display: block;
        color: #e5e7eb;
        text-decoration: none;
        margin: 6px 0;
      }
      .footer-links a:hover {
        color: #93c5fd;
      }
      .foot-bottom {
        margin-top: 16px;
        border-top: 1px solid #1f2937;
        padding-top: 12px;
        font-size: 0.95rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
      }

      /* Bottom Cookie banner (existing) */
      .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #111827;
        color: #fff;
        padding: 18px;
        text-align: center;
        z-index: 1001;
        display: none;
      }
      .cookie-banner.show {
        display: block;
      }
      .cookie-banner button {
        background: var(--brand);
        color: #fff;
        border: none;
        padding: 10px 16px;
        border-radius: 10px;
        margin-left: 10px;
        cursor: pointer;
      }

      /* Top compact Cookie banner */
      .cookie-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1100;
        background: #0f172a;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        display: none;
      }
      .cookie-top.show {
        display: block;
      }
      .cookie-top .inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 24px;
        display: flex;
        gap: 12px;
        align-items: center;
      }
      .cookie-top p {
        margin: 0;
        flex: 1;
        font-size: 0.95rem;
        opacity: 0.95;
      }
      .cookie-top .btns {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
      }
      .cookie-btn {
        border-radius: 10px;
        padding: 8px 12px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: transparent;
        color: #fff;
        cursor: pointer;
      }
      .cookie-btn.primary {
        background: #667eea;
        border-color: #667eea;
      }

      /* Cookie modal */
      .cookie-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        display: none;
        z-index: 1200;
      }
      .cookie-modal {
        position: fixed;
        inset: 0;
        display: none;
        z-index: 1201;
        place-items: center;
      }
      .cookie-modal.show,
      .cookie-backdrop.show {
        display: grid;
      }
      .cookie-card {
        width: min(680px, 92vw);
        background: #fff;
        border-radius: 18px;
        padding: 22px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
      }
      .cookie-card h3 {
        margin-bottom: 6px;
        font-size: 1.4rem;
      }
      .cookie-card p {
        color: #6b7280;
        margin-bottom: 12px;
      }
      .cookie-options {
        display: grid;
        gap: 12px;
        margin: 14px 0;
      }
      .cookie-opt {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #eef2f7;
        border-radius: 12px;
        padding: 12px;
      }
      .cookie-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 10px;
      }
      .cookie-actions .cookie-btn {
        color: #111;
        border-color: #e5e7eb;
      }
      .cookie-actions .cookie-btn.primary {
        color: #fff;
      }

      /* ===================== */
      /* OVERRIDE: GUTTERS & IMAGES */
      /* ===================== */
      :root {
        --page-gutter: clamp(16px, 4vw, 40px);
      }

      .container {
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
      }

      .section {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
      }

      .strip .inner {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
      }

      .stats,
      .timeline,
      .cards,
      .pricing,
      .faq,
      .blog {
        padding-left: 0;
        padding-right: 0; /* уже есть паддинги у .section */
      }

      .cta-band .inner {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
      }

      /* Исправленное кадрирование фоновых картинок */
      .img-cover {
        background-size: cover; /* вместо contain */
        background-position: var(
          --pos,
          50% 50%
        ); /* можно менять фокус через --pos */
        aspect-ratio: 16 / 10;
        border-radius: 14px;
      }
      @media (max-width: 768px) {
        .img-cover {
          aspect-ratio: 3 / 2;
        }
      }

      /* Ровное кадрирование изображений в карточках */
      .card img {
        height: 220px;
        object-fit: cover;
        object-position: 50% 50%;
      }
      .blog .card img {
        height: 200px;
        object-fit: cover;
        object-position: 50% 50%;
      }

      /* Hero-figure центрируется и не «липнет» к краю */
      .hero-figure {
        margin-left: auto;
        margin-right: auto;
      }