:root {
  --bg: #081120;
  --bg-soft: #0d172a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --card: #0f1b31;
  --accent: #3b82f6;
  --accent-soft: #93c5fd;
  --text: #f8fbff;
  --muted: #9fb0d1;
  --muted-2: #7f92b3;
  --ok: #22c55e;
  --border: rgba(173, 190, 255, 0.12);
  --border-strong: rgba(173, 190, 255, 0.22);
  --maxw: 1180px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-sm: 0 10px 30px rgba(3, 10, 24, 0.22);
  --shadow-md: 0 18px 50px rgba(3, 10, 24, 0.32);
  --shadow-lg: 0 30px 80px rgba(3, 10, 24, 0.44);
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    }
    
    html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 15% -10%, rgba(59, 130, 246, 0.18), transparent 35%),
    radial-gradient(circle at 85% 0%, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, #081120 0%, #0a1426 100%);
  color: var(--text);
  line-height: 1.65;
}

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

    .container {
      width: min(100% - 2rem, var(--maxw));
      margin: 0 auto;
    }

.section {
  padding: 4.8rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.06), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(147, 197, 253, 0.04), transparent 18%);
  opacity: 0.9;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.42rem 0.78rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.08);
  backdrop-filter: blur(8px);
}

h1, h2, h3 {
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 800;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 750;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

p.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.hero {
  padding: 6.8rem 0 5.4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.22), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147,197,253,0.12), transparent 65%);
  filter: blur(14px);
  pointer-events: none;
}

    .hero h1,
    .hero .lead {
      max-width: 100%;
    }

        #about .lead,
        #why-screenshots .lead {
      max-width: 100%;
    }
    
    .hero .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-top: 1.4rem;
    }

    .actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

    .actions-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

        .actions-note {
      margin-top: 0.8rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    @media (max-width: 560px) {
      .actions-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
      }

      .actions-buttons .btn {
        width: 100%;
      }
    }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 0.95rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  cursor: pointer;
}

.btn.primary {
  color: white;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.34);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.42);
}

.btn.secondary {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.btn.secondary:hover {
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.06);
}

    .btn:hover { transform: translateY(-1px); }

.grid {display: grid; gap: 1.1rem;}
.grid.cols-3 {grid-template-columns: repeat(3, minmax(0, 1fr));}
.grid.cols-5 {grid-template-columns: repeat(3, minmax(0, 1fr));}

.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.card .icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(59,130,246,0.16), rgba(59,130,246,0.06));
  border: 1px solid rgba(147, 197, 253, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 18px rgba(37, 99, 235, 0.12);
  color: var(--accent-soft);
}

.card .icon svg {
  width: 20px;
  height: 20px;
}

.card .card-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.65rem;
}

.card .card-head .icon {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
}

.card .card-head h3 {
  margin-bottom: 0;
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

    .steps {
      counter-reset: step;
      display: grid;
      gap: 1rem;
    }

    .step {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1rem;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: rgba(16, 26, 48, 0.7);
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      width: 2rem;
      height: 2rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 700;
      background: rgba(29, 120, 255, 0.2);
      color: var(--accent-soft);
      border: 1px solid var(--border);
      flex-shrink: 0;
    }

ul.clean {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  color: var(--muted);
}

ul.clean li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

#about ul.clean {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

ul.clean li::before {
  content: "✔";
  color: var(--ok);
  font-weight: 700;
  margin-top: 0.05rem;
}

    .trust-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 0.8rem;
      margin-top: 1rem;
    }

    .trust-pill {
      position: relative;
      flex: 0 0 auto;
    }

    .trust-pill summary {
      list-style: none;
      cursor: pointer;
    }

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

    .logo-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.5rem 0.85rem;
      border-radius: 999px;
      border: 1px dashed var(--border);
      color: var(--muted);
      font-size: 0.85rem;
    }

    .trust-pill[open] .logo-pill {
      border-style: solid;
      border-color: rgba(99, 160, 255, 0.5);
      color: var(--text);
    }

    .logo-pill svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      color: var(--accent-soft);
    }

    .logo-pill::after {
      content: "+";
      margin-left: 0.15rem;
      color: var(--muted-2);
      font-weight: 600;
    }

    .trust-pill[open] .logo-pill::after {
      content: "–";
    }

    .trust-pill p {
      position: absolute;
      top: calc(100% + 0.6rem);
      left: 0;
      z-index: 5;
      width: max-content;
      max-width: min(280px, 78vw);
      margin: 0;
      padding: 0.75rem 0.9rem;
      background: var(--card);
      border: 1px solid var(--border-strong);
      border-radius: 12px;
      box-shadow: var(--shadow-md);
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (min-width: 641px) {
      .trust-pill:last-child p {
        left: auto;
        right: 0;
      }
    }

    @media (max-width: 640px) {
      .trust-pill[open] {
        flex-basis: 100%;
      }

      .trust-pill p {
        position: static;
        width: auto;
        max-width: none;
        margin-top: 0.6rem;
        box-shadow: none;
      }
    }

.faq details {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.03);
  margin-bottom: 0.85rem;
  transition: border-color .2s ease, background .2s ease;
}

