﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --bg: #f2f7ff;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --ink: #13233f;
  --ink-muted: #455a7c;
  --brand: #0f67d2;
  --brand-strong: #0b4ea5;
  --accent: #18a999;
  --accent-soft: #daf6f2;
  --warning: #b77712;
  --danger: #c83c4a;
  --line: #d8e2f0;
  --shadow-lg: 0 24px 52px rgba(8, 33, 74, 0.14);
  --shadow-md: 0 12px 26px rgba(8, 33, 74, 0.1);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 5%, rgba(24, 169, 153, 0.12), transparent 36%),
    radial-gradient(circle at 90% 10%, rgba(15, 103, 210, 0.14), transparent 33%),
    var(--bg);
}

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

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

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-inline: 1.1rem;
}

.section {
  padding-block: 4.4rem;
}

.section-title {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.section-subtitle {
  max-width: 710px;
  margin: 0 0 2rem;
  color: var(--ink-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 1.2rem;
  height: 2px;
  background: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 247, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(21, 46, 94, 0.12);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  height: 58px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: #2b4269;
  font-size: 0.94rem;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--ink);
  background: rgba(16, 85, 175, 0.1);
}

.nav-links .nav-cta {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
  background: var(--brand-strong);
  color: #fff;
}

.nav-links .nav-portal {
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--ink);
  font-weight: 600;
}

.nav-links .nav-portal:hover,
.nav-links .nav-portal:focus {
  background: rgba(212, 175, 55, 0.18);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 10px;
  background: rgba(20, 15, 10, 0.84);
  padding: 9px 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0 auto 6px;
  background: #f0d48c;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  padding-block: 4.5rem 3.4rem;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.hero p {
  max-width: 650px;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--ink-muted);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.18rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 18px 36px rgba(12, 81, 173, 0.28);
}

.btn-secondary {
  background: #fff;
  color: var(--brand-strong);
  border: 1px solid rgba(16, 87, 179, 0.26);
}

.hero-panel {
  background: linear-gradient(150deg, #0f4a95, #123169 70%);
  color: #eaf1ff;
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow-lg);
}

.hero-panel h2 {
  margin: 0 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.hero-panel p {
  margin: 0 0 1rem;
  color: rgba(234, 241, 255, 0.88);
  font-size: 0.95rem;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.56rem;
}

.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.hero-list li::before {
  content: "";
  width: 0.54rem;
  height: 0.54rem;
  margin-top: 0.45rem;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}

.metrics {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}

.metrics li {
  background: #fff;
  border: 1px solid rgba(17, 69, 145, 0.14);
  border-radius: var(--radius-md);
  padding: 0.85rem;
}

.metrics strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  color: var(--brand-strong);
}

.metrics span {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(20, 49, 99, 0.06);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.16rem;
}

.card p {
  color: var(--ink-muted);
  margin-bottom: 0;
}

.compare {
  display: grid;
  gap: 1rem;
}

.compare .card {
  padding: 1.15rem;
}

.compare-title {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.52rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #2f4770;
}

.compare-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.42rem;
  flex: none;
  border-radius: 50%;
}

.compare-list.negative li::before {
  background: #d57f88;
}

.compare-list.positive li::before {
  background: #1ab09c;
}

.steps {
  counter-reset: flow;
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.steps li {
  counter-increment: flow;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1rem 1rem 3.2rem;
  position: relative;
}

.steps li::before {
  content: counter(flow);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #2e89f1);
  font-size: 0.86rem;
}

.steps strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.28rem;
}

.steps span {
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.plan-card {
  background: var(--surface);
  border: 1px solid rgba(11, 78, 165, 0.2);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  overflow: hidden;
  box-shadow: 0 14px 24px rgba(14, 50, 104, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.34);
  border-color: rgba(212, 175, 55, 0.66);
}

.plan-head {
  padding: 1.2rem 1.2rem 0.9rem;
}

.plan-name {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.plan-tag {
  margin-top: 0.3rem;
  display: inline-flex;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent-soft);
  color: #096f63;
}

.plan-desc {
  margin: 0.65rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.plan-price {
  padding: 0 1.2rem 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}

.plan-price span {
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-family: "Outfit", sans-serif;
}

.plan-body {
  padding: 0 1.2rem 0.8rem;
}

.plan-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.52rem;
}

.plan-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #2e4874;
  font-size: 0.94rem;
}

.plan-body li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  flex: none;
  background: #1cb59f;
}

.plan-legal {
  margin: 0 1.2rem 1rem;
  border: 1px solid rgba(24, 169, 153, 0.35);
  background: #f2fbf9;
  border-radius: 11px;
  padding: 0.8rem;
}

