:root {
  color-scheme: dark;
  --bg: #06111c;
  --bg-2: #08213a;
  --panel: #0c1d2d;
  --panel-2: #10283d;
  --line: #27435b;
  --line-strong: #45627a;
  --text: #f5f8fb;
  --muted: #b9c4cc;
  --soft: #7f8e99;
  --navy: #003a70;
  --navy-deep: #001f3f;
  --blue: #0b5d9a;
  --steel: #6f7880;
  --gold: #d8ad27;
  --gold-strong: #f2cf57;
  --amber: var(--gold);
  --amber-strong: var(--gold-strong);
  --green: #19b876;
  --red: #d94b5c;
  --cyan: #70c4df;
  --maroon: #9f1f35;
  --max: 1180px;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(11, 93, 154, 0.24), transparent 34rem),
    radial-gradient(circle at top right, rgba(216, 173, 39, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--navy-deep), var(--bg) 38rem);
  color: var(--text);
  font-family: "Segoe UI", "Aptos", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 13px clamp(18px, 3vw, 42px);
  background: rgba(3, 18, 32, 0.84);
  border-bottom: 1px solid rgba(111, 120, 128, 0.24);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-ticker,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  width: fit-content;
}

.brand img {
  width: clamp(50px, 5vw, 64px);
  height: clamp(50px, 5vw, 64px);
  object-fit: contain;
  padding: 0;
  border: 1px solid rgba(11, 93, 154, 0.42);
  border-radius: var(--radius);
  background: rgba(3, 18, 32, 0.42);
  box-shadow: 0 14px 34px rgba(0, 31, 63, 0.28);
}

.nav-links {
  justify-content: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(69, 98, 122, 0.46);
  border-radius: var(--radius-sm);
  background: rgba(12, 29, 45, 0.62);
  color: var(--muted);
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--gold-strong);
  border-color: rgba(216, 173, 39, 0.58);
  background: rgba(16, 40, 61, 0.88);
  transform: translateY(-1px);
}

