﻿:root {
  --bg: #050c1c;
  --bg-soft: #0a1835;
  --surface: #0f2757;
  --surface-2: #16448e;
  --surface-3: #f3f7ff;
  --text: #e9f1ff;
  --text-dark: #0d1a34;
  --text-muted: #b7c8e8;
  --text-soft: #4c6290;
  --brand: #2b6cff;
  --brand-2: #4d8fff;
  --brand-3: #9cc8ff;
  --success: #20c875;
  --warning: #ffc947;
  --border: rgba(156, 200, 255, 0.28);
  --shadow: 0 20px 44px rgba(5, 16, 38, 0.42);
  --shadow-soft: 0 14px 30px rgba(6, 18, 42, 0.28);
  --radius-lg: 26px;
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Mulish", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% -6%, rgba(77, 143, 255, 0.28) 0%, rgba(77, 143, 255, 0) 42%),
    radial-gradient(circle at 92% 8%, rgba(43, 108, 255, 0.24) 0%, rgba(43, 108, 255, 0) 38%),
    linear-gradient(180deg, #091630 0%, #060f23 45%, #040916 100%);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

body.page-light {
  background:
    radial-gradient(circle at 8% -6%, rgba(77, 143, 255, 0.28) 0%, rgba(77, 143, 255, 0) 42%),
    radial-gradient(circle at 92% 8%, rgba(43, 108, 255, 0.24) 0%, rgba(43, 108, 255, 0) 38%),
    linear-gradient(180deg, #091630 0%, #060f23 45%, #040916 100%);
  color: var(--text);
}

:focus-visible {
  outline: 3px solid rgba(143, 194, 255, 0.95);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.7rem 1rem;
  border-radius: 0 0 10px 10px;
  background: #0f3f86;
  color: #ffffff;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.phone-link {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.whatsapp-inline-link {
  font-weight: 600;
  color: #d7e8ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.whatsapp-inline-link:hover,
.whatsapp-inline-link:focus-visible {
  color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 2.4rem));
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.top-strip {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(143, 194, 255, 0.2);
  background: rgba(4, 11, 24, 0.82);
  backdrop-filter: blur(8px);
}

.top-strip-inner {
  min-height: 48px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}

.top-contact,
.top-hours {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.secure-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(32, 200, 117, 0.4);
  background: rgba(7, 32, 19, 0.45);
  color: #d1ffe8;
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.seal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(32, 200, 117, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  background: linear-gradient(180deg, rgba(6, 15, 34, 0.94), rgba(6, 15, 34, 0.9));
  border-bottom: 1px solid rgba(143, 194, 255, 0.22);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: clamp(136px, 16vw, 206px);
  height: auto;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(130, 186, 255, 0.5);
  background: linear-gradient(145deg, rgba(40, 100, 210, 0.92), rgba(14, 40, 92, 0.94));
  color: #ecf4ff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(14, 36, 78, 0.42);
  transition: var(--transition);
}

.menu-toggle span {
  display: inline-block;
  font-size: 1.08rem;
  line-height: 1;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(21, 56, 122, 0.52);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(143, 194, 255, 0.26);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(12, 29, 60, 0.72), rgba(7, 18, 38, 0.78));
  box-shadow: inset 0 1px 0 rgba(169, 207, 255, 0.08);
}

.primary-nav a {
  font-size: 0.89rem;
  color: #c4d7f7;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  transition: var(--transition);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(53, 128, 255, 0.42), rgba(28, 74, 164, 0.42));
  box-shadow: inset 0 0 0 1px rgba(154, 202, 255, 0.5);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  min-height: 46px;
  min-width: max-content;
  padding: 0 1.22rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 170, 255, 0.55);
  background: linear-gradient(135deg, #2f7cff 0%, #1c56d6 100%);
  color: #f4f8ff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
  box-shadow: 0 12px 24px rgba(20, 63, 150, 0.35);
  transition: var(--transition);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 90, 200, 0.38);
}

body.popup-open {
  overflow: hidden;
}

.security-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.security-popup[hidden] {
  display: none;
}

.security-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 24, 0.78);
  backdrop-filter: blur(3px);
}

