:root {
  --navy: #102133;
  --navy-2: #17324d;
  --gold: #d99a24;
  --gold-2: #f2be4c;
  --ink: #142033;
  --muted: #5d6876;
  --line: #dfe5ec;
  --soft: #f5f7fa;
  --white: #ffffff;
  --page: #ffffff;
  --surface: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.96);
  --footer-bg: #071322;
  --footer-text: #eef4fa;
  --footer-muted: #c8d2dc;
  --nav-text: #102133;
  --hero-copy: #e8eef5;
  --cta-bg: #102133;
  --cta-text: #ffffff;
  --cta-copy: #dfe7ef;
  --active-link: #9f6b11;
  --icon-bg: rgba(217, 154, 36, 0.14);
  --tiktok-bg: #f5f7fa;
  --shadow: 0 18px 45px rgba(16, 33, 51, 0.13);
  --radius: 8px;
}

[data-theme="dark"] {
  --navy: #e8eef7;
  --navy-2: #d5dfeb;
  --ink: #f1f5f9;
  --muted: #bdc7d4;
  --line: #334155;
  --soft: #111c2b;
  --white: #162235;
  --page: #09111e;
  --surface: #121d2c;
  --header-bg: rgba(9, 17, 30, 0.96);
  --footer-bg: #050b14;
  --footer-text: #f1f5f9;
  --footer-muted: #b8c4d2;
  --nav-text: #eef4fb;
  --hero-copy: #d8e1ec;
  --cta-bg: #102133;
  --cta-text: #f1f5f9;
  --cta-copy: #dce5ee;
  --active-link: #f2be4c;
  --icon-bg: rgba(242, 190, 76, 0.16);
  --tiktok-bg: #0e1725;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--nav-text);
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.nav-links {
  display: none;
  position: absolute;
  inset: 72px 16px auto 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-links.is-open {
  display: grid;
  gap: 12px;
}

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

.nav-links a[aria-current="page"] {
  color: var(--active-link);
}

.language-switch {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.language-switch a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.language-switch img {
  display: block;
  width: 30px;
  height: 22px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(16, 33, 51, 0.16);
}

.nav-toggle,
.theme-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--nav-text);
}

.nav-toggle {
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--nav-text);
}

.theme-toggle {
  cursor: pointer;
  font-size: 1rem;
}

.theme-toggle-icon::before {
  content: "☾";
}

[data-theme="dark"] .theme-toggle-icon::before {
  content: "☼";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 64px 0;
}

.section-tight {
  padding-top: 48px;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 33, 51, 0.98), rgba(23, 50, 77, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.05) 28px 29px);
}

[data-theme="dark"] .hero {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(5, 11, 20, 0.99), rgba(16, 33, 51, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.06) 28px 29px);
}

.hero-grid,
.trust-grid,
.cta-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  color: #ffffff;
}

.page-hero h1 {
  color: var(--navy);
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: inherit;
}

.hero .lead {
  color: var(--hero-copy);
}

[data-theme="dark"] .hero .lead {
  color: #dce6f2;
}

[data-theme="dark"] .page-hero .lead {
  color: #c9d4e2;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #111827;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-2);
}

.btn-secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(217, 154, 36, 0.12);
}

.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  background: var(--gold);
  color: #111827 !important;
}

.hero-panel {
  display: grid;
  align-content: end;
  gap: 14px;
}

.site-card,
.feature-card,
.service-item,
.contact-card,
.process article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 33, 51, 0.08);
}

.main-card {
  padding: 28px;
  color: var(--ink);
}

.main-card h2,
.feature-card h3,
.service-item h2,
.process h2,
.contact-card h2 {
  margin: 10px 0 8px;
  line-height: 1.2;
  font-size: 1.18rem;
}

.main-card p,
.feature-card p,
.service-item p,
.process p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--icon-bg);
  color: #9f6b11;
  font-weight: 900;
}

.stat-strip {
  display: grid;
  gap: 8px;
}

.stat-strip span {
  display: block;
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: #f6f8fb;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.trust-grid h2,
.cta-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.trust-grid p,
.cta-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.card-grid,
.video-grid,
.service-list,
.process {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 22px;
}

.trust-band {
  background: var(--soft);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #111827;
  font-size: 0.8rem;
}

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

.tiktok-embed {
  width: 100%;
  min-height: 560px;
  margin: 0 auto !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tiktok-bg);
}

.center-action {
  margin-top: 28px;
  text-align: center;
}

.text-link {
  color: #9f6b11;
  font-weight: 800;
}

.cta-band {
  background: #102133;
  color: #ffffff;
}

[data-theme="dark"] .cta-band {
  background: #102133;
  color: #f1f5f9;
}

.cta-grid {
  align-items: center;
}

.cta-grid h2,
.cta-grid p {
  color: inherit;
}

.cta-grid p {
  color: #dfe7ef;
}

[data-theme="dark"] .cta-grid p {
  color: #dce5ee;
}

.page-hero {
  background:
    linear-gradient(180deg, var(--soft), var(--page));
  border-bottom: 1px solid var(--line);
}

[data-theme="dark"] .page-hero {
  background:
    linear-gradient(180deg, #0f1a2a, #09111e);
}

.page-hero .lead {
  color: var(--muted);
  margin-bottom: 26px;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
}

.process {
  counter-reset: steps;
}

.process article {
  padding: 22px;
}

.process span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #102133;
  color: var(--gold-2);
  font-weight: 900;
}

.contact-card {
  padding: 24px;
}

.reviews-notice {
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
}

.reviews-notice h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.25rem;
}

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

.reviews-thread {
  min-height: 260px;
  margin-top: 28px;
}

.contact-card a,
.site-footer a {
  color: inherit;
}

.site-footer {
  padding: 36px 0 82px;
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--footer-muted);
}

.legal-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 210, 220, 0.22);
}

.legal-note p {
  max-width: 900px;
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #25d366;
  color: #071322;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

@media (min-width: 700px) {
  .card-grid,
  .video-grid,
  .service-list,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
    align-items: center;
  }

  .trust-grid,
  .cta-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  }

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

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

  .section {
    padding: 88px 0;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .btn {
    width: 100%;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
  }

  .tiktok-embed {
    min-width: 0 !important;
  }
}
