:root {
  --ink: #14213d;
  --muted: #37506d;
  --card: #ffffff;
  --line: #c8d9ff;
  --brand-a: #0ea5e9;
  --brand-b: #7c3aed;
  --brand-c: #f97316;
  --lime: #22c55e;
  --max: 1140px;
  --radius: 18px;
  --shadow: 0 16px 38px rgba(41, 70, 139, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, #eff7ff 0%, #f6f3ff 45%, #fff4e8 100%);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
  font-family: "Plus Jakarta Sans", sans-serif;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 340px;
  height: 340px;
  background: #06b6d4;
  top: -60px;
  right: -70px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #f97316;
  bottom: -80px;
  left: -70px;
}

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

.section {
  padding: 5rem 0;
}

.muted {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.68), rgba(246, 241, 255, 0.75));
  border-top: 1px solid rgba(200, 217, 255, 0.7);
  border-bottom: 1px solid rgba(200, 217, 255, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(238, 247, 255, 0.72);
  border-bottom: 1px solid rgba(200, 217, 255, 0.85);
}

.header-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  background: linear-gradient(145deg, #14b8a6, #6366f1);
  box-shadow: var(--shadow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  font-weight: 700;
  color: #1d3658;
}

.main-nav a:hover {
  color: #7c3aed;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #24426c;
  margin: 5px auto;
}

.hero {
  padding-top: 6.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.15);
  color: #0b6ca8;
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 2.3vw + 1rem, 3.4rem);
  max-width: 15ch;
}

.lead {
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 340px;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
}

.hero-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: linear-gradient(120deg, #f97316, #ef4444);
  color: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-block;
  background: linear-gradient(140deg, var(--brand-a), var(--brand-b));
  color: #fff;
  border: 1px solid transparent;
  padding: 0.78rem 1.2rem;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.93rem;
}

.btn-ghost {
  background: #fff;
  color: #1b3f6a;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: #7c3aed;
  color: #7c3aed;
}

.section-intro {
  max-width: 66ch;
  margin-bottom: 1.3rem;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.adv-card {
  background: linear-gradient(155deg, #ffffff, #f4f8ff);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  font-weight: 700;
  color: #1e3658;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 22px rgba(38, 75, 139, 0.12);
}

.adv-card span {
  font-size: 1.15rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(62, 88, 145, 0.12);
}

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

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.formats-content {
  display: grid;
  gap: 0.9rem;
}

.formats-header {
  max-width: 860px;
  margin: 0 auto 1.3rem;
  text-align: center;
}

.formats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.formats-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
  color: #244468;
}

.image-stack {
  display: grid;
  gap: 0.9rem;
}

.image-stack img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}

.colorful-panel {
  background: linear-gradient(145deg, #1e3a8a, #7c3aed 58%, #ec4899);
  color: #fff;
  border: none;
}

.colorful-panel p {
  color: rgba(255, 255, 255, 0.92);
}

.cta-box {
  border-radius: var(--radius);
  background: linear-gradient(130deg, #0ea5e9 5%, #7c3aed 46%, #f97316 100%);
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 60ch;
}

.cta-box .btn {
  background: #fff;
  color: #2b1d70;
}

.contact-form-wrap {
  background: linear-gradient(145deg, #ffffff, #f4f8ff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.4rem;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.contact-card {
  margin-top: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(165deg, #ffffff, #eef5ff);
  box-shadow: 0 8px 20px rgba(46, 78, 138, 0.12);
}

.contact-card p {
  margin-bottom: 0.7rem;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form label {
  font-weight: 700;
  color: #234264;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(124, 58, 237, 0.25);
  border-color: #7c3aed;
}

.contact-form button {
  margin-top: 0.35rem;
  justify-self: start;
}

.site-footer {
  background: linear-gradient(180deg, rgba(230, 242, 255, 0.8), rgba(242, 232, 255, 0.85));
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

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

.footer-brand {
  color: #4f46e5;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.footer-about {
  max-width: 460px;
}

.payment-systems {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.pay-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #355177;
  margin-right: 0.15rem;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #c8d9ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.logo-badge {
  padding: 0.3rem 0.5rem;
  min-height: 34px;
}

.logo-badge img {
  display: block;
  height: 18px;
  width: auto;
}

.visa-logo img {
  height: 15px;
}

.mc-logo img {
  height: 18px;
}

.prostir-logo img {
  height: 18px;
}

.pay-badge.visa {
  color: #1a4cc7;
}

.pay-badge.mc {
  color: #d7441f;
}


.footer-links {
  display: grid;
  gap: 0.15rem;
  align-content: start;
}

.footer-links a {
  color: #2c3faa;
  font-weight: 700;
  line-height: 1.35;
}

.footer-links a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-grid,
  .two-col,
  .formats-grid,
  .cards.three,
  .contact-form-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    height: 300px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    right: 1.2rem;
    top: 78px;
    width: min(360px, 92vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav .btn-sm {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .cards.two {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    position: static;
    margin-top: 0.6rem;
    display: inline-block;
  }

  .cta-box {
    padding: 1.3rem;
  }
}

.doc-page {
  background: linear-gradient(160deg, #f4f9ff 0%, #f6f3ff 55%, #fff8f1 100%);
}

.doc-main .section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.doc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.6rem;
  max-width: 920px;
  margin: 0 auto;
}

.doc-head {
  border-bottom: 1px solid #e7efff;
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
}

.doc-eyebrow {
  display: inline-block;
  margin: 0 0 0.55rem;
  color: #4f46e5;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.doc-card h1 {
  font-size: clamp(1.4rem, 1.1vw + 1rem, 2rem);
  max-width: 100%;
}

.doc-content p {
  margin: 0 0 0.9rem;
}

.doc-content p:last-child {
  margin-bottom: 0;
}

.legal-text {
  line-height: 1.75;
  color: #273f5f;
}

.legal-text p {
  margin: 0 0 0.72rem;
}

.legal-text p:last-child {
  margin-bottom: 0;
}

.legal-section {
  margin-top: 1.05rem;
  font-weight: 800;
  color: #182f4d;
}

.legal-subsection {
  margin-top: 0.9rem;
  font-weight: 700;
  color: #1f3b61;
}

.legal-item {
  padding-left: 0.15rem;
}

.doc-actions {
  margin-top: 1.2rem;
}