.security-popup-card {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  border-radius: 20px;
  border: 1px solid rgba(143, 194, 255, 0.32);
  background: linear-gradient(160deg, rgba(12, 33, 69, 0.98), rgba(6, 17, 37, 0.98));
  box-shadow: 0 28px 52px rgba(2, 8, 22, 0.62);
  padding: clamp(1.25rem, 3vw, 1.7rem);
}

.security-popup-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(143, 194, 255, 0.36);
  background: rgba(11, 28, 58, 0.82);
  color: #e8f2ff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.security-popup-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 121, 121, 0.5);
  background: rgba(94, 20, 20, 0.45);
  color: #ffd4d4;
  padding: 0.34rem 0.72rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.security-popup-card h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(1.28rem, 3vw, 1.82rem);
  line-height: 1.2;
}

.security-popup-card p {
  margin: 0.72rem 0 0;
  color: #cbddfb;
}

.security-popup-list {
  margin: 0.78rem 0 0;
  padding-left: 1rem;
  color: #dce9ff;
  display: grid;
  gap: 0.28rem;
}

.security-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1rem;
}

.security-popup-actions .button {
  min-height: 46px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5.2rem);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  z-index: -1;
}

.hero::before {
  width: min(44vw, 500px);
  height: min(44vw, 500px);
  right: -14%;
  top: -11%;
  background: radial-gradient(circle, rgba(79, 157, 255, 0.45), rgba(24, 60, 130, 0));
}

.hero::after {
  width: min(28vw, 320px);
  height: min(28vw, 320px);
  left: -10%;
  bottom: -16%;
  background: radial-gradient(circle, rgba(41, 211, 151, 0.25), rgba(15, 40, 80, 0));
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  max-width: 920px;
  margin-inline: auto;
}

.hero-grid > .reveal,
.page-hero-grid > .reveal {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(143, 194, 255, 0.3);
  border-radius: var(--radius-lg);
  background: linear-gradient(162deg, rgba(14, 39, 86, 0.92), rgba(6, 16, 34, 0.93));
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2.6vw, 1.95rem);
}

.hero-grid > .reveal::after,
.page-hero-grid > .reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(127, 181, 255, 0.08) 0%, rgba(127, 181, 255, 0) 38%);
}
.hero-inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-inline-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(143, 194, 255, 0.36);
  background: linear-gradient(145deg, rgba(11, 29, 60, 0.86), rgba(8, 20, 43, 0.9));
  color: #deebff;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(143, 194, 255, 0.32);
  border-radius: 999px;
  padding: 0.3rem 0.78rem;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-3);
  margin-bottom: 1rem;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  line-height: 1.12;
  font-size: clamp(2rem, 4.1vw, 3.6rem);
  letter-spacing: -0.02em;
}

.hero p,
.page-hero p {
  margin: 1.05rem 0 0;
  font-size: clamp(1.01rem, 1.3vw, 1.12rem);
  color: var(--text-muted);
  max-width: 62ch;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 700;
  transition: var(--transition);
}

.button-primary {
  background: linear-gradient(135deg, #2f7cff 0%, #1c56d6 100%);
  border-color: rgba(126, 182, 255, 0.55);
}

.button-soft {
  background: rgba(20, 53, 108, 0.72);
  border-color: rgba(126, 182, 255, 0.45);
}

body.page-light .button-soft {
  background: #eaf2ff;
  border-color: rgba(84, 138, 224, 0.42);
  color: #15428c;
}

.button-ghost {
  background: rgba(24, 67, 142, 0.18);
  border-color: rgba(126, 182, 255, 0.45);
}

.hero-panel {
  border: 1px solid rgba(143, 194, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(17, 40, 82, 0.86), rgba(6, 15, 32, 0.86));
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.panel-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-3);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.73rem;
  border-radius: 999px;
  padding: 0.23rem 0.6rem;
  border: 1px solid rgba(32, 200, 117, 0.4);
  color: #d4ffe8;
  background: rgba(7, 44, 22, 0.3);
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.68rem;
}

