:root {
  --navy-ink: #0b1330;
  --navy-deep: #060912;
  --navy-panel: #111a3d;
  --surface: #f4f6fb;
  --white: #ffffff;
  --amber: #ffc300;
  --amber-deep: #e6a700;
  --cyan: #00d1ff;
  --cyan-deep: #00a8cc;
  --ink: #10152b;
  --muted: #5b6178;
  --muted-light: #a8aec4;
  --line: #e3e7f1;
  --eco: #22c55e;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-lg: 0 24px 60px -20px rgba(11, 19, 48, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(11, 19, 48, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 195, 0, 0.18);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber);
  color: var(--navy-deep);
  box-shadow: 0 10px 30px -10px rgba(255, 195, 0, 0.55);
}
.btn-amber:hover {
  background: #ffd230;
}
.btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.btn-outline-dark:hover {
  border-color: var(--cyan);
  background: rgba(0, 209, 255, 0.08);
}
.btn-block {
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 18, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.logo .mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: var(--muted-light);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--cyan));
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "JetBrains Mono";
  font-size: 13.5px;
  font-weight: 500;
}
.nav-phone svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
}
.burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: 6px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-links,
  .nav-phone {
    display: none;
  }
  .burger {
    display: block;
  }
}

.page-header {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 64px 0 56px;
  background:
    radial-gradient(
      1000px 500px at 85% -10%,
      rgba(0, 209, 255, 0.16),
      transparent 60%
    ),
    radial-gradient(
      800px 450px at 0% 100%,
      rgba(255, 195, 0, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-ink) 100%);
}
.page-header h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin: 18px 0 14px;
  color: #fff;
  max-width: 680px;
}
.page-header p.lede {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted-light);
  max-width: 540px;
}

section {
  padding: 72px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 920px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--navy-ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
  position: sticky;
  top: 100px;
}
@media (max-width: 920px) {
  .info-card {
    position: static;
    top: auto;
  }
}
.info-card h3 {
  font-size: 13px;
  font-family: "JetBrains Mono";
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 22px;
}
.info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.info-row:first-of-type {
  border-top: none;
}
.info-row svg {
  width: 19px;
  height: 19px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-row .k {
  font-family: "JetBrains Mono";
  font-size: 10.5px;
  color: var(--muted-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.info-row .v {
  font-size: 14.5px;
  color: #fff;
  font-weight: 500;
}
.info-row .v a:hover {
  color: var(--cyan);
}
.info-map {
  margin-top: 26px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.jour-badge {
  margin-top: 24px;
  background: rgba(255, 195, 0, 0.1);
  border: 1px solid rgba(255, 195, 0, 0.3);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.jour-badge svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.jour-badge .t {
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 3px;
}
.jour-badge .d {
  font-size: 12.8px;
  color: var(--muted-light);
  line-height: 1.5;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.form-card h2 {
  font-size: 22px;
  margin-bottom: 6px;
}
.form-card > p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-family: "JetBrains Mono";
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font-family: "Inter";
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field-upload {
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  background: var(--surface);
}
.field-upload svg {
  width: 26px;
  height: 26px;
  color: var(--muted-light);
  margin: 0 auto 10px;
}
.field-note {
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 8px;
}

footer {
  background: var(--navy-deep);
  color: var(--muted-light);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 860px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}
.foot-logo .mark {
  width: 28px;
  height: 28px;
}
.foot-grid p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.foot-grid h4 {
  color: #fff;
  font-family: "JetBrains Mono";
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.foot-grid li {
  margin-bottom: 10px;
  font-size: 14px;
}
.foot-grid a:hover {
  color: #fff;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 13px;
}
.foot-bottom a:hover {
  color: #fff;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 28px -8px rgba(37, 211, 102, 0.55),
    0 4px 10px rgba(11, 19, 48, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px -8px rgba(37, 211, 102, 0.65);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  left: 70px;
  bottom: 14px;
  white-space: nowrap;
  background: var(--navy-ink);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm, 0 8px 24px -12px rgba(11, 19, 48, 0.18));
  opacity: 0;
  transform: translateX(-6px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 640px) {
  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-float .wa-tooltip {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float:hover {
    transition: none;
  }
}

/* ---------- Consent checkbox & form status ---------- */
.consent-field {
  margin-top: 6px;
  margin-bottom: 20px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13.3px;
  line-height: 1.5;
  color: var(--muted);
}
.consent-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--amber);
  cursor: pointer;
}
.consent-label a {
  color: var(--navy-ink);
  text-decoration: underline;
  font-weight: 500;
}
.consent-label a:hover {
  color: var(--cyan-deep);
}

.form-status {
  font-size: 13.8px;
  font-family: "Inter";
  margin-bottom: 4px;
  min-height: 0;
}
.form-status.success {
  color: #1a9c4a;
  background: #eaf7ee;
  border: 1px solid #beead0;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.form-status.error {
  color: #c0392b;
  background: #fceae8;
  border: 1px solid #f3c6c0;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.field-upload {
  cursor: pointer;
}
.field-upload:hover {
  border-color: var(--cyan);
  color: var(--ink);
}
.field-upload:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}
