:root {
  --bg: #050816;
  --bg-light: #0f172a;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.12);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --danger: #f97373;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --shadow-chip: 0 8px 20px rgba(15, 23, 42, 0.8);
  --border-subtle: 1px solid rgba(148, 163, 184, 0.25);
  --blur-bg: blur(18px);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 52%, #000 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.75), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0%, #38bdf8 0, #0ea5e9 35%, #1d4ed8 100%);
  box-shadow: 0 0 0 1px rgba(191, 219, 254, 0.5), 0 14px 30px rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 15px;
  color: #e5f4ff;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}

.nav-link {
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
}

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

.nav-link:hover {
  color: #e5e7eb;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), rgba(15, 23, 42, 0.9));
  box-shadow: var(--shadow-chip);
  cursor: pointer;
}

.nav-cta span.icon {
  font-size: 14px;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px 5px 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  font-size: 11px;
  color: var(--muted);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e 0, #16a34a 50%, #0f172a 100%);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
}

.hero-highlight {
  font-size: 11px;
  color: #e5e7eb;
}

.hero-title {
  font-size: clamp(2.3rem, 3.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.hero-title .accent {
  background: linear-gradient(to right, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 20px;
}

.hero-subtitle strong {
  color: #e5e7eb;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-primary {
  padding: 11px 20px;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: radial-gradient(circle at top left, #38bdf8, #0ea5e9, #2563eb);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.7);
  color: #f9fafb;
}

.btn-secondary {
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.7);
}

.hero-right {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-xl);
  border: var(--border-subtle);
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.24), transparent 55%),
              radial-gradient(circle at 120% 140%, rgba(56, 189, 248, 0.4), rgba(15, 23, 42, 0.98));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.hero-card-title {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.96);
}

.hero-card-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-tile {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.hero-tile-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.8);
  margin-bottom: 6px;
}

.hero-tile-value {
  font-size: 13px;
  font-weight: 600;
}

.hero-tile-sub {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.9);
}

.hero-stats {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hero-stat-chip {
  flex: 1;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(15, 23, 42, 0.9);
  font-size: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(209, 213, 219, 0.96);
}

.hero-stat-chip .value {
  font-weight: 600;
  color: #e5e7eb;
}

.hero-card-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.22), transparent 60%),
    radial-gradient(circle at 130% 120%, rgba(56, 189, 248, 0.34), transparent 55%);
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  bottom: -6px;
  right: 4px;
  transform: translateY(20%);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.98);
  padding: 10px 12px;
  font-size: 11px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
  max-width: 220px;
}

.hero-floating-card-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 4px;
}

.hero-floating-card-body {
  color: rgba(226, 232, 240, 0.96);
  margin-bottom: 6px;
}

.hero-floating-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: rgba(148, 163, 184, 0.9);
}

.hero-floating-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(to right, #22c55e, #a3e635);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.32);
}

/* SECTIONS */

section {
  margin-top: 52px;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.85);
  margin-bottom: 8px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 13px;
  color: var(--muted);
  max-width: 360px;
}

/* FEATURES */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), #020617);
  padding: 14px 14px 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: radial-gradient(circle at top, #38bdf8, #1d4ed8);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.8);
  margin-bottom: 10px;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

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

.feature-meta {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.95);
}

/* SOCIAL PROOF */

.social-proof {
  margin-top: 40px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #020617;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  margin-left: -8px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.9);
}

.avatar:first-child {
  margin-left: 0;
}

.social-proof-strong {
  color: #e5e7eb;
  font-weight: 500;
}

/* CONTACT */

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
}

.contact-copy {
  font-size: 14px;
  color: var(--muted);
  max-width: 380px;
}

.contact-copy strong {
  color: #e5e7eb;
  font-weight: 500;
}

.contact-highlights {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(209, 213, 219, 0.96);
}

.contact-highlight-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-pill {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: rgba(209, 213, 219, 0.95);
  background: rgba(15, 23, 42, 0.85);
}

.contact-form-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  padding: 18px 18px 14px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.98);
}

.contact-form-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

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

label {
  color: rgba(209, 213, 219, 0.98);
}

input,
textarea {
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  padding: 7px 9px;
  color: #e5e7eb;
  font-size: 13px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
}

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

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.form-hint {
  font-size: 10px;
  color: var(--muted);
  max-width: 210px;
}

.form-submit {
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: radial-gradient(circle at top left, #38bdf8, #0ea5e9, #2563eb);
  color: #f9fafb;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.9);
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 18px 20px 26px;
  margin-top: 40px;
  font-size: 11px;
  color: var(--muted);
  background: radial-gradient(circle at bottom, #020617, #000);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

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

.footer-links a {
  cursor: pointer;
}

.footer-links a:hover {
  color: #e5e7eb;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 640px) {
  .header-inner {
    padding-inline: 16px;
  }

  nav {
    display: none;
  }

  .hero {
    margin-top: 28px;
  }

  .section-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .social-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-card {
    padding: 14px;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  footer {
    padding-inline: 16px;
  }
}


.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: radial-gradient(circle at top left, #25d366, #128c7e);
  color: #f0fff4;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.55);
}


/* LEGAL / IMPRESSUM */

.legal {
  margin-top: 48px;
  margin-bottom: 60px;
}

.legal-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 24px 30px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), #020617);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  line-height: 1.7;
  font-size: 14px;
}

.legal-card h1 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.legal-card h2,
.legal-card h3,
.legal-card strong {
  font-weight: 600;
  color: #e5e7eb;
}

.legal-card p {
  margin-bottom: 0.9rem;
  color: #cbd5f5;
}

.legal-card p strong {
  color: #e5e7eb;
}

.legal-card a {
  color: #38bdf8;
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-card hr {
  border: none;
  border-top: 1px solid rgba(148, 163, 184, 0.45);
  margin: 16px 0 10px;
}

@media (max-width: 640px) {
  .legal-card {
    padding: 22px 16px 24px;
    border-radius: 18px;
    font-size: 13px;
  }

  .legal-card h1 {
    font-size: 1.4rem;
  }
}
