/* ===== Variables (Header + Hospitality – dark, red, white) ===== */
:root {
  --bg: #1a1a1a;
  --bg-elevated: #0e0e0e;
  --bg-card: #2c2b2b;
  --footer-accent: #070707;
  --text: #FFFFFF;
  --text-muted: #C2C4C6;
  --accent: #bd0212;
  --accent-red: #db1223;
  --btn-dark: #282828;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --font: 'Montserrat', system-ui, sans-serif;
  --header-h: 72px;
}

/* ===== Reset & base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #d32f3d;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-nav {
  background: var(--btn-dark);
  color: var(--text);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
}

.btn-nav:hover {
  background: #333;
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* ===== Header (Code Me/Up style) ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: 100%;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links .nav-active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* ===== Hero – ceo ekran na ulasku ===== */
.hero-hospitality {
  position: relative;
  min-height: 100vh;
  padding: var(--header-h) 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

}

.hero-hospitality-bg {
  position: absolute;
  inset: 0;
  background: url(assets/hero-background.jpg) center/cover no-repeat;
  filter: brightness(0.25) blur(2px);
  opacity: 0.9;
}

.hero-hospitality-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.6) 100%);
}

.hero-hospitality-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.hero-hospitality-title {
  font-size: clamp(4rem, 7.5vw, 5.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero-hospitality-subtitle {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-hospitality-tagline {
  font-size: clamp(1.8rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-pagination {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
  z-index: 2;
}

.hero-hospitality .hero-scroll-indicator {
  bottom: 2.5rem;
}

/* Benefit ikone – drugi ekran (ceo viewport) */
.hero-benefits-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-h) 1.5rem 2rem;
  background: #000000;
  position: relative;
}

.hero-benefits-section .hero-benefits {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.hero-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.6;
  flex: 1;
  max-width: 220px;
}

.hero-benefit span {
  color: var(--text);
  font-weight: 500;
  display: block;
}

.hero-benefit-icon {
  width: 140px;
  height: 140px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  z-index: 2;
}

.hero-scroll-indicator img {
  width: 24px;
  height: auto;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== Stat card (white card – 40% smart TV) ===== */
.stat-card-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.stat-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-card {
  text-align: center;
  padding: 2rem 2.5rem;
  border-radius: 28px;
  max-width: 420px;
}

.stat-card-white {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-card-value {
  display: block;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.stat-card-text {
  font-family: 'Montserrat', var(--font);
  font-size: 1.05rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0 0 0.75rem;
}

.stat-card-cite {
  font-family: 'Montserrat', var(--font);
  font-size: 0.8rem;
  font-style: italic;
  color: #9ca3af;
  display: block;
}

/* ===== How It Works - ceo viewport ===== */
.how-works {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 10vh) 1.5rem 6vh;
  position: relative;
  background: #151515;
}

.how-works > svg {
  position: relative;
  z-index: 1;
  max-width: 65%;
  height: auto;
}

.how-works::before {
  content: '';
  position: absolute;
  inset: -3rem 0 -3rem 0;
  
  opacity: 1;
  z-index: 0;
}

.how-works::after {
  content: none;
}

.how-works-content {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.how-works-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.how-works-title span {
  color: var(--text);
  font-weight: 700;
}

.how-diagram {
  display: none;
}

.how-works-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  position: relative;
}

.how-works-image {
  max-width: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.how-diagram-top,
.how-diagram-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  position: relative;
}

.how-diagram-top::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 100px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0px,
    var(--accent) 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

.how-diagram-bottom::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
  width: 2px;
  height: 100px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0px,
    var(--accent) 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

.how-entity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.how-entity-center {
  grid-column: 2;
}

/* Strelicama između entiteta */
.how-diagram-top .how-entity:first-child::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0px,
    var(--accent) 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

.how-diagram-top .how-entity:last-child::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0px,
    var(--accent) 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

.how-diagram-bottom .how-entity:first-child::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0px,
    var(--accent) 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

.how-diagram-bottom .how-entity:last-child::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0px,
    var(--accent) 4px,
    transparent 4px,
    transparent 8px
  );
  z-index: 0;
}

/* Horizontalne strelice ka cloud-u */
.how-diagram-bottom .how-entity:first-child::after {
  content: none;
}

.how-diagram-bottom .how-entity:last-child::after {
  content: none;
}

.how-arrow {
  position: absolute;
  top: 65%;
  width: 140px;
  height: 30px;
  transform: translateY(-50%);
  z-index: 0;
}

.how-arrow-left {
  left: -155px;
  transform: translateY(-50%) scaleX(-1);
}

.how-arrow-right {
  right: -155px;
}

.how-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.how-entity-icon {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  stroke-width: 1.5;
}

.how-entity-icon-red {
  color: var(--accent);
  width: 130px;
  height: 130px;
  position: relative;
  margin-top: 0.75rem; /* spusti ikonu da tekst bude više */
}

.how-entity-icon-red::before {
  content: '★★★★';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  font-weight: 400;
}

.how-entity-icon svg {
  width: 100%;
  height: 100%;
}

.how-entity-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.how-entity-systems {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1rem;
  width: 100%;
}

.how-system-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.how-system-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.how-system-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-system-list li {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0.15rem 0;
}

.how-entity-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.how-entity-features {
  margin-top: 0.5rem;
}

.how-entity-features li {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0.2rem 0;
  text-align: left;
}

/* ===== Biggest Screen section ===== */
/* ===== The Biggest Screen - ceo viewport ===== */
.biggest-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-h) 1rem 2rem;
  background: #0f0f0f;
  background-image: url(assets/big-pic.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.biggest-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  pointer-events: none;
}

.biggest-screen-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.biggest-screen-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: -0.01em;
}

.biggest-screen-title strong {
  font-weight: 700;
  color: var(--text);
}

.biggest-screen-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  width: 100%;
  column-gap: 3rem;
}