.header-action:hover {
  color: #07111c;
  background: linear-gradient(180deg, #f7d96f, var(--gold-strong));
}

.header-action {
  justify-self: end;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(216, 173, 39, 0.58);
  border-radius: var(--radius-sm);
  color: #07111c;
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  box-shadow: 0 12px 28px rgba(216, 173, 39, 0.18);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 4vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  transform: scale(1.04);
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
  filter: contrast(1.02) saturate(0.96);
}

.hero-fallback {
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.hero-fallback img {
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.92);
}

.hero-fallback img:first-child {
  grid-row: span 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 31, 63, 0.9) 0%, rgba(0, 31, 63, 0.62) 34%, rgba(0, 31, 63, 0.08) 78%),
    linear-gradient(0deg, rgba(6, 17, 28, 0.76) 0%, rgba(6, 17, 28, 0.08) 48%, rgba(6, 17, 28, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding-bottom: clamp(86px, 12vh, 132px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: "Bahnschrift", "Segoe UI", Arial, sans-serif;
  font-size: clamp(58px, 8.2vw, 118px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: "Bahnschrift", "Segoe UI", Arial, sans-serif;
  font-size: clamp(32px, 4.6vw, 62px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.18;
}

.hero-copy,
.section-copy p,
.feature-copy p,
.analytics-copy p,
.contact p {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  max-width: 780px;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-action {
  background: linear-gradient(180deg, var(--amber-strong), var(--amber));
  color: #080604;
  box-shadow: 0 12px 28px rgba(216, 173, 39, 0.18);
}

.secondary-action {
  border: 1px solid rgba(69, 98, 122, 0.58);
  background: rgba(12, 29, 45, 0.72);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.hero-ticker {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 56px;
  gap: 30px;
  padding: 0 clamp(18px, 4vw, 64px);
  overflow: hidden;
  background: rgba(3, 18, 32, 0.96);
  border-top: 1px solid var(--line-strong);
  color: var(--amber);
  font-weight: 800;
  white-space: nowrap;
}

.hero-ticker span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
}

.section,
.feature-band,
.gallery-section,
.analytics,
.process-section,
.compliance,
.contact {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 4vw, 64px);
}

.intro,
.market-section,
.gallery-section,
.analytics,
.process-section,
.compliance,
.contact {
  max-width: calc(var(--max) + 128px);
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 50px;
}

.intro-grid,
.compliance-grid,
.pipeline {
  display: grid;
  gap: 14px;
}

.intro-grid article,
.compliance-grid article,
.pipeline article {
  padding: 22px;
  background: linear-gradient(180deg, rgba(16, 40, 61, 0.96), rgba(12, 29, 45, 0.96));
  border: 1px solid rgba(69, 98, 122, 0.64);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.intro-grid strong,
.compliance-grid strong,
.pipeline strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 20px;
  letter-spacing: 0;
}

.intro-grid p,
.compliance-grid p,
.pipeline p,
.source-panel p,
.analytics-grid p,
figcaption {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  background:
    linear-gradient(180deg, rgba(8, 33, 58, 0.98), rgba(6, 17, 28, 0.98));
  border-block: 1px solid var(--line);
}

.feature-copy {
  max-width: 580px;
  justify-self: end;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.feature-visual,
.showcase,
.image-columns figure,
.analytics-grid article {
  margin: 0;
  background: linear-gradient(180deg, rgba(16, 40, 61, 0.96), rgba(8, 33, 58, 0.98));
  border: 1px solid rgba(69, 98, 122, 0.68);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-visual img {
  min-height: 520px;
  object-fit: cover;
  object-position: left top;
}

figcaption {
  padding: 15px 17px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
}

.gallery-section .section-copy {
  grid-column: 1 / -1;
}

.tool-grid {
  display: grid;
  gap: 10px;
  align-content: start;
}

.tool-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  width: 100%;
  min-height: 94px;
  padding: 18px;
  text-align: left;
  color: var(--text);
  background: rgba(12, 29, 45, 0.9);
  border: 1px solid rgba(69, 98, 122, 0.66);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.tool-card span {
  grid-row: span 2;
  color: var(--soft);
  font-weight: 800;
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 13px;
}

.tool-card strong {
  font-size: 20px;
  line-height: 1.15;
}

.tool-card em {
  color: var(--muted);
  font-style: normal;
}

.tool-card.active {
  border-color: rgba(216, 173, 39, 0.86);
  background: linear-gradient(180deg, rgba(40, 45, 34, 0.96), rgba(13, 36, 55, 0.96));
}

.tool-card:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 173, 39, 0.48);
}

.showcase img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.showcase figcaption {
  display: grid;
  gap: 6px;
}

.showcase strong {
  color: var(--amber-strong);
  font-size: 22px;
}

.image-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}

.image-columns img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.analytics {
  display: grid;
  grid-template-columns: 0.44fr 0.56fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.analytics-copy {
  position: sticky;
  top: 96px;
}

.analytics-grid {
  display: grid;
  gap: 16px;
}

.analytics-grid article {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
}

.analytics-grid img {
  height: 150px;
  object-fit: cover;
  object-position: left top;
  border-right: 1px solid var(--line);
}

.analytics-grid div {
  padding: 18px;
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-section .section-copy {
  max-width: 900px;
  margin-bottom: 34px;
}

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

.pipeline article {
  position: relative;
  min-height: 220px;
}

.pipeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -11px;
  width: 20px;
  height: 1px;
  background: var(--amber);
  opacity: 0.72;
}

.pipeline span {
  display: block;
  margin-bottom: 28px;
  color: var(--amber-strong);
  font-size: 13px;
  font-weight: 900;
  font-family: "Cascadia Mono", "Consolas", monospace;
}

.source-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.52fr);
  gap: 28px;
  margin-top: 16px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(8, 33, 58, 0.98), rgba(6, 17, 28, 0.98));
  border: 1px solid rgba(69, 98, 122, 0.68);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.source-panel h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.source-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid rgba(69, 98, 122, 0.62);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(16, 40, 61, 0.86);
  font-size: 14px;
}

.compliance {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 44px;
  background:
    linear-gradient(180deg, rgba(8, 33, 58, 0.98), rgba(6, 17, 28, 0.98));
  border-block: 1px solid var(--line);
}

.compliance h2,
.contact h2 {
  font-size: clamp(32px, 4vw, 58px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.55fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.access-form {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(69, 98, 122, 0.68);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 40, 61, 0.96), rgba(8, 33, 58, 0.98));
  box-shadow: var(--shadow);
}

.access-form label {
  display: grid;
  gap: 7px;
}

.access-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.access-form input,
.access-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(69, 98, 122, 0.7);
  border-radius: var(--radius-sm);
  background: rgba(6, 17, 28, 0.72);
  color: var(--text);
  font: inherit;
  outline: 0;
}

