@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Roboto+Condensed:wght@400;700&display=swap");

:root {
  --bg: #070910;
  --bg-2: #0d1120;
  --surface: rgba(18, 24, 46, 0.7);
  --surface-strong: rgba(16, 21, 41, 0.88);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f5f7ff;
  --muted: #b8c1d7;
  --accent: #f4c400;
  --accent-2: #ffe075;
  --accent-soft: rgba(244, 196, 0, 0.13);
  --danger: #ff5f7f;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-xl: 0 34px 70px rgba(0, 0, 0, 0.52);
  --shadow-lg: 0 20px 42px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.62;
  background:
    radial-gradient(1200px 620px at -18% -12%, rgba(244, 196, 0, 0.16), transparent 56%),
    radial-gradient(980px 560px at 112% 6%, rgba(86, 123, 237, 0.18), transparent 60%),
    linear-gradient(180deg, #06080f 0%, #0a0f1e 50%, #070910 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: -30% -20%;
  pointer-events: none;
  z-index: -3;
}

body::before {
  background:
    repeating-linear-gradient(
      118deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) 48px,
      rgba(244, 196, 0, 0.06) 49px,
      rgba(244, 196, 0, 0.06) 51px,
      rgba(255, 255, 255, 0) 52px,
      rgba(255, 255, 255, 0) 104px
    );
  opacity: 0.3;
  transform: translate3d(0, 0, 0);
  animation: gridFlow 24s linear infinite;
}

body::after {
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.45;
  animation: pulseGlow 14s ease-in-out infinite;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 196, 0, 0.42);
  background: var(--accent-soft);
  color: #ffe384;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.76rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.88rem;
  line-height: 1.06;
  font-family: 'Roboto Condensed', 'Roboto', sans-serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4.3rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul,
ol {
  margin: 0;
}

.soft-blob {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(84px);
  opacity: 0.5;
  pointer-events: none;
  animation: floatBlob 16s ease-in-out infinite;
}

.soft-blob.a {
  width: 400px;
  height: 400px;
  background: rgba(244, 196, 0, 0.48);
  top: -170px;
  left: -150px;
}

.soft-blob.b {
  width: 360px;
  height: 360px;
  background: rgba(99, 133, 255, 0.28);
  right: -155px;
  top: 27%;
  animation-delay: 2.5s;
}

.soft-blob.c {
  width: 320px;
  height: 320px;
  background: rgba(244, 196, 0, 0.23);
  right: 6%;
  bottom: -125px;
  animation-delay: 4.4s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(8, 12, 23, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.3);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand img {
  width: clamp(150px, 16vw, 220px);
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: 0;
  padding: 0;
}

.brand span {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.main-nav > a,
.nav-dropdown > a {
  position: relative;
  border-radius: 999px;
  padding: 0.5rem 0.84rem;
  color: #cad2e8;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown > a:hover,
.nav-dropdown > a.active,
.nav-dropdown.open > a {
  color: #f7f9ff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.main-nav .call-pill {
  background: linear-gradient(132deg, #f4c400, #e8b600);
  color: #201500;
  border: 1px solid #f8d65d;
  box-shadow: 0 10px 18px rgba(232, 182, 0, 0.26);
}

.main-nav .app-link {
  border: 1px solid rgba(244, 196, 0, 0.46);
  background: rgba(244, 196, 0, 0.08);
  color: #ffe181;
}

.main-nav .app-link:hover {
  border-color: rgba(244, 196, 0, 0.7);
  background: rgba(244, 196, 0, 0.14);
}

.main-nav .whatsapp-link {
  border: 1px solid rgba(37, 211, 102, 0.42);
  background: rgba(37, 211, 102, 0.08);
  color: #8ff0ba;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.main-nav .whatsapp-link::before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background:
    center / 10px 10px no-repeat
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19.05 4.91A9.82 9.82 0 0 0 12.04 2c-5.46 0-9.9 4.44-9.9 9.9 0 1.74.45 3.44 1.31 4.94L2 22l5.33-1.4a9.86 9.86 0 0 0 4.71 1.2h.01c5.46 0 9.9-4.44 9.9-9.9a9.8 9.8 0 0 0-2.9-6.99Zm-7.01 15.22h-.01a8.2 8.2 0 0 1-4.18-1.14l-.3-.18-3.16.83.84-3.08-.2-.32a8.24 8.24 0 0 1-1.27-4.34c0-4.54 3.7-8.24 8.25-8.24 2.2 0 4.27.86 5.82 2.42a8.18 8.18 0 0 1 2.41 5.82c0 4.55-3.7 8.24-8.24 8.24Zm4.52-6.18c-.25-.13-1.5-.74-1.73-.82-.23-.08-.4-.12-.57.12-.17.25-.65.82-.79.99-.15.17-.29.19-.54.06-.25-.13-1.04-.38-1.98-1.22-.73-.65-1.23-1.45-1.37-1.69-.14-.25-.02-.38.1-.5.11-.11.25-.29.37-.43.12-.15.16-.25.25-.42.08-.17.04-.31-.02-.43-.06-.12-.57-1.37-.78-1.88-.21-.5-.42-.43-.57-.43h-.49c-.17 0-.43.06-.66.31-.23.25-.87.85-.87 2.08s.89 2.42 1.01 2.58c.12.17 1.75 2.67 4.23 3.74.59.25 1.05.4 1.41.5.59.19 1.13.16 1.55.1.47-.07 1.5-.61 1.71-1.2.21-.59.21-1.1.15-1.2-.06-.1-.23-.16-.48-.29Z'/%3E%3C/svg%3E");
  background-color: #25d366;
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.35);
}

.main-nav .whatsapp-link:hover {
  border-color: rgba(37, 211, 102, 0.72);
  background: rgba(37, 211, 102, 0.14);
  color: #b4ffd1;
}

.main-nav .call-pill:hover {
  color: #1f1400;
  background: linear-gradient(132deg, #ffdb58, #efbb00);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-dropdown-toggle {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #d8def0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.84rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle {
  transform: rotate(180deg);
  border-color: rgba(244, 196, 0, 0.52);
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  min-width: 280px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 19, 38, 0.95);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  padding: 0.45rem;
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 160;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  border-radius: 9px;
  padding: 0.47rem 0.56rem;
  color: #d2dbef;
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
  color: #fff;
  background: rgba(244, 196, 0, 0.12);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: #ebefff;
}

.hero {
  position: relative;
  padding: 7.2rem 0 4.8rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 196, 0, 0.95), transparent);
  top: 16%;
  left: -22%;
  box-shadow: 0 0 26px rgba(244, 196, 0, 0.75);
  animation: lineSweep 8s ease-in-out infinite;
}

.hero::after {
  width: 420px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 196, 0, 0.72), transparent);
  top: 72%;
  right: -25%;
  box-shadow: 0 0 22px rgba(244, 196, 0, 0.64);
  animation: lineSweepReverse 10s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.3rem;
  align-items: center;
}