.biggest-screen-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.biggest-screen-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.biggest-screen-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text);
  font-size: 1.3rem;
  padding: 0.65rem 0;
  line-height: 1.6;
  white-space: nowrap;
}

.biggest-screen-list .arrow-red {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.biggest-screen-box {
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: rgba(20, 20, 20, 0.95);
}

.biggest-screen-box p {
  color: var(--text);
  font-size: 1.4rem;
  line-height: 2;
  margin: 0;
}

.biggest-screen-box strong {
  color: var(--accent);
  font-weight: 700;
  font-size: 1em;
}

/* ===== Numbers That Matter - ceo viewport ===== */
.numbers-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-h) 0 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  position: relative;
}

.numbers-section-inner {
  width: 100vw;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.numbers-section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  text-align: center;
  color: var(--text);
  margin-bottom: 10rem;
  letter-spacing: -0.01em;
}

.numbers-section-title span {
  font-weight: 700;
  color: var(--text);
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 10rem;
  width: 100vw;
  max-width: 100vw;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.number-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.number-value {
  display: block;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.number-desc {
  color: var(--text);
  font-size: 1rem;
  margin: 0 0 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.number-cite {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  margin: 0;
  margin-top: auto;
}

.numbers-cta {
  text-align: center;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ===== Small Box section - ceo viewport, slika desna polovina ===== */
.small-box-section {
  min-height: 100vh;
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: var(--header-h) 1.5rem 3rem;
  display: flex;
  align-items: center; /* tekst po vertikali na sredini viewporta */
}

.small-box-section::after {
  content: '';
  position: absolute;  background: var(--accent);
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-image: url(assets/scan-img.png);
  background-size: cover;
  background-position: right;
}

.small-box-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-start;
}

.small-box-title {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.small-box-subtitle {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.small-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.small-box-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
  padding: 0.6rem 0;
  font-size: 1.55rem;
  line-height: 1.6;
}

.small-box-list .arrow-red {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.arrow-red {
  color: var(--accent);
  font-weight: 700;
}

.small-box-content {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centriraj blok teksta unutar leve polovine */
}

.small-box-visual {
  display: none;
}

/* ===== Trusted section - ceo viewport ===== */
.trusted-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-h) 0 2rem;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  position: relative;
}

.trusted-section-inner {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trusted-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.trusted-section-title span {
  font-weight: 400;
  color: var(--text);
}

.trusted-section-desc {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 0.95rem;
  max-width: 700px;
}

.trusted-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 100vw;
  padding: 0 1rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trusted-cards {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

.trusted-card {
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  min-height: 300px;
  position: relative;
  background-image:  url(assets/asia-hotel.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.trusted-card-serbia {
  background-image: url(assets/hogo-hotel.png);
  background-size: cover;
  background-position: center;
}

.trusted-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.trusted-card > * {
  position: relative;
  z-index: 1;
}

.trusted-logo-img-wrapper {
  margin: 0.5rem 0 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.trusted-logo-img {
  max-width: 100px;
  height: auto;
  display: block;
}

.trusted-location-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.trusted-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.trusted-pin svg {
  width: 100%;
  height: 100%;
  fill: rgba(194, 196, 198, 0.7); /* svetlo siva, blago providna */
}

.trusted-location {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trusted-quote {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.trusted-quote:last-child {
  margin-bottom: 0;
}

/* ===== Sponsors + Footer - ceo viewport ===== */
.sponsors-footer-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: var(--header-h) 0 0;
  background: var(--bg);
  position: relative;
}

.sponsors-footer-line {
  height: 4px;
  background: var(--accent);
  width: 100%;
}

.sponsors-footer-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2rem 0;
  width: 100%;
}

.footer-bottom {
  background: var(--accent);
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.footer-bottom span {
  display: block;
  text-align: left;
}

/* Key Sponsors */
.sponsors-section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 3rem;
}

.sponsors-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  color: var(--accent);
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 2.5rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card);
  border-radius: var(--radius-lg);
  min-height: 170px;
  position: relative;
  transform: rotate(45deg);
  width: 170px;
  height: 170px;
  margin: 0 auto;
}

.sponsor-item::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(45deg, transparent, rgba(230, 57, 70, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.sponsor-logo {
  text-align: center;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  transform: rotate(-45deg);
}

.sponsor-logo img {
  max-width: 100%;
  height: auto;
}

/* Footer */
.footer-content {
  padding-top: 2rem;
}

.footer-content .footer-top {
  margin-bottom: 0;
}

/* ===== Sections ===== */
.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-title strong {
  font-weight: 700;
  color: var(--text);
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ===== Features ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== How it works ===== */
.how {
  background: var(--bg-elevated);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Pricing ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 40px rgba(99, 102, 241, 0.15);
}

.pricing-card .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
}

.price .currency {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.price .period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card ul {
  margin-bottom: 1.5rem;
}

.pricing-card li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-card .btn {
  width: 100%;
}

/* ===== CTA ===== */
.cta {
  padding: 5rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg);
  padding: 0 0 2rem;
}

.footer-line {
  height: 4px;
  background: var(--footer-accent);
  margin-bottom: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  width: 100;
  margin: 0 calc(50% - 50vw) 0;
  padding: 3rem 20rem;
  background: var(--footer-accent);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.25rem 0;
}

.footer-brand p a {
  color: inherit;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-social a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--bg-card);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.footer-services h4 {

  align-content: center;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.footer-services p {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  line-height: 1.6;
  position: relative;
}

.footer-services p::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.footer-description {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.7;
  align-content: center;
  text-align: center;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  html, body {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  main,
  .hero-hospitality,
  .hero-benefits-section,
  .hero-benefits,
  .biggest-screen,
  .numbers-section,
  .small-box-section,
  .trusted-section,
  .sponsors-footer-section {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
  }
  .nav-links {
    display:none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .hero-benefits {
    flex-direction: column;
    gap: 1.5rem;
  }

  .how-diagram-top,
  .how-diagram-bottom {
    grid-template-columns: 1fr;
  }

  .how-entity-center {
    grid-column: 1;
  }

  .how-entity-systems {
    grid-template-columns: 1fr;
  }

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

  .biggest-screen-grid {
    grid-template-columns: 1fr;
  }
  .biggest-screen{
    width:100%
  }

  .numbers-section {
    padding: var(--header-h) 0 2rem;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    padding: 0;
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
  }

  .small-box-grid {
    grid-template-columns: 1fr;
  }

  .small-box-content {
    order: 1;
  }

  .small-box-visual {
    order: 0;
  }

  .trusted-section {
    padding: var(--header-h) 0 2rem;
  }

  .trusted-cards {
    grid-template-columns: 1fr;
    padding: 0;
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
  }

  .hero-hospitality {
    padding: var(--header-h) 0 5rem;
  }

  .hero-benefits-section {
    padding: var(--header-h) 0 2rem;
  }

  .how-works {
    padding: calc(var(--header-h) + 10vh) 1.25rem 6vh;
  }

  .how-works-title {
    font-size: 2.1rem;
    margin-bottom: 3rem;
  }

  .how-diagram-top,
  .how-diagram-bottom {
    gap: 1.5rem;
  }

  .biggest-screen {
    padding: var(--header-h) 0 2rem;
  }

  .small-box-section {
    padding: var(--header-h) 0 3rem;
  }

  .hero-benefits {
    padding: 0;
    max-width: 100vw;
    width: 100vw;
  }

  .biggest-screen-grid {
    padding: 0;
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
  }

  .small-box-grid {
    padding: 0;
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
  }

  .sponsors-grid {
    padding: 0 1rem;
    max-width: 100vw;
    width: 100vw;
    margin: 0;
    box-sizing: border-box;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    background: var(--footer-accent);
    margin: 0;
    padding: 2rem 1.5rem;
    width: 100%;
    justify-items: center;
  }

  .footer-social {
    justify-content: center;
  }
}
