:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f0f10;
  --muted: #5f5f66;
  --border: #e7e7ea;
  --soft: #f4f5f7;
  --primary: #1e5bff;
  --shadow: 0 24px 60px rgba(15, 15, 16, 0.08);
  --radius-lg: 28px;
  --radius-md: 16px;
  --section-pad: clamp(56px, 6vw, 96px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.risk-bar {
  background: #4b4b57;
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 10px 24px;
  text-align: center;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 36px;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
}

.main-nav {
  display: flex;
  gap: 20px;
  font-size: 1rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lang-select select {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow);
}


.btn-outline {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  box-shadow: none;
}

.privacy-link {
  padding-top: 12px;
}

.privacy-cta {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  padding: 10px 0 0;
  background: transparent;
}

.privacy-cta p {
  margin: 0;
  color: var(--muted);
}

.privacy-cta .btn {
  width: auto;
}

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  padding: var(--section-pad) 0 26px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.title {
  color: var(--primary);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  margin: 12px 0;
  line-height: 1.05;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 10px;
}

.hero-actions {
  margin-top: 18px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.hero-media {
  width: min(520px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.stock-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  background: var(--soft);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 91, 255, 0.6);
  box-shadow: 0 10px 22px rgba(30, 91, 255, 0.2);
}

.section {
  padding: var(--section-pad) 0;
  scroll-margin-top: 120px;
}

.section + .section {
  margin-top: 28px;
}

.section-alt {
  background: #f3f4f6;
  margin: 0;
  padding: var(--section-pad) 24px;
  border-radius: 32px;
  border: 1px solid #e1e3e9;
  box-shadow: 0 24px 50px rgba(15, 15, 16, 0.06);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
}

.section-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.benefit-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.04);
}

.benefit-card h3 {
  margin: 0 0 8px;
  color: var(--primary);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.checklist li::before {
  content: "✔";
  margin-right: 8px;
  color: var(--primary);
}

.section-visual {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.media-card {
  width: min(520px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}


.media-card a,
.hero-media a {
  display: block;
}

.media-card a:hover img,
.hero-media a:hover img {
  transform: scale(1.01);
}

.media-card img,
.hero-media img {
  transition: transform 0.2s ease;
}


.media-card--xl {
  width: min(640px, 100%);
  box-shadow: 0 30px 70px rgba(15, 15, 16, 0.12);
}

.highlight-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.highlight-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--surface);
  color: var(--muted);
}

.form-section {
  padding-bottom: 20px;
}

.form-section.section-alt {
  background: transparent;
  margin: 0;
  padding: var(--section-pad) 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.form-card {
  border: 1px solid #e1e3e9;
  border-radius: 32px;
  padding: 40px;
  background: #f3f4f6;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 1.05fr);
  gap: 28px;
  box-shadow: 0 24px 50px rgba(15, 15, 16, 0.08);
}

.form-copy p {
  color: var(--muted);
}

.form-points {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e2e4ea;
  box-shadow: 0 10px 26px rgba(15, 15, 16, 0.06);
}

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

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.lead-form input,
.lead-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--text);
}

.lead-form button {
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
  z-index: 1000;
}

.whatsapp-button:hover {
  filter: brightness(0.95);
}

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

@media (max-width: 1100px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .media-card--xl {
    width: 100%;
  }

  .page {
    padding: 16px;
  }

  .section {
    padding: 44px 0;
  }

  .section-alt {
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 26px;
  }

  .stock-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }


  .form-card {
    padding: 20px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
  }

  .main-nav {
    font-size: 0.85rem;
  }
}


/* mobile-header */
@media (max-width: 600px) {
  .risk-bar {
    font-size: 0.74rem;
    padding: 8px 16px;
  }

  .site-header {
    align-items: flex-start;
    gap: 12px;
    padding: 18px 0 20px;
  }

  .logo {
    width: 100%;
  }

  .logo-img {
    width: 56px;
    height: 56px;
  }

  .main-nav {
    width: 100%;
    row-gap: 12px;
    column-gap: 14px;
    font-size: 0.88rem;
    justify-content: flex-start;
  }

  .header-actions {
    width: 100%;
    display: grid;
    gap: 12px;
  }

  .lang-select {
    width: auto;
  }

  .lang-select select {
    padding: 10px 12px;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}


/* form-mobile */
@media (max-width: 600px) {

  .form-card {
    padding: 22px;
    border-radius: 26px;
    gap: 18px;
  }

  .form-copy {
    text-align: left;
  }

  .lead-form {
    padding: 18px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form label {
    font-size: 0.9rem;
  }

  .lead-form input,
  .lead-form select {
    width: 100%;
  }

  .lead-form button {
    width: 100%;
    padding: 14px;
  }

  .form-note {
    text-align: left;
  }
}


.privacy-content {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.privacy-content h1 {
  margin-top: 0;
}

.privacy-content h2 {
  margin: 12px 0 0;
  font-size: 1.25rem;
}

.privacy-content p {
  color: var(--muted);
  line-height: 1.7;
}