.hero .lead {
  font-size: 1.08rem;
  max-width: 61ch;
}

.hero-cta {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  padding: 0.78rem 1.08rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ffda57, #efbc00);
  border-color: #f7d661;
  color: #221700;
  box-shadow: 0 12px 24px rgba(239, 188, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #eff2ff;
}

.btn-outline {
  border-color: rgba(244, 196, 0, 0.55);
  background: rgba(244, 196, 0, 0.09);
  color: #ffe386;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(146deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px) saturate(1.4);
  padding: 0.8rem;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(244, 196, 0, 0.26), transparent 30%, rgba(106, 130, 241, 0.18));
  z-index: -1;
}

.hero-slider {
  min-height: 360px;
}

.hero-slider-track {
  position: relative;
  min-height: 360px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 16px;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 1.6s ease;
  overflow: hidden;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 16px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 12, 24, 0.65);
  color: #f4f7ff;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.28rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-btn:hover {
  border-color: rgba(244, 196, 0, 0.62);
  color: #ffe27d;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.42rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.slider-dot.is-active {
  width: 26px;
  background: linear-gradient(90deg, #ffda57, #efbc00);
  border-color: #ffd965;
}

.stat-strip {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat-box {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  padding: 0.84rem;
}

.stat-box strong {
  display: block;
  margin-bottom: 0.1rem;
  color: #ffe289;
  font-size: 1.14rem;
}

.stat-box span {
  color: #c7cfe2;
  font-size: 0.87rem;
}

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

.card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px) saturate(1.25);
  padding: 1.08rem;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(244, 196, 0, 0.09), transparent 40%, rgba(96, 130, 255, 0.09));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 196, 0, 0.52);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42);
}

.card:hover::after {
  opacity: 1;
}

.card p {
  margin-bottom: 0;
}

.card-link {
  display: inline-flex;
  margin-top: 0.85rem;
  color: #ffdf71;
  font-weight: 700;
}

.app-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  align-items: start;
}

.app-copy h3 {
  font-size: 1.35rem;
  color: #f0f4ff;
  margin-top: -0.15rem;
}

