:root {
  --bg: #07111f;
  --bg-soft: #0d1a2b;
  --surface: rgba(10, 21, 37, 0.78);
  --surface-strong: #101f33;
  --card: #f7f8fb;
  --text: #eaf1f7;
  --text-muted: #9fb0c3;
  --heading: #ffffff;
  --accent: #5dd6c0;
  --accent-strong: #1fb79c;
  --accent-warm: #f2b35d;
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(93, 214, 192, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(242, 179, 93, 0.12), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #0b1728 48%, #0f2034 100%);
}

body.light-page {
  background:
    radial-gradient(circle at top left, rgba(93, 214, 192, 0.12), transparent 24%),
    linear-gradient(180deg, #eef4f8 0%, #f7fafc 100%);
  color: #14202d;
}

a {
  color: inherit;
}

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

.site-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid var(--line);
}

.site-header.light {
  background: rgba(247, 250, 252, 0.82);
  border-bottom-color: rgba(16, 31, 51, 0.08);
}

.site-header.light .nav-links a {
  color: #5d6d7f;
}

.site-header.light .nav-links a:hover,
.site-header.light .nav-links a.active {
  color: #102034;
}

.site-header.light .brand-subtitle {
  color: #6a7c8f;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(93, 214, 192, 0.18), rgba(242, 179, 93, 0.16));
  padding: 7px;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--heading);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #04111e;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(31, 183, 156, 0.34);
}

.hero {
  padding: 72px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero-panel,
.floating-card,
.section-panel,
.info-card,
.legal-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 19, 33, 0.84);
  padding: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(93, 214, 192, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.02;
  color: var(--heading);
}

.hero p,
.page-hero p,
.section-copy,
.feature-list li,
.check-list li,
.legal-card p,
.legal-card li,
.contact-list li {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #04111e;
  box-shadow: 0 16px 38px rgba(31, 183, 156, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--heading);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stat-card {
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.floating-card {
  background: linear-gradient(180deg, rgba(13, 26, 43, 0.95), rgba(7, 17, 31, 0.95));
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(242, 179, 93, 0.22), transparent 70%);
}

.panel-label {
  color: var(--accent-warm);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.panel-box {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-box h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 1.05rem;
}

.panel-box p {
  margin: 0;
}

.feature-strip,
.cards-grid,
.trust-grid,
.page-grid,
.cta-grid {
  display: grid;
  gap: 20px;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 20px 0 6px;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 22px;
}

.info-card h3 {
  margin: 14px 0 10px;
  color: var(--heading);
  font-size: 1.05rem;
}

.info-card p {
  margin: 0;
  color: var(--text-muted);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(93, 214, 192, 0.18), rgba(242, 179, 93, 0.16));
  color: var(--heading);
  font-size: 1.25rem;
}

.section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head h2,
.section-panel h2,
.legal-card h1,
.legal-card h2,
.contact-card h1,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--heading);
}

.section-panel {
  background: rgba(255, 255, 255, 0.04);
  padding: 30px;
}

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

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

.service-card,
.trust-card,
.contact-card,
.legal-card,
.cta-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.service-card,
.trust-card,
.cta-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
}

.service-card h3,
.trust-card h3,
.cta-card h3 {
  margin: 18px 0 10px;
  color: var(--heading);
}

.kicker {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.check-list,
.feature-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.check-list li,
.feature-list li,
.contact-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.check-list li::before,
.feature-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(93, 214, 192, 0.12);
}

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

.page-hero {
  padding: 56px 0 22px;
}

.light-page .page-hero h1,
.light-page .page-hero h2,
.light-page .section-head h2 {
  color: #102034;
}

.light-page .page-hero p,
.light-page .section-copy {
  color: #56697c;
}

.light-page .eyebrow {
  background: rgba(16, 128, 111, 0.1);
  color: #0d806f;
}

.page-grid {
  align-items: start;
}

.contact-card,
.legal-card {
  background: #ffffff;
  color: #14202d;
  border: 1px solid rgba(16, 31, 51, 0.08);
  box-shadow: 0 20px 50px rgba(10, 29, 49, 0.12);
}

.contact-card h1,
.contact-card h2,
.legal-card h1,
.legal-card h2 {
  color: #102034;
}

.contact-card p,
.legal-card p,
.legal-card li,
.contact-card li {
  color: #46586b;
}

.contact-card a,
.legal-card a {
  color: #0d806f;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #102034;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 31, 51, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #102034;
  background: #f8fafc;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #14a850);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.soft-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  color: var(--accent-strong);
}

.legal-card {
  padding: 34px;
}

.legal-card section + section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 31, 51, 0.08);
}

.legal-meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 31, 51, 0.08);
  color: #6c7d8d;
  font-size: 0.95rem;
}

.cta-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.cta-card strong {
  color: var(--heading);
}

.site-footer {
  padding: 38px 0 44px;
  color: var(--text-muted);
}

.light-page .site-footer {
  color: #617386;
}

.light-page .footer-grid {
  border-top-color: rgba(16, 31, 51, 0.08);
}

.light-page .footer-links a {
  color: #617386;
}

.light-page .footer-links a:hover {
  color: #102034;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--heading);
}

@media (max-width: 980px) {
  .hero-grid,
  .cards-grid,
  .trust-grid,
  .page-grid,
  .cta-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .hero-panel,
  .floating-card,
  .section-panel,
  .service-card,
  .trust-card,
  .contact-card,
  .legal-card,
  .cta-card {
    padding: 22px;
    border-radius: 22px;
  }

  .header-cta,
  .btn {
    width: 100%;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }
}
