:root {
  --bg: #f3f6fb;
  --bg-soft: #eaf0fb;
  --surface: #ffffff;
  --line: #e1e7f2;
  --text: #1c263c;
  --muted: #6a7a94;
  --accent: #1b84ff;
  --accent-2: #2d5be3;
  --teal: #2cbcb2;
  --coral: #f07b63;
  --slate: #465167;
  --shadow-lg: 0 40px 70px rgba(20, 32, 63, 0.15);
  --shadow-md: 0 18px 35px rgba(20, 32, 63, 0.12);
  --shadow-sm: 0 10px 20px rgba(20, 32, 63, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(900px 500px at 10% -10%, rgba(27, 132, 255, 0.08), transparent 60%),
    radial-gradient(800px 500px at 95% 5%, rgba(45, 91, 227, 0.08), transparent 60%),
    var(--bg);
}

body.modal-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-right {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.topbar-right a {
  color: #d8e4ff;
  transition: color 0.2s ease;
}

.topbar-right a:hover {
  color: #fff;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.logo-text {
  display: grid;
  gap: 2px;
}

.logo-text strong {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  letter-spacing: 0.4px;
}

.logo-text small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-weight: 600;
  color: var(--muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero {
  padding: 60px 0 30px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.hero-content h1 span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 12px;
}

.hero-content p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 132, 255, 0.12);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

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

.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 28px;
}

.hero-meta div {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.hero-meta strong {
  font-size: 18px;
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--surface);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.hero-card-stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.hero-card-stats div {
  background: var(--bg-soft);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  color: var(--muted);
}

.hero-card-stats strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.features {
  padding: 40px 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  min-height: 220px;
}

.feature-card h3 {
  font-family: "Outfit", sans-serif;
  margin: 16px 0 10px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
}

.accent-blue .feature-icon {
  background: #1b84ff;
}

.accent-coral .feature-icon {
  background: #f07b63;
}

.accent-teal .feature-icon {
  background: #2cbcb2;
}

.accent-slate .feature-icon {
  background: #465167;
}

.about {
  padding: 40px 0 50px;
}

.about-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.about-text h2,
.faq-panel h2,
.form-panel h2 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.7;
}

.about-panel {
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 16px 0 22px;
}

.brand-grid span {
  background: var(--bg-soft);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
  color: var(--muted);
}

.about-highlight {
  background: linear-gradient(135deg, rgba(27, 132, 255, 0.12), rgba(45, 91, 227, 0.12));
  padding: 16px;
  border-radius: 16px;
}

.about-highlight strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.about-highlight p {
  margin: 0;
  color: var(--muted);
}

.faq {
  padding: 30px 0 60px;
}

.faq-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.faq-panel,
.form-panel {
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.faq-panel details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq-panel summary {
  font-weight: 600;
  cursor: pointer;
}

.faq-panel p {
  color: var(--muted);
  margin: 10px 0 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.form-grid input,
.form-grid textarea {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  font-family: inherit;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(27, 132, 255, 0.2);
  border-color: rgba(27, 132, 255, 0.5);
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-alert {
  background: rgba(242, 92, 92, 0.12);
  border: 1px solid rgba(242, 92, 92, 0.3);
  color: #b44343;
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.form-alert.is-hidden {
  display: none;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.captcha-code {
  font-family: "Outfit", sans-serif;
  letter-spacing: 4px;
  font-size: 18px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 8px 14px;
  border-radius: 12px;
}

.btn.btn-sm {
  padding: 8px 12px;
  font-size: 13px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.toast-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

.toast-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.toast-card {
  width: min(420px, 92vw);
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.toast-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

.toast-text {
  color: var(--muted);
  margin-bottom: 12px;
}

.toast-countdown {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.toast-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #eef2f8;
  overflow: hidden;
}

.toast-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s linear;
}

.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 24px 0;
}

.footer-inner {
  display: grid;
  gap: 16px;
  font-size: 13px;
}

.footer-links,
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #9fb2d8;
}

.payment-band {
  max-width: 100%;
  height: 30px;
  object-fit: contain;
  filter: brightness(1.05);
  opacity: 0.9;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.6);
  padding: 20px;
  z-index: 50;
}

.modal.is-open {
  display: flex;
}

.modal-dialog {
  width: min(920px, 92vw);
  max-height: 86vh;
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  position: relative;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.modal-head h3 {
  font-family: "Outfit", sans-serif;
  margin: 0;
  font-size: 20px;
}

.modal-close {
  border: none;
  background: var(--bg-soft);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
}

.modal-body {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.bank-list {
  display: grid;
  gap: 16px;
}

.bank-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f1f5fb;
  border: 1px solid #e2e8f6;
}

.bank-name {
  font-weight: 600;
  color: #1f2a44;
  margin-bottom: 4px;
}

.bank-holder {
  font-size: 14px;
  color: #4b5a75;
  margin-bottom: 6px;
}

.bank-iban {
  font-family: "Outfit", sans-serif;
  letter-spacing: 1.2px;
  color: #1f2a44;
  font-size: 15px;
}

.modal-body h1,
.modal-body h2,
.modal-body h3,
.modal-body h4 {
  color: var(--text);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    right: 4vw;
    top: 68px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    display: none;
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero-meta {
    flex-direction: column;
  }

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

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

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