.app-copy h4 {
  margin: 1rem 0 0.5rem;
  font-size: 1.02rem;
  color: #eaf0ff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.app-feature-list,
.app-steps-list {
  display: grid;
  gap: 0.35rem;
  padding-left: 1.15rem;
  margin: 0 0 0.7rem;
}

.app-feature-list li,
.app-steps-list li {
  color: #d7deef;
}

.app-slider-card {
  padding: 1rem;
  position: relative;
}

.app-slider-shell {
  position: sticky;
  top: 104px;
}

.app-new-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 4;
  border-radius: 999px;
  border: 1px solid rgba(244, 196, 0, 0.68);
  background: linear-gradient(140deg, #ffde64, #efbb00);
  color: #231700;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  padding: 0.35rem 0.65rem;
  box-shadow: 0 12px 22px rgba(239, 187, 0, 0.28);
}

.app-slider {
  max-width: 520px;
  margin: 0 auto;
  padding: 0.9rem;
}

.app-slider::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.app-slider .hero-slider-track {
  min-height: 560px;
}

.app-slider .hero-slide {
  border-radius: 24px;
  background: #05070d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-slider .hero-slide img {
  min-height: 560px;
  height: 560px;
  object-fit: contain;
  background: linear-gradient(180deg, #05070d, #0b1020);
  border-radius: 24px;
  padding: 0.3rem;
}

.app-qr-block {
  margin-top: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem;
}

.app-qr-block img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

.app-qr-block strong {
  display: block;
  color: #f2f6ff;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.app-qr-block p {
  margin: 0;
  font-size: 0.84rem;
  color: #b7c0d8;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.14rem;
}

.panel,
.text-block,
.info-list .item {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px) saturate(1.28);
  box-shadow: var(--shadow-lg);
}

.panel {
  padding: 1.2rem;
}

.panel ul,
.text-block ul,
.text-block ol {
  padding-left: 1.24rem;
}

.panel li,
.text-block li {
  margin-bottom: 0.38rem;
  color: #d4dbec;
}

.page-hero {
  position: relative;
  padding: 5.5rem 0 2.2rem;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 1px;
  right: -180px;
  top: 60%;
  background: linear-gradient(90deg, transparent, rgba(244, 196, 0, 0.84), transparent);
  box-shadow: 0 0 18px rgba(244, 196, 0, 0.58);
  animation: lineSweepReverse 11s ease-in-out infinite;
}

.page-hero .hero-shell {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  padding: 1.3rem;
}

.page-hero .hero-shell::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 196, 0, 0.24), rgba(244, 196, 0, 0));
  right: -100px;
  top: -115px;
}

.page-hero .hero-shell.with-media {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 1rem;
  align-items: center;
}

.hero-shell-content {
  position: relative;
  z-index: 2;
}

.hero-shell-media {
  margin: 0;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  border: 1px solid rgba(244, 196, 0, 0.26);
  overflow: hidden;
  min-height: 224px;
  box-shadow: var(--shadow-md);
  background: #0b1020;
}

.hero-shell-media img {
  width: 100%;
  height: 100%;
  min-height: 224px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.hero-shell-media:hover img {
  transform: scale(1.06);
}

.breadcrumb {
  font-size: 0.88rem;
  margin-bottom: 0.78rem;
  color: #bcc5db;
}

.breadcrumb a {
  color: #dce4f8;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.info-list .item {
  padding: 1rem;
}

.info-list h4 {
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.text-block {
  padding: 1.2rem;
  margin-bottom: 0.93rem;
}

.text-block a,
.panel a,
.info-list a {
  color: #ffe27e;
}

.notice {
  margin: 1rem 0;
  border-radius: 12px;
  border: 1px solid rgba(244, 196, 0, 0.52);
  background: rgba(244, 196, 0, 0.1);
  color: #ffe9a7;
  padding: 0.86rem 0.95rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.contact-cta-panel,
.contact-detail-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: var(--shadow-lg);
}

.contact-cta-panel {
  padding: 1.35rem;
}

.contact-big-buttons {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-big-btn {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 18, 36, 0.76);
  min-height: 128px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.24rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-big-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 196, 0, 0.54);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.contact-big-btn.primary {
  background: linear-gradient(140deg, #ffd858, #efbb00);
  border-color: #f8d95e;
  color: #221700;
}

.contact-big-btn.whatsapp {
  background: linear-gradient(140deg, rgba(37, 211, 102, 0.22), rgba(16, 116, 57, 0.22));
  border-color: rgba(37, 211, 102, 0.42);
}

.contact-big-btn.whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.7);
}

.contact-big-btn.primary small {
  color: #3e2d00;
}

.contact-btn-label {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  color: #cad2e6;
}

.contact-big-btn.primary .contact-btn-label {
  color: #4d3700;
}

.contact-big-btn strong {
  font-size: 1.3rem;
  line-height: 1.2;
  color: #f4f7ff;
}

.contact-big-btn.primary strong {
  color: #1f1500;
}

.contact-big-btn small {
  color: #aab6d2;
  font-size: 0.84rem;
}

.subpage-perks {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.subpage-perks span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #dce3f6;
  font-size: 0.84rem;
  padding: 0.42rem 0.75rem;
}

.subpage-perks span.ec {
  border-color: rgba(244, 196, 0, 0.44);
  background: rgba(244, 196, 0, 0.1);
  color: #ffe28a;
}

.contact-info-stack {
  display: grid;
  gap: 0.8rem;
}

.contact-detail-card {
  padding: 1.1rem;
}

.contact-detail-card h3 {
  margin-bottom: 0.35rem;
}

.contact-detail-card img {
  margin-top: 0.75rem;
  border-radius: 12px;
}

.site-footer {
  margin-top: 2.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  left: -20%;
  right: -20%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 196, 0, 0.78), transparent);
  box-shadow: 0 0 16px rgba(244, 196, 0, 0.5);
  animation: lineSweep 11s ease-in-out infinite;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.footer-inner > div:first-child {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.footer-inner > div:first-child .footer-title {
  margin: 0;
  font-size: 0.94rem;
  color: #f0f4ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
}

.footer-inner > div:first-child .copy:first-of-type {
  margin: 0;
  color: #a6b1cb;
  font-size: 0.9rem;
}

.footer-inner > div:first-child .copy:last-of-type {
  margin: 0;
  color: #8f9ab8;
  font-size: 0.9rem;
}

.footer-title {
  margin: 0 0 0.25rem;
  color: #d6ddf0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.88rem;
  flex-wrap: wrap;
}

.footer-links .footer-title {
  display: none;
}

.footer-inner .footer-links + .footer-links {
  border-left: 0;
  padding-left: 0;
}

.footer-links a,
.footer-links button {
  font: inherit;
  font-size: 0.96rem;
  color: #bdc6dc;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #ffe58b;
}

.copy {
  color: #96a1bc;
  margin: 0 0 0.25rem;
  font-size: 0.87rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 24, 46, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-xl);
  padding: 1rem;
}