.info-list li {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(143, 194, 255, 0.22);
  background: rgba(8, 20, 42, 0.65);
  color: #dce9ff;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.92rem;
}

.info-list strong {
  font-size: 0.92rem;
  color: #ffffff;
}

.stats-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  border: 1px solid rgba(143, 194, 255, 0.25);
  border-radius: 14px;
  background: rgba(6, 14, 30, 0.65);
  padding: 0.9rem;
}

.stat strong {
  display: block;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1;
  margin-bottom: 0.35rem;
  color: #fff;
}

.stat span {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.section {
  padding: clamp(3.3rem, 6.4vw, 5.4rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(9, 22, 46, 0.58), rgba(7, 18, 38, 0.58));
  border-block: 1px solid rgba(143, 194, 255, 0.2);
}

body.page-light .section-alt {
  background: rgba(255, 255, 255, 0.84);
  border-block-color: rgba(11, 35, 75, 0.1);
}

.section-header {
  margin-bottom: 1.75rem;
  max-width: 860px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.section-header p {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
  max-width: 68ch;
}

body.page-light .section-header p,
body.page-light .card p,
body.page-light .list-check li,
body.page-light .timeline-item p,
body.page-light .footer-card p,
body.page-light .contact-card p {
  color: var(--text-soft);
}

body.page-light .hero-grid > .reveal,
body.page-light .page-hero-grid > .reveal {
  background: #ffffff;
  border-color: rgba(17, 46, 97, 0.14);
  box-shadow: 0 12px 34px rgba(10, 31, 68, 0.08);
}

body.page-light .hero-inline-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(143, 194, 255, 0.36);
  background: linear-gradient(145deg, rgba(11, 29, 60, 0.86), rgba(8, 20, 43, 0.9));
  color: #deebff;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 0.18rem;
  left: 0.9rem;
  font-size: 2.35rem;
  line-height: 1;
  color: rgba(143, 194, 255, 0.5);
}

.quote-meta {
  display: block;
  margin-top: 0.38rem;
  font-size: 0.79rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

body.page-light .quote-meta {
  color: var(--text-soft);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(143, 194, 255, 0.28);
  background: linear-gradient(160deg, rgba(13, 34, 76, 0.93), rgba(6, 14, 30, 0.94));
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

body.page-light .card,
body.page-light .hero-panel,
body.page-light .timeline-item,
body.page-light .contact-card,
body.page-light .footer-card,
body.page-light .legal-shell,
body.page-light .quote {
  background: #ffffff;
  border-color: rgba(17, 46, 97, 0.14);
  box-shadow: 0 12px 34px rgba(10, 31, 68, 0.08);
}

.card h3,
.card h4 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.34;
  letter-spacing: 0.01em;
}

.card p {
  margin: 0.78rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(143, 194, 255, 0.45);
  box-shadow: 0 16px 34px rgba(8, 24, 56, 0.28);
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(130deg, rgba(79, 157, 255, 0.35), rgba(37, 96, 208, 0.35));
  color: #fff;
  margin-bottom: 0.75rem;
}

.list-check {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.list-check li {
  position: relative;
  padding-left: 1.2rem;
  color: #d8e6ff;
  font-size: 0.92rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.4rem, 5vw, 3.2rem);
  position: relative;
  overflow: clip;
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  border: 1px solid rgba(143, 194, 255, 0.24);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  background: rgba(8, 19, 41, 0.7);
}

.timeline-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.93rem;
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.89rem;
}

.split-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quote {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(143, 194, 255, 0.3);
  padding: 1.58rem 1.2rem 1.2rem;
  background: linear-gradient(155deg, rgba(12, 28, 57, 0.9), rgba(8, 18, 38, 0.9));
  box-shadow: var(--shadow-soft);
}

.quote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.72;
}

.quote strong {
  display: block;
  margin-top: 0.78rem;
  font-size: 0.86rem;
  color: var(--brand-3);
  letter-spacing: 0.01em;
}

