:root {
      --bg: #0b0f16;
      --bg-soft: #121826;
      --card: rgba(255,255,255,0.04);
      --card-border: rgba(255,255,255,0.10);
      --text: #f5f7fb;
      --muted: #b7c0cf;
      --accent: #d4af37;
      --accent-2: #f5d77b;
      --white: #ffffff;
      --shadow: 0 20px 60px rgba(0,0,0,0.35);
      --radius: 20px;
      --radius-sm: 14px;
      --max: 1240px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top right, rgba(212,175,55,0.10), transparent 28%),
        radial-gradient(circle at top left, rgba(255,255,255,0.04), transparent 22%),
        linear-gradient(180deg, #0b0f16 0%, #0e1420 45%, #0b0f16 100%);
      color: var(--text);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(100% - 32px, var(--max));
      margin: 0 auto;
    }

    .section {
      padding: 90px 0;
    }

    .section-title {
      font-size: clamp(30px, 4vw, 50px);
      line-height: 1.1;
      margin-bottom: 18px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .section-subtitle {
      color: var(--muted);
      max-width: 760px;
      font-size: 17px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(12px);
      background: rgba(11,15,22,0.75);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: 0.18em;
      color: var(--white);
    }

    .logo span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: var(--muted);
      font-size: 15px;
      transition: 0.25s;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #111;
      font-weight: 700;
      box-shadow: var(--shadow);
      transition: 0.25s;
    }

    .nav-cta:hover,
    .btn:hover {
      transform: translateY(-2px);
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 78px);
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(11,15,22,0.88) 0%, rgba(11,15,22,0.75) 38%, rgba(11,15,22,0.45) 70%, rgba(11,15,22,0.70) 100%),
        url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11,15,22,0.10) 0%, rgba(11,15,22,0.55) 100%);
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 42px;
      align-items: center;
      width: 90%;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      color: var(--accent-2);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 22px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .hero h1 {
      font-size: clamp(42px, 7vw, 82px);
      line-height: 0.98;
      letter-spacing: -0.05em;
      margin-bottom: 24px;
      font-weight: 900;
      max-width: 780px;
    }

    .hero h1 span {
      color: var(--accent);
    }

    .hero p {
      max-width: 720px;
      color: var(--muted);
      font-size: 18px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 14px 24px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #111;
      box-shadow: var(--shadow);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.16);
      color: var(--white);
      background: rgba(255,255,255,0.04);
    }

    .hero-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 860px;
    }

    .hero-feature {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 18px;
    }

    .hero-feature strong {
      display: block;
      font-size: 18px;
      margin-bottom: 6px;
    }

    .hero-feature span {
      color: var(--muted);
      font-size: 14px;
    }

    .hero-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 24px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .hero-card h3 {
      font-size: 26px;
      margin-bottom: 18px;
    }

    .hero-card ul {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-bottom: 24px;
    }

    .hero-card li {
      padding-left: 28px;
      position: relative;
      color: var(--muted);
    }

    .hero-card li::before {
      content: "•";
      color: var(--accent);
      position: absolute;
      left: 0;
      top: 0;
      font-size: 24px;
      line-height: 1;
    }

    .about-grid,
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
    }

    .card h3 {
      font-size: 28px;
      margin-bottom: 14px;
    }

    .card p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .info-list {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-top: 20px;
    }

    .info-list li {
      display: flex;
      gap: 12px;
      color: var(--muted);
    }

    .info-list li strong {
      color: var(--white);
    }

    .types-grid,
    .benefits-grid,
    .steps-grid,
    .gallery-grid {
      display: grid;
      gap: 22px;
      margin-top: 40px;
    }

    .types-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .steps-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .type-card,
    .benefit-card,
    .step-card {
      background: var(--card);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .type-card img,
    .gallery-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .type-body,
    .benefit-body,
    .step-body {
      padding: 24px;
    }

    .type-body h3,
    .benefit-body h3,
    .step-body h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .type-body p,
    .benefit-body p,
    .step-body p {
      color: var(--muted);
      font-size: 15px;
    }

    .benefit-card,
    .step-card {
      padding-top: 0;
    }

    .benefit-icon,
    .step-number {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 24px 24px 0;
      background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(245,215,123,0.10));
      border: 1px solid rgba(212,175,55,0.28);
      color: var(--accent-2);
      font-size: 24px;
      font-weight: 900;
    }

    .legal-box {
      margin-top: 28px;
      padding: 24px;
      border-radius: var(--radius-sm);
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.24);
    }

    .legal-box p {
      color: var(--text);
      margin: 0;
    }

    .gallery-grid img {
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow);
      transition: 0.25s;
    }

    .gallery-grid img:hover {
      transform: scale(1.02);
    }

    .contact-card .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 22px;
    }

    .contact-details {
      list-style: none;
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .contact-details li {
      color: var(--muted);
      word-break: break-word;
    }

    .contact-details strong {
      color: var(--white);
      display: block;
      margin-bottom: 4px;
    }

    .footer {
      padding: 28px 0 40px;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: var(--muted);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .floating-contact {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 1001;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .floating-contact a {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 700;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.10);
    }

    .floating-wa {
      background: #25D366;
      color: #fff;
    }

    .floating-call {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #111;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .about-grid,
      .contact-grid,
      .types-grid,
      .benefits-grid,
      .steps-grid,
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero {
        min-height: auto;
        padding: 80px 0;
      }

      .hero-features {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
      }

      .nav-links {
        gap: 14px;
      }

      .hero-grid,
      .about-grid,
      .contact-grid,
      .types-grid,
      .benefits-grid,
      .steps-grid,
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 72px 0;
      }

      .hero h1 {
        font-size: 42px;
      }

      .hero p {
        font-size: 16px;
      }

      .hero-card,
      .card,
      .type-body,
      .benefit-body,
      .step-body {
        padding: 22px;
      }

      .hero-actions,
      .contact-card .actions {
        flex-direction: column;
      }

      .btn,
      .nav-cta {
        width: 100%;
      }

      .floating-contact {
        right: 14px;
        bottom: 14px;
      }
    }

.img-platforma {
  background: #fff;
  padding: 10px;
}

.tel-btn {
  display: inline-block;
  width: 260px;
  height: 56px;
  padding: 6px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.3);
  box-sizing: border-box;
}

.tel-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tel-btn-small {
  display: inline-block;
  width: 180px;
  height: 24px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.tel-img-small {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

