:root {
  --bg: #020617;
  --panel: #0f172a;
  --card: #111827;
  --accent: #22d3ee;
  --text: #ffffff;
  --text-soft: #cbd5e1;
  --whatsapp: #16a34a;
  --border: rgba(255,255,255,.12);
  --shadow: 0 20px 50px rgba(0,0,0,.28);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(2, 6, 23, .85);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
}
.hero-logo {
  display: block;
  width: min(260px, 72%);
  max-height: 96px;
  object-fit: contain;
  margin-top: 20px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.22));
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--accent);
}
.brand h1, .brand h2, .brand p { margin: 0; }
.brand-name {
  color: var(--accent);
  font-size: 28px;
  font-weight: 800;
}
.brand-tagline {
  color: var(--text-soft);
  font-size: 14px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a:not(.btn) {
  color: var(--text-soft);
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 800;
  transition: .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--whatsapp);
  color: #fff;
}
.btn-secondary {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid var(--border);
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .28;
  pointer-events: none;
}
.hero::before {
  width: 260px;
  height: 260px;
  background: var(--accent);
  top: -80px;
  left: -40px;
}
.hero::after {
  width: 260px;
  height: 260px;
  background: #2563eb;
  right: -80px;
  bottom: -40px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 30px;
  padding: 68px 0 46px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  font-size: 14px;
  font-weight: 800;
}
.hero-kicker {
  margin: 22px 0 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-title {
  margin: 12px 0 0;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.04;
}
.hero-text {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.benefits {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.benefit {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: #e5eef8;
  font-weight: 700;
}
.panel {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.panel-inner {
  background: rgba(0,0,0,.18);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}
.panel-title {
  margin: 0;
  font-size: 30px;
}
.panel-subtitle {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.form-grid {
  display: grid;
  gap: 14px;
}
.field label {
  display: block;
  margin-bottom: 8px;
  color: #e5eef8;
  font-weight: 800;
  font-size: 14px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
}
.section {
  padding: 70px 0;
}
.section-tight {
  padding-top: 16px;
}
.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}
.section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-title {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
}
.section-text {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}
.card-grid {
  display: grid;
  gap: 18px;
}
.services-grid,
.three-grid {
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.service-card,
.info-card,
.testimonial-card,
.support-card,
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.service-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  background: rgba(255,255,255,.04);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  font-size: 26px;
}
.card-title {
  margin: 16px 0 0;
  font-size: 22px;
}
.card-text {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}
.band {
  background: rgba(255,255,255,.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}
.check-list {
  display: grid;
  gap: 12px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
}
.check-mark {
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}
.values-grid,
.support-grid,
.testimonials-grid,
.steps-grid,
.admin-stats {
  display: grid;
  gap: 18px;
}
.values-grid,
.steps-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.testimonials-grid,
.support-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cta-box {
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 20px;
  align-items: center;
}
.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: var(--shadow);
}
.footer {
  padding: 0 0 48px;
  color: var(--text-soft);
}
/* Admin */
.admin-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: 290px 1fr;
  padding: 26px 0 40px;
}
.sidebar,
.admin-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.sidebar {
  padding: 16px;
  position: sticky;
  top: 16px;
  height: fit-content;
}
.sidebar button {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  color: #fff;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 800;
}
.sidebar button.active {
  background: var(--accent);
  color: #082f49;
}
.admin-main {
  display: grid;
  gap: 18px;
}
.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
}
.admin-header p, .admin-header h1 { margin: 0; }
.admin-card { padding: 22px; }
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 14px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4, .admin-stats { grid-template-columns: repeat(4, minmax(0,1fr)); }
.small-note {
  color: var(--text-soft);
  font-size: 14px;
}
.repeat-list {
  display: grid;
  gap: 14px;
}
.item-box {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 22px;
  padding: 16px;
}
.service-preview-wrap {
  margin-top: 14px;
}
.service-preview {
  width: 100%;
  max-width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
}
.item-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
.preview-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.json-box {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  color: #dbeafe;
  max-height: 440px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}
.hidden { display: none !important; }
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .cta-grid,
  .admin-shell,
  .values-grid,
  .steps-grid,
  .testimonials-grid,
  .support-grid,
  .grid-4,
  .admin-stats,
  .services-grid,
  .three-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .nav a:not(.btn) { display: none; }
  .benefits { grid-template-columns: 1fr; }
  .admin-header {
    flex-direction: column;
    align-items: stretch;
  }
  .sidebar {
    position: static;
  }
}