.contact-box,
.contact-card {
  border: 1px solid rgba(143, 194, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 18, 37, 0.83);
  padding: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-item {
  border-radius: 12px;
  border: 1px solid rgba(143, 194, 255, 0.26);
  padding: 0.9rem;
  background: rgba(10, 25, 50, 0.72);
}

body.page-light .contact-item {
  background: #f4f8ff;
  border-color: rgba(17, 46, 97, 0.12);
}

.contact-item span {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-3);
  margin-bottom: 0.25rem;
}

body.page-light .contact-item span {
  color: #2c5da8;
}

.contact-item strong,
.contact-item a {
  font-size: 0.94rem;
}

.cta-band {
  border: 1px solid rgba(143, 194, 255, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(130deg, rgba(28, 76, 154, 0.9), rgba(10, 22, 46, 0.92));
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.cta-band h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

.cta-band p {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
  max-width: 55ch;
}

body.page-light .cta-band {
  background: linear-gradient(135deg, #1f68dd 0%, #123f8f 100%);
}

body.page-light .cta-band p,
body.page-light .cta-band h3 {
  color: #ffffff;
}

.partners-section {
  position: relative;
}

.partners-marquee {
  overflow: hidden;
  border: 1px solid rgba(143, 194, 255, 0.32);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(10, 25, 52, 0.86), rgba(7, 16, 34, 0.9));
  padding: 0.6rem;
  box-shadow: 0 12px 26px rgba(8, 22, 49, 0.25);
}

.partners-scroll {
  display: flex;
  width: max-content;
  animation: partners-marquee 40s linear infinite;
}

.partners-marquee:hover .partners-scroll,
.partners-marquee:focus-within .partners-scroll {
  animation-play-state: paused;
}

.partners-track {
  display: flex;
  gap: 0.58rem;
  padding-right: 0.58rem;
  flex: 0 0 auto;
}

.partner-item {
  width: clamp(104px, 11vw, 132px);
  min-height: 66px;
  border-radius: 14px;
  border: 1px solid rgba(143, 194, 255, 0.32);
  background: #ffffff;
  padding: 0.34rem 0.42rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(8, 22, 49, 0.2);
}

.partner-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.partner-item img.logo-wide {
  max-height: 34px;
  max-width: 96%;
}

.partner-item img.logo-square {
  max-width: 44px;
  max-height: 38px;
}

.partner-item img.logo-ultrawide {
  max-height: 29px;
}

.partner-item.partner-item-dark {
  background: linear-gradient(160deg, #0d1a33, #060d1f);
  border-color: rgba(126, 182, 255, 0.42);
}

.partner-item-more {
  background: radial-gradient(circle at 28% 22%, rgba(104, 170, 255, 0.96), rgba(20, 75, 180, 0.98));
  border-color: rgba(126, 182, 255, 0.9);
  flex-direction: column;
  gap: 0.35rem;
}

.partner-item-more .plus-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.64);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.62rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 7px rgba(8, 16, 36, 0.35);
}

.partner-item-more small {
  color: #e9f3ff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
body.page-light .partners-marquee {
  background: #ecf3ff;
  border-color: rgba(17, 46, 97, 0.16);
}

body.page-light .partner-item {
  border-color: rgba(17, 46, 97, 0.16);
  box-shadow: 0 10px 22px rgba(10, 31, 68, 0.13);
}

body.page-light .partner-item.partner-item-dark {
  border-color: rgba(126, 182, 255, 0.42);
  box-shadow: 0 12px 24px rgba(8, 22, 49, 0.28);
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(143, 194, 255, 0.24);
  background: linear-gradient(180deg, rgba(4, 10, 22, 0.96), rgba(3, 8, 18, 0.98));
}

.footer-inner {
  padding: 2.1rem 0 1.2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-card {
  border: 1px solid rgba(143, 194, 255, 0.24);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(11, 27, 54, 0.82), rgba(7, 18, 36, 0.82));
  padding: 1.05rem;
}

.footer h4 {
  margin: 0;
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-3);
}

.footer-list {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.footer-list a,
.footer-list li {
  color: #d8e7ff;
  font-size: 0.89rem;
}

.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid rgba(143, 194, 255, 0.2);
  padding-top: 0.9rem;
  text-align: center;
  color: #acc0e6;
  font-size: 0.84rem;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(16px, 3vw, 24px);
  z-index: 75;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2f7cff, #1b56d8);
  border: 2px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 15px 30px rgba(18, 64, 151, 0.46);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  transition: var(--transition);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: scale(1.06) translateY(-2px);
}

.floating-whatsapp .whatsapp-icon {
  width: 27px;
  height: 27px;
  display: block;
  color: #ffffff;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.22));
}

.legal-shell {
  border: 1px solid rgba(143, 194, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 20, 40, 0.8);
  padding: clamp(1.2rem, 2.6vw, 1.9rem);
}

.legal-shell h2,
.legal-shell h3 {
  margin: 1.15rem 0 0.5rem;
  line-height: 1.25;
}

.legal-shell h2 {
  font-size: 1.32rem;
}

.legal-shell h3 {
  font-size: 1.08rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--text-muted);
  font-size: 0.93rem;
}