.access-form textarea {
  min-height: 116px;
  padding-block: 12px;
  resize: vertical;
}

.access-form input::placeholder,
.access-form textarea::placeholder {
  color: rgba(185, 196, 204, 0.56);
}

.access-form input:focus,
.access-form textarea:focus {
  border-color: rgba(216, 173, 39, 0.86);
  box-shadow: 0 0 0 3px rgba(216, 173, 39, 0.14);
}

.access-form button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.access-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status,
.form-note {
  margin: 0;
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  color: var(--gold-strong);
  font-weight: 800;
}

.form-status[data-state="error"] {
  color: #ff8b98;
}

.form-note {
  color: var(--soft);
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  background: #06090b;
}

.footer-main,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  align-items: flex-start;
}

.footer-main strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.footer-main p {
  margin: 0;
  max-width: 520px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(69, 98, 122, 0.5);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(12, 29, 45, 0.58);
}

.footer-links a:hover {
  color: var(--gold-strong);
  border-color: rgba(216, 173, 39, 0.54);
}

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

.footer-legal p {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(69, 98, 122, 0.46);
  border-radius: var(--radius);
  background: rgba(12, 29, 45, 0.46);
  color: #95a5af;
  font-size: 12px;
  line-height: 1.55;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(69, 98, 122, 0.42);
  color: var(--soft);
  font-size: 12px;
}

.floating-contact {
  position: fixed;
  z-index: 40;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: grid;
  gap: 12px;
}

.float-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #07111c;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: floatContact 3.8s ease-in-out infinite;
}

.float-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
}

.whatsapp-button {
  background: linear-gradient(180deg, #25d366, #16a95d);
}

.whatsapp-button span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 50%;
  font-family: "Bahnschrift", "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.chat-button {
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  animation-delay: 0.5s;
}

.chat-button span {
  position: relative;
  width: 31px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 10px;
}

.chat-button span::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: -8px;
  width: 10px;
  height: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(38deg);
  background: transparent;
}

.quick-chat {
  position: fixed;
  z-index: 39;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(154px, 12vw, 174px);
  width: min(390px, calc(100vw - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.quick-chat[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.quick-chat-panel {
  overflow: hidden;
  border: 1px solid rgba(69, 98, 122, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 40, 61, 0.98), rgba(6, 17, 28, 0.99));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
}

.quick-chat-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 4px;
}

.quick-chat-header h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.05;
}

.quick-chat-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(69, 98, 122, 0.62);
  border-radius: var(--radius-sm);
  background: rgba(12, 29, 45, 0.74);
  color: var(--muted);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.quick-chat-close:hover {
  color: var(--gold-strong);
  border-color: rgba(216, 173, 39, 0.54);
}

.quick-contact-form {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@keyframes floatContact {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .intro,
  .feature-band,
  .gallery-section,
  .analytics,
  .pipeline,
  .source-panel,
  .compliance {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    justify-self: start;
  }

  .feature-visual img {
    min-height: 360px;
  }

  .analytics-copy {
    position: static;
  }

  .pipeline article {
    min-height: 0;
  }

  .pipeline article:not(:last-child)::after {
    display: none;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 92svh;
    padding-inline: 16px;
  }

  .hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .hero-media img:first-child {
    grid-row: span 1;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 17, 28, 0.94) 0%, rgba(6, 17, 28, 0.72) 55%, rgba(6, 17, 28, 0.86) 100%);
  }

  h1 {
    font-size: clamp(52px, 17vw, 82px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 50px);
  }

  .hero-copy,
  .section-copy p,
  .feature-copy p,
  .analytics-copy p,
  .contact p {
    font-size: 17px;
  }

  .hero-ticker {
    min-height: 48px;
    gap: 18px;
    font-size: 13px;
  }

  .image-columns,
  .analytics-grid article {
    grid-template-columns: 1fr;
  }

  .source-panel {
    padding: 20px;
  }

  .source-list {
    grid-template-columns: 1fr;
  }

  .analytics-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .floating-contact {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .float-button {
    width: 52px;
    height: 52px;
  }

  .quick-chat {
    right: 14px;
    bottom: 134px;
    width: calc(100vw - 28px);
  }
}
