  :root {
      --bg: #07111f;
      --bg-soft: #0d1b2d;
      --card: rgba(255, 255, 255, 0.06);
      --card-solid: #0f1d31;
      --text: #f5f7fb;
      --muted: #9fb0c7;
      --line: rgba(255, 255, 255, 0.1);
      --primary: #4da3ff;
      --primary-2: #7cc4ff;
      --accent: #13c2c2;
      --white: #ffffff;
      --dark-text: #0f1728;
      --light-bg: #f3f7fc;
      --light-card: #ffffff;
      --light-line: #dbe5f0;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
     font-family: 'Inter', sans-serif;
      background: var(--light-bg);
      color: var(--dark-text);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  font-weight: 400;
  line-height: 1.6;
}

.section-title {
  font-weight: 800;
}

.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

    .navbar {
      background: rgba(7, 17, 31, 0.72);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: 0.25s ease;
    }

    .navbar-brand {
      font-weight: 800;
      letter-spacing: 0.3px;
      color: var(--white) !important;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.8) !important;
      font-weight: 500;
    }

    .nav-link:hover {
      color: var(--white) !important;
    }

    .navbar-toggler {
      border-color: rgba(255, 255, 255, 0.18);
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    .btn-main {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border: none;
      color: var(--white);
      padding: 13px 22px;
      border-radius: 14px;
      font-weight: 700;
      box-shadow: 0 14px 30px rgba(36, 138, 255, 0.25);
      transition: 0.25s ease;
    }

    .btn-main:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 36px rgba(36, 138, 255, 0.32);
      color: var(--white);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--white);
      padding: 13px 22px;
      border-radius: 14px;
      font-weight: 700;
      transition: 0.25s ease;
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      transform: translateY(-1px);
    }

    .btn-light-custom {
      background: var(--white);
      color: #0d1b2d;
      border: none;
      padding: 13px 22px;
      border-radius: 14px;
      font-weight: 700;
      transition: 0.25s ease;
    }

    .btn-light-custom:hover {
      transform: translateY(-1px);
      color: #0d1b2d;
    }

.hero {
  position: relative;
  padding: 140px 0 100px;
  color: #fff;

  background: 
    linear-gradient(rgba(10, 18, 32, 0.75), rgba(10, 18, 32, 0.85)),
    url("../images/gdpr-hero.jpg") center/cover no-repeat;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero .lead {
  color: rgba(255,255,255,0.85);
}

    .glass-card {
      background: var(--card);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(16px);
      border-radius: 24px;
      padding: 28px;
      box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.04);
      color: var(--text);
    }

    .glass-card h5,
    .glass-card h6 {
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--white);
    }

    .glass-card p,
    .glass-card li {
      color: #c5d3e4;
    }

    .glass-card ul {
      padding-left: 18px;
      margin-bottom: 0;
    }

    .glass-card li {
      margin-bottom: 12px;
    }

    .hero-metric {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 18px;
      padding: 18px 18px;
      height: 100%;
    }

    .hero-metric h6 {
      color: var(--white);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .hero-metric p {
      margin-bottom: 0;
      color: #b9c9db;
      font-size: 0.95rem;
    }

    .section {
      padding: 86px 0 40px 0;
    }

    .section-title {
      font-size: 2.35rem;
      line-height: 1.12;
      font-weight: 800;
      letter-spacing: -0.025em;
      margin-bottom: 14px;
    }

    .section-subtitle {
      color: #5f7087;
      font-size: 1.05rem;
      max-width: 760px;
      margin-bottom: 42px;
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.83rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #3d7ee6;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .info-card {
      background: var(--light-card);
      border: 1px solid var(--light-line);
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 16px 36px rgba(13, 27, 45, 0.05);
      height: 100%;
      transition: 0.25s ease;
    }

    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(13, 27, 45, 0.08);
    }

.info-card-short {
  height: auto;
  min-height: 320px;
}

    .icon-wrap {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-weight: 800;
      color: var(--white);
      background: linear-gradient(135deg, #146bff, #13c2c2);
      box-shadow: 0 12px 25px rgba(20, 107, 255, 0.22);
    }

    .info-card h5 {
      font-weight: 700;
      margin-bottom: 12px;
    }

    .info-card p,
    .info-card li {
      color: #66788f;
    }

    .info-card ul {
      padding-left: 18px;
      margin-bottom: 0;
    }

    .info-card li {
      margin-bottom: 10px;
    }

   .soft-dark-section {
  position: relative;

  background:
    linear-gradient(rgba(10, 18, 32, 0.9), rgba(10, 18, 32, 0.95)),
    url("../images/gdpr-approach.jpg") center/cover no-repeat;

  color: #fff;
}

  .dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 28px;
  height: 100%;

  backdrop-filter: blur(8px);

  transition: 0.3s;
}