.faq details[open] {
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.045);
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 1rem;
  list-style: none;
}

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

.faq p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3.2rem 1.2rem;
  border: 1px solid rgba(173, 190, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(59,130,246,0.14), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 20px 60px rgba(4, 13, 31, 0.32);
}

.cta::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,160,255,0.22), transparent 65%);
  pointer-events: none;
}

    .cta.active-focus {
      border-color: rgba(99, 160, 255, 0.7);
      box-shadow: 0 20px 55px rgba(18, 87, 199, 0.35);
      background: linear-gradient(145deg, rgba(49, 129, 255, 0.25), rgba(8, 19, 40, 0.72));
      position: relative;
      overflow: hidden;
    }

    .cta.active-focus::after {
      content: "";
      position: absolute;
      inset: -30% auto auto -20%;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99,160,255,0.28), rgba(99,160,255,0));
      pointer-events: none;
    }
    
    .contact-modal-overlay {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 1rem;
      background: rgba(5, 10, 24, 0.55);
      backdrop-filter: blur(6px);
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease;
    }

    .contact-modal-overlay.visible {
      opacity: 1;
      pointer-events: auto;
    }

.contact-modal {
  position: relative;
  width: min(580px, 100%);
  padding: 1.4rem;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(13, 25, 48, 0.96), rgba(9, 18, 36, 0.98));
  box-shadow: var(--shadow-lg);
  transform: translateY(10px) scale(0.985);
  transition: transform .25s ease, opacity .25s ease;
  opacity: 0;
}

    .contact-modal-overlay.visible .contact-modal {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .contact-modal p {
      color: var(--muted);
      font-size: 0.95rem;
      margin: 0.45rem 0;
    }

    .close-modal {
      position: absolute;
      top: 0.6rem;
      right: 0.6rem;
      width: 2rem;
      height: 2rem;
      border: 1px solid var(--border);
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
      color: var(--muted);
      cursor: pointer;
      font-size: 1rem;
      line-height: 1;
    }

    .lead-form {
      margin-top: 0.9rem;
      display: grid;
      gap: 0.65rem;
    }

.lead-form input,
.lead-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  padding: 0.82rem 0.9rem;
  font-size: 0.95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(147, 197, 253, 0.5);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
  background: rgba(255,255,255,0.05);
}

    .lead-form textarea {
      min-height: 90px;
      resize: vertical;
    }

    .lead-form button {
      width: 100%;
      margin-top: 0.3rem;
    }

    .form-status {
      margin-top: 0.6rem;
      padding: 0.55rem 0.7rem;
      border-radius: 10px;
      font-size: 0.9rem;
      display: none;
    }

    .form-status.visible {
      display: block;
    }

    .form-status.success {
      border: 1px solid rgba(34, 197, 94, 0.5);
      background: rgba(34, 197, 94, 0.14);
      color: #b9f7cf;
    }

    .form-status.error {
      border: 1px solid rgba(239, 68, 68, 0.45);
      background: rgba(239, 68, 68, 0.12);
      color: #ffc9c9;
    }

    .lead-form button[disabled] {
      opacity: 0.7;
      cursor: not-allowed;
    }
    
    .social-buttons {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-top: 0.75rem;
    }

    .social-buttons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.85rem;
      background: rgba(255,255,255,0.03);
    }

    .social-buttons a:hover {
      color: var(--text);
      border-color: rgba(99, 160, 255, 0.75);
    }

    @media (max-width: 1080px) {
      .grid.cols-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .grid.cols-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
  .grid.cols-3,
  .grid.cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid.cols-3,
  .grid.cols-5 {
    grid-template-columns: 1fr;
  }
}

    @media (max-width: 520px) {
      .grid.cols-5 {
        grid-template-columns: 1fr;
      }
      
      .cta {
        padding: 2rem 0.9rem;
      }

      .cta .btn {
        width: 100%;
      }

      .cta .lead {
        font-size: 0.95rem;
      }
    }

footer {
  border-top: 1px solid var(--border);
  padding: 1.8rem 0 2.3rem;
  color: var(--muted-2);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.015);
}

    footer .row {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 2rem;
      padding-bottom: 1.6rem;
    }

    .footer-col strong {
      display: block;
      color: var(--text);
      font-size: 0.95rem;
      margin-bottom: 0.7rem;
    }

    .footer-brand p {
      color: var(--muted-2);
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 0.8rem;
    }

    .footer-col a {
      display: block;
      color: var(--muted-2);
      margin-bottom: 0.55rem;
      transition: color 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--text);
    }

    .footer-social {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 0;
      padding: 0.4rem 0.75rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      font-size: 0.82rem;
      background: rgba(255,255,255,0.03);
    }

    .footer-social svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.2rem;
    }

    @media (max-width: 760px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
      }
    }