body.page-light .legal-shell p,
body.page-light .legal-shell li {
  color: var(--text-soft);
}

.legal-shell ul {
  margin: 0.35rem 0 0;
  padding-left: 1.05rem;
}

.chat-status {
  min-height: 1.4rem;
  margin: 0;
  padding: 0.1rem 1.2rem 0;
  text-align: center;
  color: #9fc0f3;
  font-size: 0.84rem;
  font-weight: 600;
}
.sticky-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  border-top: 1px solid rgba(143, 194, 255, 0.3);
  background: rgba(4, 11, 24, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.65rem 0;
}

.sticky-actions-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.sticky-action {
  min-height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(143, 194, 255, 0.28);
}

.sticky-action.chat {
  background: linear-gradient(135deg, #2f7cff 0%, #1c56d6 100%);
  color: #fff;
}

.sticky-action.whatsapp {
  background: linear-gradient(145deg, #2f7cff, #1b56d8);
  color: #fff;
}


.reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.reveal.visible {
  opacity: 1;
  filter: none;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  
  .grid-3,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .hero-grid > .reveal,
  .page-hero-grid > .reveal {
    padding: 1.15rem;
    border-radius: 20px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.menu-open {
    overflow: hidden;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0.65rem;
    right: 0.65rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.38rem;
    padding: 0.78rem;
    border: 1px solid rgba(143, 194, 255, 0.34);
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(12, 29, 60, 0.97), rgba(6, 16, 34, 0.98));
    box-shadow: 0 18px 36px rgba(3, 10, 25, 0.55);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  body.menu-open .primary-nav {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 0.82rem 0.94rem;
    background: rgba(10, 24, 48, 0.58);
    border: 1px solid rgba(143, 194, 255, 0.18);
  }

  .header-cta {
    min-height: 42px;
    padding: 0 0.95rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 760px) {
  .header-cta {
    display: none;
  }
  .top-strip {
    display: none;
  }

  
  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .contact-grid,
  .split-highlight {
    grid-template-columns: 1fr;
  }

  .partner-item {
    width: clamp(92px, 46vw, 118px);
  }

  .partners-scroll {
    animation-duration: 30s;
  }

  .security-popup-card {
    border-radius: 16px;
    padding: 1rem;
  }

  .security-popup-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .partner-item {
    width: clamp(90px, 54vw, 112px);
  }

  .header-inner {
    min-height: 78px;
  }

  .primary-nav {
    left: 0.55rem;
    right: 0.55rem;
    top: calc(100% + 0.35rem);
  }

  .security-popup {
    padding: 0.7rem;
  }

  .top-strip-inner {
    justify-content: center;
    text-align: center;
  }

  .hero,
  .section,
  .page-hero {
    padding-top: 2.8rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .button,
  .sticky-action {
    width: 100%;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .chat-status {
    min-height: 1.4rem;
  }

  .sticky-actions {
    padding-bottom: max(0.8rem, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee {
    overflow-x: auto;
  }

  .partners-scroll {
    width: max-content;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}


















/* Popup and footer refinements */
.security-popup-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 18px;
  border: 1px solid rgba(116, 179, 255, 0.18);
}

.security-popup-alert {
  margin-top: 0.78rem;
  border: 1px solid rgba(255, 137, 137, 0.56);
  background: linear-gradient(145deg, rgba(87, 15, 24, 0.55), rgba(43, 8, 13, 0.65));
  color: #ffd8d8;
  border-radius: 12px;
  padding: 0.74rem 0.86rem;
  font-weight: 700;
}

.security-popup-list {
  margin: 0.84rem 0 0;
  padding: 0;
  list-style: none;
  color: #dce9ff;
  display: grid;
  gap: 0.42rem;
}

.security-popup-list li {
  position: relative;
  padding-left: 1.24rem;
}

.security-popup-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #2be19b, #149f74);
  box-shadow: 0 0 0 3px rgba(43, 225, 155, 0.16);
}

.security-popup-actions {
  justify-content: flex-end;
}

.security-popup-actions .button-ghost {
  border-color: rgba(116, 179, 255, 0.46);
}

.security-popup-actions .button-soft {
  background: rgba(12, 30, 62, 0.88);
}

.footer-slogan {
  margin: 0.8rem 0 0.46rem;
  font-size: 1.13rem;
  font-weight: 800;
  color: #8fc2ff;
  letter-spacing: 0.01em;
}

@media (max-width: 760px) {
  .security-popup-alert {
    font-size: 0.94rem;
    padding: 0.68rem 0.72rem;
  }

  .security-popup-actions {
    justify-content: stretch;
  }
}
.footer-card > p {
  margin: 0.62rem 0 0;
  color: #d6e6ff;
  line-height: 1.6;
}

.footer-card > p + .secure-seal {
  margin-top: 0.8rem;
}
.floating-jivo {
  position: fixed;
  right: clamp(14px, 3vw, 24px);
  bottom: calc(86px + env(safe-area-inset-bottom));
  z-index: 96;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 54px;
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(143, 194, 255, 0.48);
  background: linear-gradient(165deg, rgba(27, 86, 199, 0.96), rgba(18, 63, 151, 0.98));
  color: #f2f7ff;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 28px rgba(11, 29, 63, 0.45);
}

.floating-jivo:hover,
.floating-jivo:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(11, 29, 63, 0.5);
}

.floating-jivo-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .floating-jivo {
    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    padding: 0.62rem 0.82rem;
    min-height: 50px;
    font-size: 0.9rem;
  }
}

body[data-page="chat"] .jivo-dark-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 22% 16%, rgba(34, 92, 196, 0.2) 0%, rgba(34, 92, 196, 0) 46%),
    linear-gradient(180deg, rgba(5, 12, 28, 0.74), rgba(3, 8, 20, 0.84));
  transition: opacity 0.35s ease;
}

body[data-page="chat"].jivo-open-bg .jivo-dark-backdrop {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="chat"] .jivo-dark-backdrop {
    transition: none;
  }
}
body[data-page="chat"] jdiv[class*="jivo"],
body[data-page="chat"] [id*="jivo"],
body[data-page="chat"] [class*="jivo-launcher"],
body[data-page="chat"] iframe[src*="jivosite.com"],
body[data-page="chat"] iframe[src*="jivo.ru"] {
  z-index: 97 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body[data-page="chat"] iframe[src*="jivosite.com"],
body[data-page="chat"] iframe[src*="jivo.ru"] {
  color-scheme: dark !important;
}

.chat-open-button,
button.sticky-action,
button.floating-jivo {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
}

button.sticky-action:focus-visible,
button.floating-jivo:focus-visible,
.chat-open-button:focus-visible {
  outline: 2px solid #8fc2ff;
  outline-offset: 2px;
}









