
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #0b1120;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(15,23,42,0.95), rgba(15,23,42,0.9));
  border-bottom: 1px solid rgba(148,163,184,0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: #e5e7eb;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #38bdf8, #6366f1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: white;
  box-shadow: 0 0 16px rgba(56,189,248,0.6);
}

.logo-text {
  letter-spacing: 0.03em;
  font-size: 0.98rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: #cbd5f5;
}

.main-nav a {
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #38bdf8, #6366f1);
  transition: width 0.2s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* Hero */
.hero {
  padding: 4rem 0 3.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(56,189,248,0.2), transparent 55%),
    radial-gradient(circle at 100% 30%, rgba(129,140,248,0.24), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(56,189,248,0.18), transparent 55%),
    #020617;
  color: #e5e7eb;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 32rem;
  color: #cbd5f5;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}

.btn.primary {
  background: linear-gradient(to right, #38bdf8, #6366f1);
  color: white;
  box-shadow: 0 18px 40px rgba(56,189,248,0.28);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(56,189,248,0.35);
}

.btn.ghost {
  background: rgba(15,23,42,0.7);
  color: #e5e7eb;
  border-color: rgba(148,163,184,0.5);
}

.btn.ghost:hover {
  background: rgba(15,23,42,0.95);
}

.btn.full {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-meta span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.4);
  background: rgba(15,23,42,0.8);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.status-card,
.trust-card {
  border-radius: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: radial-gradient(circle at 0% 0%, rgba(56,189,248,0.18), transparent 55%), rgba(15,23,42,0.92);
  border: 1px solid rgba(148,163,184,0.26);
}

.trust-card {
  background: radial-gradient(circle at 100% 0%, rgba(129,140,248,0.2), transparent 55%), rgba(15,23,42,0.88);
}

.status-card h3,
.trust-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
}

.status-ok {
  color: #bbf7d0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,0.9);
}

.status-card ul,
.trust-card ul {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  font-size: 0.86rem;
}

.status-card li,
.trust-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
}

.badge {
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  font-size: 0.75rem;
  border: 1px solid rgba(148,163,184,0.5);
}

.badge.success {
  color: #bbf7d0;
  border-color: rgba(34,197,94,0.6);
}

/* Sections */
.section {
  padding: 3.2rem 0;
  background: radial-gradient(circle at 50% 0%, rgba(15,23,42,0.9), #020617);
  color: #e5e7eb;
}

.section.muted {
  background: radial-gradient(circle at 50% 0%, rgba(30,64,175,0.45), #020617);
}

.section-title {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
}

.section-subtitle {
  max-width: 34rem;
  color: #cbd5f5;
  font-size: 0.96rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.card {
  border-radius: 1.1rem;
  padding: 1.4rem 1.6rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.3);
  box-shadow: 0 18px 40px rgba(15,23,42,0.7);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* Chips */
.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  font-size: 0.82rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.92);
  color: #e5e7eb;
}

/* Pricing */
.pricing-preview,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pricing-card .price {
  font-size: 1.45rem;
  margin: 0.4rem 0 0.8rem;
}

.pricing-card .price span {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-left: 0.25rem;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: #cbd5f5;
}

.pricing-card li {
  padding: 0.25rem 0;
}

.pricing-card.featured {
  border-color: rgba(56,189,248,0.8);
  box-shadow: 0 22px 60px rgba(56,189,248,0.35);
  position: relative;
}

.badge-label {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(56,189,248,0.16);
  border: 1px solid rgba(56,189,248,0.7);
  color: #e0f2fe;
}

.pricing-disclaimer,
.note {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Page hero */
.page-hero {
  padding: 3rem 0 2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(56,189,248,0.15), transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(129,140,248,0.22), transparent 65%),
    #020617;
  color: #e5e7eb;
}

.page-hero h1 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
}

.page-hero p {
  margin: 0;
  max-width: 30rem;
  color: #cbd5f5;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.info-panel {
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 18px 40px rgba(15,23,42,0.8);
  font-size: 0.9rem;
}

/* Lists */
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-size: 0.8rem;
  top: 2px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.form-group label {
  color: #e5e7eb;
}

.form-group input,
.form-group textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.9);
  padding: 0.6rem 0.75rem;
  color: #e5e7eb;
  font: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 1px solid rgba(56,189,248,0.7);
  border-color: rgba(56,189,248,0.7);
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 0.4rem;
}

.form-note {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Legal */
.legal h2 {
  font-size: 1.1rem;
  margin-top: 1.6rem;
}

.legal p,
.legal ul {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.legal ul {
  padding-left: 1.1rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 1.5rem;
  background: #020617;
  color: #9ca3af;
  border-top: 1px solid rgba(15,23,42,1);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  font-size: 0.86rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.footer-text {
  margin: 0;
  max-width: 23rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links a {
  color: #e5e7eb;
  font-size: 0.86rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(15,23,42,1);
  padding-top: 1rem;
  font-size: 0.78rem;
  text-align: center;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem;
  display: none;
}

.cookie-content {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 1rem;
  padding: 0.85rem 1.1rem;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow: 0 18px 46px rgba(15,23,42,0.9);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.83rem;
  color: #e5e7eb;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    inset-inline: 0;
    top: 72px;
    background: rgba(15,23,42,0.98);
    border-bottom: 1px solid rgba(148,163,184,0.2);
    flex-direction: column;
    padding: 0.6rem 1.5rem 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: flex;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    margin-left: 0;
  }
}