.cookie-banner p {
  margin: 0 0 0.72rem;
  color: #ced6ea;
  font-size: 0.93rem;
}

.cookie-banner strong {
  color: #ffe27f;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  width: min(580px, 95vw);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(18, 25, 49, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-xl);
  padding: 1.1rem;
}

.cookie-row {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 0.62rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.toggle {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #7f8baa;
  position: relative;
  border: 0;
  cursor: pointer;
}

.toggle::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.22s ease;
}

.toggle.active {
  background: #2fa06e;
}

.toggle.active::after {
  transform: translateX(20px);
}

.toggle[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-24px) translateX(14px);
  }
}

@keyframes gridFlow {
  from {
    transform: translate3d(-120px, -60px, 0);
  }
  to {
    transform: translate3d(120px, 60px, 0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.48;
  }
}

@keyframes lineSweep {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(220%);
    opacity: 0;
  }
}

@keyframes lineSweepReverse {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(-220%);
    opacity: 0;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .app-showcase,
  .grid-3,
  .split,
  .stat-strip,
  .contact-layout,
  .info-list,
  .page-hero .hero-shell.with-media {
    grid-template-columns: 1fr;
  }

  .hero-slider,
  .hero-slider-track,
  .hero-slide img {
    min-height: 320px;
  }

  .hero-shell-media {
    min-height: 210px;
  }

  .app-slider-shell {
    position: static;
  }

  .app-slider {
    max-width: 100%;
  }

  .app-slider .hero-slider-track {
    min-height: 500px;
  }

  .app-slider .hero-slide img {
    min-height: 500px;
    height: 500px;
  }

  .app-qr-block {
    grid-template-columns: 78px 1fr;
  }

  .app-qr-block img {
    width: 78px;
    height: 78px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    align-items: start;
  }

  .footer-inner > div:first-child {
    align-items: flex-start;
    gap: 0.35rem;
  }

  .footer-inner .footer-links + .footer-links {
    border-left: 0;
    padding-left: 0;
  }

  .footer-links {
    gap: 0.58rem;
  }
}

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 4vw;
    right: 4vw;
    background: rgba(11, 17, 33, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    display: grid;
    padding: 0.66rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.22s ease;
    backdrop-filter: blur(12px);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a,
  .nav-dropdown > a {
    padding: 0.58rem 0.72rem;
  }

  .nav-dropdown {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    margin-top: 0.4rem;
    min-width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    pointer-events: none;
    padding: 0 0.45rem;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    max-height: 420px;
    padding: 0.45rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 5.8rem;
  }
}

@media (max-width: 560px) {
  .hero-slider,
  .hero-slider-track,
  .hero-slide img {
    min-height: 260px;
  }

  .app-slider .hero-slider-track {
    min-height: 420px;
  }

  .app-slider .hero-slide img {
    min-height: 420px;
    height: 420px;
  }

  .app-qr-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-qr-block img {
    margin: 0 auto;
  }

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

  .slider-btn {
    width: 34px;
    height: 34px;
  }
}