.plan-legal h4 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  color: #0c6f64;
}

.plan-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.34rem;
}

.plan-legal li {
  color: #355372;
  font-size: 0.84rem;
  line-height: 1.4;
}

.plan-foot {
  padding: 0 1.2rem 1.25rem;
}

.plan-foot-actions {
  display: grid;
  gap: 0.55rem;
}

.plan-highlight {
  border-color: rgba(11, 78, 165, 0.48);
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  position: relative;
}

.plan-highlight::after {
  content: "Le plus choisi";
  position: absolute;
  right: 0.9rem;
  top: 0.8rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
}

.notice {
  border-left: 4px solid var(--warning);
  background: #fff8eb;
  padding: 0.95rem 1rem;
  border-radius: 0 12px 12px 0;
  color: #6c4d1d;
  font-size: 0.92rem;
}

.testimonials {
  display: grid;
  gap: 1rem;
}

.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
}

.quote p {
  color: #2d446d;
  margin-bottom: 0.7rem;
}

.quote cite {
  font-style: normal;
  font-weight: 600;
  color: #0b4ea5;
  font-size: 0.9rem;
}

.faq {
  display: grid;
  gap: 0.72rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #15376a;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0.52rem 0 0;
  color: var(--ink-muted);
  font-size: 0.93rem;
}