.dark-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}
    .step-list {
      position: relative;
      margin-top: 10px;
    }

    .step-item {
      position: relative;
      padding-left: 88px;
      padding-bottom: 30px;
    }

    .step-item:last-child {
      padding-bottom: 0;
    }

    .step-item::before {
      content: "";
      position: absolute;
      left: 24px;
      top: 58px;
      width: 2px;
      height: calc(100% - 42px);
      background: linear-gradient(180deg, rgba(77,163,255,0.45), rgba(19,194,194,0.15));
    }

    .step-item:last-child::before {
      display: none;
    }

    .step-number {
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: linear-gradient(135deg, #146bff, #13c2c2);
      color: var(--white);
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 14px 30px rgba(20, 107, 255, 0.25);
    }

    .step-item h5 {
      font-weight: 700;
      margin-bottom: 8px;
    }

    .step-item p {
      margin-bottom: 0;
      color: #66788f;
    }

    .package-card {
      position: relative;
      background: var(--light-card);
      border: 1px solid var(--light-line);
      border-radius: 24px;
      padding: 32px 28px;
      height: 100%;
      box-shadow: 0 16px 36px rgba(13, 27, 45, 0.05);
      transition: 0.25s ease;
    }

    .package-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 50px rgba(13, 27, 45, 0.08);
    }

    .package-card.featured {
      background: linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
      border: 1px solid rgba(22, 107, 255, 0.3);
      box-shadow:
        0 24px 60px rgba(20, 107, 255, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.6);
    }

    .package-badge {
      display: inline-block;
      margin-bottom: 14px;
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      background: rgba(20, 107, 255, 0.1);
      color: #146bff;
    }

    .package-card h5 {
      font-weight: 800;
      margin-bottom: 8px;
    }

    .package-card p,
    .package-card li {
      color: #66788f;
    }

    .package-card ul {
      padding-left: 18px;
      margin-top: 18px;
      margin-bottom: 0;
    }

    .package-card li {
      margin-bottom: 11px;
    }

    .cta-box {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(15, 89, 216, 0.85), rgba(17, 153, 156, 0.85)),
    url("../images/lock.jpg") center/cover no-repeat;

  border-radius: 30px;
  padding: 52px;
  color: #fff;

  box-shadow: 0 26px 60px rgba(17, 91, 175, 0.22);
}

    .contact-card {
      background: var(--light-card);
      border: 1px solid var(--light-line);
      border-radius: 24px;
      padding: 30px;
      box-shadow: 0 16px 36px rgba(13, 27, 45, 0.05);
      height: 100%;
    }

    .contact-card h5 {
      font-weight: 800;
      margin-bottom: 18px;
    }

    .contact-card p,
    .contact-card label {
      color: #5f7087;
    }

    .contact-card a {
      color: #146bff;
      text-decoration: none;
    }

    .contact-card a:hover {
      text-decoration: underline;
    }

    .form-control,
    .form-select {
      min-height: 56px;
      border-radius: 14px;
      border: 1px solid #d8e2ed;
      padding: 14px 16px;
      font-size: 1rem;
      box-shadow: none;
    }

    textarea.form-control {
      min-height: 140px;
      resize: vertical;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: #7fb4ff;
      box-shadow: 0 0 0 0.22rem rgba(20, 107, 255, 0.14);
    }

    .footer {
      background: #09111d;
      color: #9fb0c7;
      padding: 24px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer a {
      color: #cfe2ff;
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 1199px) {
      .hero h1 {
        font-size: 3rem;
      }
    }

    @media (max-width: 991px) {
      .hero {
        padding: 108px 0 72px;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .section {
        padding: 72px 0;
      }

      .cta-box {
        padding: 38px 28px;
      }
    }

    @media (max-width: 767px) {
      .hero h1 {
        font-size: 2.08rem;
      }

      .section-title {
        font-size: 1.85rem;
      }

      .step-item {
        padding-left: 72px;
      }

      .step-number {
        width: 46px;
        height: 46px;
      }

      .cta-box {
        border-radius: 24px;
      }
    }
	.consent-check {
  margin-top: 4px;
}

.consent-check .form-check-input {
  margin-top: 0.3rem;
  cursor: pointer;
}

.consent-check .form-check-label {
  color: #5f7087;
  font-size: 0.96rem;
  line-height: 1.5;
}

.consent-check a {
  color: #146bff;
  text-decoration: none;
  font-weight: 600;
}

.consent-check a:hover {
  text-decoration: underline;
}

.privacy-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 27, 45, 0.18);
}

.privacy-modal .modal-header {
  border-bottom: 1px solid #e6edf5;
  padding: 20px 24px;
}

.privacy-modal .modal-title {
  font-weight: 800;
  color: #0f1728;
}

.privacy-modal .modal-body {
  padding: 24px;
}

.privacy-modal .modal-body p {
  color: #5f7087;
  line-height: 1.7;
  margin-bottom: 16px;
}

.logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

/* чтобы navbar не ломался */
.navbar-brand {
  display: flex;
  align-items: center;
}
.contact-note {
  color: #5f7087;
  margin-bottom: 20px;
}

/* кнопки */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-btn {
  display: block;
  text-align: center;

  padding: 14px;
  border-radius: 12px;

  font-weight: 600;
  text-decoration: none;

  transition: 0.25s;
}

/* EMAIL */
.contact-btn.email {
  background: #2f80ff;
  color: #fff;
}

.contact-btn.email:hover {
  background: #1f6fe0;
}

/* TELEGRAM */
.contact-btn.telegram {
  background: #229ED9;
  color: #fff;
}

.contact-btn.telegram:hover {
  background: #1c8ac2;
}

/* WHATSAPP */
.contact-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.contact-btn.whatsapp:hover {
  background: #1fb857;
}

/* WEBSITE */
.contact-btn.website {
  background: #111827;
  color: #fff;
}

.contact-btn.website:hover {
  background: #1f2937;
}
.lang-switch {
  display: inline-block;
  padding: 6px 12px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);

  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;

  transition: 0.25s;
}

.lang-switch:hover {
  background: rgba(255,255,255,0.1);
}