.cta-band {
  background: linear-gradient(135deg, #0f4da2, #1c77dd);
  color: #ebf3ff;
  border-radius: var(--radius-xl);
  padding: 1.55rem;
  box-shadow: var(--shadow-lg);
}

.cta-band h3 {
  margin: 0 0 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
}

.cta-band p {
  margin: 0 0 1rem;
  color: rgba(235, 243, 255, 0.9);
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  padding-block: 3.5rem 2.5rem;
}

.page-hero .title {
  margin: 0 0 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
}

.page-hero .intro {
  max-width: 780px;
  color: var(--ink-muted);
}

.timeline {
  counter-reset: flowpage;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.timeline li {
  counter-increment: flowpage;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1rem 1rem 3.2rem;
  position: relative;
}

.timeline li::before {
  content: counter(flowpage);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #1c7adc, #0b4ea5);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.timeline h3 {
  margin: 0 0 0.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.timeline p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.93rem;
}

.legal {
  display: grid;
  gap: 1rem;
}

.legal article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.legal h2 {
  margin: 0 0 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.legal p,
.legal li {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.legal ul {
  margin-top: 0.6rem;
}

.highlight-box {
  border: 1px dashed rgba(11, 78, 165, 0.38);
  background: #f6f9ff;
  border-radius: 12px;
  padding: 0.85rem;
}

.checkout-layout {
  display: grid;
  gap: 1rem;
}

.checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.checkout-card h2 {
  margin: 0 0 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 0.8rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #1e3b67;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d8ea;
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

textarea {
  min-height: 120px;
}

.inline {
  display: flex;
  align-items: flex-start;
  gap: 0.58rem;
  font-size: 0.9rem;
  color: #355072;
}

.inline input {
  margin-top: 0.17rem;
  width: 18px;
  height: 18px;
}

.radio-row {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.radio-card {
  border: 1px solid #ccdaeb;
  border-radius: 11px;
  padding: 0.7rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.radio-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.radio-card small {
  color: var(--ink-muted);
  display: block;
}

.checkout-summary {
  background: #f7fbff;
  border: 1px solid #d0dded;
  border-radius: 12px;
  padding: 0.9rem;
}

.checkout-summary dl {
  margin: 0;
}

.checkout-summary .row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.36rem 0;
  border-bottom: 1px solid #e2ecf7;
}

.checkout-summary .row:last-child {
  border-bottom: 0;
  font-weight: 700;
}

.checkout-summary dt {
  color: #395373;
}

.checkout-summary dd {
  margin: 0;
}

.alert {
  margin-top: 0.8rem;
  border-radius: 10px;
  padding: 0.75rem;
  font-size: 0.9rem;
}

.alert-success {
  border: 1px solid #8ed6bf;
  background: #eafbf4;
  color: #0d6c4f;
}

.alert-error {
  border: 1px solid #efadb6;
  background: #ffeff1;
  color: #922c39;
}

.footer {
  margin-top: 4rem;
  background: #0f1f38;
  color: #dce8ff;
  padding-block: 2.2rem;
}

.footer-grid {
  display: grid;
  gap: 0.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(238, 244, 255, 0.11);
  font-size: 0.86rem;
}

.footer p {
  margin: 0;
  color: rgba(220, 232, 255, 0.83);
  font-size: 0.88rem;
}

.hidden {
  display: none;
}

.muted {
  color: var(--ink-muted);
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.2rem;
  }

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

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

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

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

  .plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

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

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

  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

@media (max-width: 759px) {
  .nav {
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding-block: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  .nav nav {
    width: 100%;
    order: 3;
  }

  .nav-links {
    width: 100%;
    display: none;
    justify-content: flex-start;
    margin-top: 0.7rem;
    padding: 0.65rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(17, 13, 9, 0.96);
    gap: 0.4rem;
  }

  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links a {
    width: 100%;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .section {
    padding-block: 3.6rem;
  }
}

/* BATITECH logo harmony theme (anthracite + gold) */
:root {
  --bg: #0b0a08;
  --surface: #16130f;
  --surface-soft: #1d1812;
  --ink: #f2e3bd;
  --ink-muted: #c9b488;
  --brand: #d4af37;
  --brand-strong: #b8861f;
  --accent: #eecb72;
  --accent-soft: #2b2111;
  --warning: #e2b451;
  --danger: #ce6b63;
  --line: #3e3120;
  --shadow-lg: 0 24px 52px rgba(0, 0, 0, 0.46);
  --shadow-md: 0 12px 26px rgba(0, 0, 0, 0.34);
}

body {
  background:
    radial-gradient(circle at 12% 2%, rgba(212, 175, 55, 0.14), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(255, 221, 142, 0.07), transparent 32%),
    var(--bg);
}

.site-header {
  background: rgba(12, 10, 8, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.26);
}

.nav-links a {
  color: #dcc69a;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--ink);
  background: rgba(212, 175, 55, 0.13);
}

.nav-links .nav-cta {
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  color: #19140d;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
  background: linear-gradient(140deg, #e4c467, #c08f28);
  color: #130f09;
}

.btn-primary {
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  color: #19140d;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

.btn-secondary {
  background: #1a150f;
  color: var(--ink);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.hero-panel {
  background: linear-gradient(150deg, #1d1711, #110f0c 70%);
  color: var(--ink);
  border: 1px solid rgba(212, 175, 55, 0.26);
}

.hero-panel p {
  color: #d9c69c;
}

.metrics li,
.card,
.quote,
.faq details,
.timeline li,
.legal article,
.checkout-card,
.plan-card,
.steps li {
  background: var(--surface);
  border-color: var(--line);
}

.card,
.plan-card,
.quote {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.card p,
.plan-body li,
.compare-list li,
.quote p,
.faq p,
.timeline p,
.legal p,
.legal li,
.inline,
.radio-card small,
.checkout-summary dt,
.notice,
.highlight-box .muted,
.muted {
  color: var(--ink-muted);
}

.metrics li {
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.compare-list.negative li::before {
  background: #b6635f;
}

.compare-list.positive li::before,
.plan-body li::before {
  background: var(--brand);
}

.steps li::before,
.timeline li::before {
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  color: #19140d;
}

.plan-card {
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.plan-tag {
  background: #35270f;
  color: #f1cf7f;
}

.plan-price span {
  color: var(--ink-muted);
}

.plan-legal {
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: #1e170d;
}

.plan-legal h4,
.quote cite,
.faq summary,
label,
.checkout-card h2,
.timeline h3,
.legal h2,
.section-title,
.page-hero .title {
  color: #f0d48c;
}

.plan-legal li {
  color: #d2bc8f;
}

.plan-highlight {
  border-color: rgba(212, 175, 55, 0.72);
  background: linear-gradient(180deg, #1e170e, #16120d);
}

.plan-highlight::after {
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  color: #1a140b;
}

.notice {
  border-left: 4px solid var(--warning);
  background: #241b0f;
}

.cta-band {
  background: linear-gradient(135deg, #20180d, #3c2b11);
  color: #f5dfad;
}

.cta-band p {
  color: rgba(245, 223, 173, 0.92);
}

.cta-band .btn-secondary {
  border-color: rgba(212, 175, 55, 0.65);
  color: #f5dfad;
  background: rgba(212, 175, 55, 0.14);
}

.highlight-box {
  border: 1px dashed rgba(212, 175, 55, 0.45);
  background: #1c150b;
}

input,
select,
textarea {
  border: 1px solid #5a4525;
  background: #100e0b;
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: #9f8a60;
}

.radio-card {
  border: 1px solid #5a4525;
  background: #17130d;
}

.checkout-summary {
  background: #1a150f;
  border: 1px solid #5a4525;
}

.checkout-summary .row {
  border-bottom: 1px solid #3d2f1a;
}

.alert-success {
  border: 1px solid #729a74;
  background: #172015;
  color: #bfd6c0;
}

.alert-error {
  border: 1px solid #99635f;
  background: #261715;
  color: #f2b6b0;
}

.footer {
  background: #090806;
  color: #d7c49a;
}

.footer-links a {
  background: rgba(212, 175, 55, 0.14);
  color: #f2ddb0;
}

.footer p {
  color: #b9a176;
}

/* Visual sections: images + pictograms */
.hero-stack {
  display: grid;
  gap: 1rem;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  min-height: 260px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.9);
}

.media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.84));
  color: #f2ddb0;
  font-size: 0.9rem;
}

.activity-grid {
  display: grid;
  gap: 1rem;
}

.activity-card {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52);
}

.activity-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.88));
}

.activity-content h3 {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  color: #f0d48c;
}

.activity-content p {
  margin: 0;
  color: #ccb98c;
  font-size: 0.92rem;
}

.icon-grid {
  display: grid;
  gap: 0.9rem;
}

.icon-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.icon-card img {
  width: 44px;
  height: 44px;
}

.icon-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: #f0d48c;
}

.icon-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.inline-image {
  margin-top: 0.8rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.24);
}

.inline-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: brightness(0.6);
}

.security-banner-section {
  padding-top: 1rem;
}

.security-banner {
  position: relative;
  min-height: clamp(360px, 54vh, 560px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: var(--shadow-lg);
}

.security-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.46) saturate(0.9);
}

.security-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5, 4, 3, 0.78) 24%, rgba(5, 4, 3, 0.26) 74%),
    radial-gradient(circle at 82% 16%, rgba(212, 175, 55, 0.2), transparent 42%);
}

.security-banner-content {
  position: absolute;
  inset: auto auto 0 0;
  z-index: 1;
  max-width: 740px;
  padding: clamp(1.3rem, 3.8vw, 2.5rem);
}

.security-banner-content .eyebrow {
  color: #f2ddb0;
}

.security-banner-content .eyebrow::before {
  background: #eecb72;
}

.security-banner-content h2 {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  line-height: 1.14;
  color: #f6e6be;
}

.security-banner-content p {
  margin: 0;
  max-width: 62ch;
  color: rgba(244, 226, 181, 0.94);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
}

.services-included-section {
  position: relative;
  background-image: linear-gradient(rgba(10, 8, 6, 0.78), rgba(10, 8, 6, 0.82)), url("services.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-included-section .section-subtitle {
  color: #dcc598;
}

.services-included-section .icon-card {
  background: rgba(23, 18, 13, 0.78);
  backdrop-filter: blur(2px);
  border-color: rgba(212, 175, 55, 0.34);
}

@media (max-width: 1024px) {
  .services-included-section {
    background-attachment: scroll;
  }
}

/* Checkout pro modal + payment state */
.checkout-headline {
  margin-bottom: 1rem;
  color: var(--ink-muted);
}

.payment-disabled {
  opacity: 0.52;
  border-style: dashed;
  cursor: not-allowed;
}

.payment-disabled input {
  cursor: not-allowed;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.76rem;
  color: #cdb88a;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.7);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal-overlay.hidden {
  display: none;
}

.modal-card {
  width: min(100%, 520px);
  background: #17130e;
  border: 1px solid rgba(212, 175, 55, 0.33);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.54);
}

.modal-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  color: #f0d48c;
}

.modal-card p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.modal-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

.modal-open {
  overflow: hidden;
}

@media (min-width: 760px) {
  .hero-stack {
    grid-template-rows: 1fr auto;
  }

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

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

/* Motion and Parallax */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax-layer {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .parallax-layer {
    transform: none !important;
  }
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.65rem 0 0.35rem;
}

.payment-logos img {
  width: 74px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Homepage: keep existing sections, adjust text layout + background image */
.home-hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(108deg, rgba(8, 6, 4, 0.84) 26%, rgba(8, 6, 4, 0.58) 62%, rgba(8, 6, 4, 0.72) 100%),
    url("controle.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-grid-home {
  align-items: stretch;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.home-hero .hero-copy {
  width: 100%;
  max-width: none;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: 16px;
  background: rgba(20, 15, 10, 0.48);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.home-hero h1 {
  color: #f6e6bf;
}

.home-hero p {
  color: #dbc79d;
}

.home-hero .metrics li {
  background: rgba(22, 17, 12, 0.86);
  border-color: rgba(212, 175, 55, 0.26);
}

@media (max-width: 1024px) {
  .home-hero {
    background-attachment: scroll;
  }
}

