:root {
  --bg: #082238;
  --bg-deep: #06192b;
  --panel: rgba(16, 55, 88, 0.66);
  --panel-strong: rgba(18, 65, 103, 0.82);
  --line: rgba(107, 197, 235, 0.24);
  --line-bright: rgba(29, 230, 230, 0.46);
  --text: #f7fbff;
  --muted: #c8d5e3;
  --soft: #91a8bc;
  --cyan: #1de6e6;
  --teal: #16d4c7;
  --blue: #3f7dff;
  --green: #10c998;
  --violet: #7b4ce6;
  --orange: #ff931f;
  --shadow: 0 24px 70px rgba(0, 7, 18, 0.48);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 70% 7%, rgba(60, 139, 197, 0.3), transparent 34rem),
    linear-gradient(180deg, #0b2b48 0%, var(--bg) 45%, var(--bg-deep) 100%);
  color: var(--text);
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(29, 230, 230, 0.78);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--cyan);
  color: #062033;
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(180deg, rgba(5, 21, 36, 0.74), rgba(5, 21, 36, 0));
  backdrop-filter: blur(8px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand strong {
  color: var(--cyan);
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--cyan);
  filter: drop-shadow(0 0 20px rgba(29, 230, 230, 0.26));
}

.brand-mark path {
  fill: currentColor;
}

.brand-mark circle:first-of-type {
  fill: #f6fbff;
}

.brand-mark circle:last-of-type {
  fill: #0b2a45;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 52px);
  color: #eef7ff;
  font-weight: 500;
}

.nav-menu a {
  position: relative;
  padding: 10px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--cyan);
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.mobile-facebook-link {
  display: none;
}

.nav-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.facebook-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(24, 119, 242, 0.52);
  border-radius: 999px;
  background: rgba(24, 119, 242, 0.13);
  color: #dff0ff;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

.facebook-nav-link span,
.mobile-facebook-link span {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.status-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid rgba(29, 230, 230, 0.35);
  border-radius: 999px;
  background: rgba(29, 230, 230, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 12px 30px rgba(5, 21, 36, 0.22);
  color: var(--cyan);
  padding: 0 24px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(29, 230, 230, 0.85);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 34, 56, 0.66);
  color: var(--text);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/fortress-hero.webp");
  background-size: cover;
  background-position: center top;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 34%, rgba(29, 230, 230, 0.16), transparent 17rem),
    linear-gradient(90deg, rgba(5, 21, 36, 0.98) 0%, rgba(6, 25, 43, 0.78) 42%, rgba(6, 25, 43, 0.42) 70%, rgba(6, 25, 43, 0.72) 100%),
    linear-gradient(180deg, rgba(6, 25, 43, 0.35) 0%, rgba(6, 25, 43, 0.35) 54%, var(--bg) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  align-items: center;
  gap: clamp(34px, 7vw, 110px);
  min-height: 840px;
  padding-top: 110px;
  padding-bottom: 88px;
}

.hero-content {
  min-width: 0;
  width: 100%;
  max-width: 660px;
}

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 34px;
  border: 1px solid rgba(29, 230, 230, 0.38);
  border-radius: 999px;
  background: rgba(7, 38, 62, 0.58);
  color: var(--cyan);
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow svg,
.button svg,
.contact-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.12;
  font-weight: 800;
}

h1 span {
  display: block;
  color: var(--cyan);
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 42px;
  color: #d8e4ef;
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  border-radius: 8px;
  padding: 0 26px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #22e1d3, #12b8e8);
  color: #052237;
  box-shadow: 0 18px 42px rgba(18, 184, 232, 0.24);
}

.button-secondary {
  border: 1px solid rgba(216, 234, 248, 0.38);
  background: rgba(9, 35, 58, 0.66);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(29, 230, 230, 0.68);
  background: rgba(14, 52, 84, 0.76);
}

.phone-stage {
  position: relative;
  justify-self: end;
  min-width: 0;
  width: min(100%, 301px);
  margin-top: 44px;
}

.phone-glow {
  position: absolute;
  inset: 10% 0 6%;
  border-radius: 48px;
  background: radial-gradient(circle, rgba(29, 230, 230, 0.23), transparent 64%);
  filter: blur(22px);
}

.phone-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 42px rgba(0, 8, 20, 0.62)) drop-shadow(0 0 34px rgba(29, 230, 230, 0.16));
}

.section {
  position: relative;
  padding: 78px 0 0;
}

.features {
  margin-top: -130px;
  z-index: 2;
}

.section-eyebrow {
  margin-bottom: 20px;
  border: 0;
  background: transparent;
  padding: 0;
}

.section-heading {
  min-width: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-content h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
}

.section-heading p {
  max-width: 500px;
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.75;
}

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

.feature-card,
.contact-panel,
.contact-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 50px rgba(0, 8, 20, 0.18);
  backdrop-filter: blur(14px);
}

.feature-card {
  min-width: 0;
  min-height: 188px;
  border-radius: 8px;
  padding: 28px 28px 26px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 22px;
  row-gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 230, 230, 0.4);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel-strong);
}

.icon-bubble {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.icon-bubble svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
}

.icon-bubble.teal {
  background: linear-gradient(135deg, #20eadb, #10c7be);
}

.icon-bubble.blue {
  background: linear-gradient(135deg, #4c88ff, #3461e9);
}

.icon-bubble.green {
  background: linear-gradient(135deg, #16d9aa, #0bb783);
}

.icon-bubble.violet {
  background: linear-gradient(135deg, #9160ff, #6339d5);
}

.icon-bubble.orange {
  background: linear-gradient(135deg, #ffb13f, #ff7a19);
}

.icon-bubble.cyan {
  background: linear-gradient(135deg, #2bd9e9, #0c9ed0);
}

.feature-card h3 {
  margin-bottom: 4px;
  font-size: 1.28rem;
  line-height: 1.25;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact {
  padding-bottom: 28px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.28fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border-radius: 8px;
  padding: clamp(26px, 5vw, 48px);
}

.mosque-art {
  color: var(--cyan);
  opacity: 0.9;
  filter: drop-shadow(0 0 18px rgba(29, 230, 230, 0.22));
}

.mosque-art svg {
  width: 100%;
  height: auto;
}

.mosque-art path {
  stroke-width: 3.5;
}

.mosque-art .thin {
  stroke-width: 2.2;
  opacity: 0.8;
}

.contact-content > p {
  max-width: 670px;
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.contact-content {
  min-width: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.contact-card {
  min-height: 94px;
  border-radius: 8px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  overflow: hidden;
}

a.contact-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

a.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-bright);
}

.contact-card svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--cyan);
  stroke-width: 2.2;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-weight: 700;
}

.contact-card span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-button {
  min-height: 54px;
  padding-inline: 22px;
}

.contact-form-section {
  padding-top: 18px;
}

.contact-form-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(107, 197, 235, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 0%, rgba(29, 230, 230, 0.14), transparent 35%),
    linear-gradient(145deg, rgba(18, 65, 103, 0.72), rgba(7, 31, 52, 0.78));
  box-shadow: var(--shadow);
}

.contact-form-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.contact-form-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-quick span {
  padding: 10px 12px;
  border: 1px solid rgba(107, 197, 235, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(107, 197, 235, 0.24);
  border-radius: 10px;
  background: rgba(3, 15, 28, 0.62);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 14px 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(29, 230, 230, 0.72);
  box-shadow: 0 0 0 3px rgba(29, 230, 230, 0.12);
}

.contact-form ::placeholder {
  color: rgba(200, 213, 227, 0.62);
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
}

.contact-form .is-invalid {
  border-color: rgba(255, 101, 101, 0.78);
  box-shadow: 0 0 0 3px rgba(255, 101, 101, 0.12);
}

.field-error {
  color: #ffb0b0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-status {
  margin: -4px 0 0;
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.form-status.is-success {
  color: #6cf1c8;
}

.form-status.is-error {
  color: #ffb0b0;
}

.site-footer {
  padding: 48px 0 34px;
  border-top: 1px solid rgba(107, 197, 235, 0.18);
  background:
    radial-gradient(circle at 18% 0%, rgba(29, 230, 230, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(6, 25, 43, 0.2), rgba(3, 13, 25, 0.62));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.55fr) minmax(220px, 0.7fr);
  align-items: stretch;
  gap: 28px;
  color: var(--muted);
}

.footer-main,
.footer-links,
.footer-contact {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(107, 197, 235, 0.18);
  border-radius: 14px;
  background: rgba(10, 38, 62, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-brand {
  font-size: 1.25rem;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-main p,
.footer-bottom p {
  margin: 0;
}

.footer-main p {
  max-width: 520px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(29, 230, 230, 0.3);
  border-radius: 999px;
  background: rgba(29, 230, 230, 0.08);
  color: var(--text);
  font-weight: 800;
}

.footer-social span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-weight: 900;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner a,
.footer-bottom a {
  color: var(--cyan);
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  overflow-wrap: anywhere;
  color: var(--muted);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 22px;
  color: var(--soft);
  border-top: 1px solid rgba(107, 197, 235, 0.16);
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .nav-menu.is-open {
    position: fixed;
    top: 82px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 28, 47, 0.96);
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open a {
    padding: 14px;
  }

  .nav-menu.is-open .mobile-facebook-link {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(107, 197, 235, 0.18);
    color: #dff0ff;
    font-weight: 800;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    min-height: 760px;
    gap: 34px;
  }

  .phone-stage {
    width: min(100%, 238px);
  }

  .features {
    margin-top: -70px;
  }

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

  .contact-panel,
  .contact-cards,
  .contact-form-panel {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    min-height: 78px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1200px);
  }

  .nav {
    min-height: 76px;
  }

  .brand {
    font-size: 1.22rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 21, 36, 0.94) 0%, rgba(6, 25, 43, 0.82) 54%, var(--bg) 100%),
      radial-gradient(circle at 75% 45%, rgba(29, 230, 230, 0.14), transparent 16rem);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 112px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 0.74rem;
  }

  h1 {
    font-size: clamp(2.15rem, 8vw, 2.85rem);
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .phone-stage {
    justify-self: center;
    width: min(76vw, 204px);
    margin-top: 8px;
  }


  .features {
    margin-top: -64px;
  }

  .section {
    padding-top: 56px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .contact-content h2 {
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 6vw, 2rem);
  }

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

  .feature-card {
    min-height: auto;
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 22px;
  }

  .icon-bubble {
    width: 64px;
    height: 64px;
  }

  .icon-bubble svg {
    width: 29px;
    height: 29px;
  }

  .contact-panel {
    padding: 22px;
  }

  .mosque-art {
    max-width: 420px;
    margin-inline: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

@media (max-width: 420px) {
  .shell {
    width: min(100% - 24px, 1200px);
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    min-height: 58px;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 2.35rem);
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .icon-bubble {
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Šta dolazi page */
.coming-page {
  background:
    radial-gradient(circle at 80% 12%, rgba(28, 224, 224, 0.18), transparent 22rem),
    radial-gradient(circle at 14% 55%, rgba(126, 70, 238, 0.12), transparent 24rem),
    linear-gradient(180deg, #071b2e 0%, #082238 46%, #06192b 100%);
}

.coming-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 70px;
}

.coming-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 70px;
  width: 52vw;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(29, 230, 230, 0.2), transparent 67%);
  filter: blur(10px);
  pointer-events: none;
}

.coming-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 35%, rgba(20, 198, 226, 0.18), transparent 19rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 55%);
  pointer-events: none;
}

.coming-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: 44px;
}

.coming-hero-copy {
  min-width: 0;
}

.coming-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6vw, 5.35rem);
}

.coming-hero h1 span {
  color: var(--cyan);
}

.coming-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: #d4e1ec;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-mini-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin-top: 42px;
}

.hero-mini-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  border: 1px solid rgba(107, 197, 235, 0.2);
  border-radius: 8px;
  background: rgba(17, 58, 91, 0.55);
  color: #e9f6ff;
  padding: 12px 14px;
  font-weight: 700;
}

.hero-mini-list i {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: radial-gradient(circle, var(--cyan), #0896b8);
  box-shadow: 0 0 20px rgba(29, 230, 230, 0.25);
}

.hero-phone-stack {
  position: relative;
  min-height: 520px;
}

.phone-layer {
  position: absolute;
  width: min(31vw, 285px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 6, 16, 0.54));
}

.phone-center {
  z-index: 3;
  left: 50%;
  top: 0;
  width: min(34vw, 326px);
  transform: translateX(-50%);
}

.phone-left {
  z-index: 1;
  left: 6%;
  top: 60px;
  transform: rotate(-7deg);
  opacity: 0.94;
}

.phone-right {
  z-index: 2;
  right: 2%;
  top: 58px;
  transform: rotate(6deg);
  opacity: 0.96;
}

.coming-section {
  padding: 56px 0;
}

.coming-section h2,
.business-section h2,
.coming-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.13;
}

.app-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.app-feature-card,
.split-band,
.business-panel,
.benefit-grid article,
.impact-panel,
.cta-panel {
  border: 1px solid rgba(107, 197, 235, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(13, 45, 72, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 58px rgba(0, 8, 20, 0.18);
  backdrop-filter: blur(14px);
  border-radius: 8px;
}

.app-feature-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 18px;
  min-height: 318px;
  padding: 22px;
  overflow: hidden;
}

.app-feature-card img {
  align-self: end;
  justify-self: center;
  width: 150px;
  max-height: 300px;
  object-fit: contain;
}

.app-card-copy {
  min-width: 0;
}

.card-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), #13abc8);
  color: #052237;
  font-weight: 800;
}

.app-feature-card h3,
.benefit-grid h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.app-feature-card p,
.split-band p,
.business-copy p,
.benefit-grid p,
.impact-panel p,
.coming-cta p,
.wide-intro {
  color: var(--muted);
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #eaf7ff;
}

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

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(29, 230, 230, 0.16);
  border: 1px solid rgba(29, 230, 230, 0.8);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.7em;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

.split-band {
  margin: 34px auto 0;
  padding: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(126, 70, 238, 0.16), transparent 24rem),
    rgba(10, 37, 61, 0.78);
}

.split-band.alt {
  background:
    radial-gradient(circle at 80% 50%, rgba(29, 230, 230, 0.12), transparent 25rem),
    rgba(10, 37, 61, 0.72);
}

.two-column-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 42px 0;
}

.split-band .shell {
  width: min(100% - 96px, 1120px);
}

.two-col-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phone-pair {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.phone-pair img {
  width: min(47%, 205px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 7, 18, 0.42));
}

.business-section {
  padding: 58px 0;
}

.business-panel {
  padding: clamp(24px, 4vw, 36px);
  border-color: rgba(29, 230, 230, 0.52);
  background:
    radial-gradient(circle at 35% 0%, rgba(29, 230, 230, 0.13), transparent 22rem),
    rgba(10, 37, 61, 0.82);
}

.business-copy {
  max-width: 680px;
}

.business-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.business-visuals figure {
  margin: 0;
}

.business-screen-main,
.business-screen-grid figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107, 197, 235, 0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 22px 48px rgba(0, 8, 20, 0.24);
  padding: 10px;
  cursor: zoom-in;
}

.business-screen-main {
  transform: perspective(1100px) rotateX(1deg) rotateY(-2deg);
  transform-origin: center;
}

.business-screen-main img,
.business-screen-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
  cursor: zoom-in;
}

.business-screen-main:focus-visible,
.business-screen-grid figure:focus-visible,
.business-screen-main img:focus-visible,
.business-screen-grid img:focus-visible {
  outline: 3px solid rgba(29, 230, 230, 0.78);
  outline-offset: 4px;
}

.business-screen-main::after,
.business-screen-grid figure::after {
  content: "Klikni za veći prikaz";
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 24, 40, 0.82);
  color: #dff5ff;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.business-screen-main:hover::after,
.business-screen-grid figure:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.business-screen-main span,
.business-screen-grid span {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
  border: 1px solid rgba(29, 230, 230, 0.34);
  border-radius: 999px;
  background: rgba(5, 24, 40, 0.84);
  color: var(--cyan);
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 800;
  pointer-events: none;
}

.business-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.business-screen-grid figure {
  padding: 8px;
}

.business-screen-open {
  display: block;
  border-radius: 6px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(2, 10, 18, 0.86);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox img {
  max-width: min(96vw, 1280px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.image-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(8, 34, 56, 0.9);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.business-tools {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  border-radius: 8px;
  background: rgba(12, 45, 72, 0.68);
  padding: 12px;
}

.business-tools div {
  min-width: 0;
  border: 1px solid rgba(107, 197, 235, 0.18);
  border-radius: 8px;
  padding: 14px;
}

.business-tools strong {
  display: block;
  margin-bottom: 8px;
  color: #f4fbff;
}

.business-tools span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.wide-intro {
  max-width: 920px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.benefit-grid article {
  min-height: 190px;
  padding: 22px;
}

.benefit-grid h3 {
  font-size: 1.08rem;
}

.impact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) 140px;
  gap: 36px;
  align-items: center;
  padding: 34px;
}

.quick-access-phone {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 7, 18, 0.42));
}

.coming-cta {
  padding: 26px 0 48px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-color: rgba(29, 230, 230, 0.42);
}

.cta-line-art {
  position: relative;
  height: 110px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(29, 230, 230, 0.38) 12% 14%, transparent 14%),
    radial-gradient(circle at 55% 45%, rgba(29, 230, 230, 0.18), transparent 55%);
}

.cta-line-art span {
  position: absolute;
  left: 54%;
  top: 20px;
  width: 34px;
  height: 34px;
  border: 3px solid var(--cyan);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 18px rgba(29, 230, 230, 0.55));
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--soft);
  font-size: 0.94rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
}

.cta-actions .button {
  min-height: 54px;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .coming-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-phone-stack {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .app-card-grid {
    grid-template-columns: 1fr;
  }

  .business-visuals {
    grid-template-columns: 1fr;
  }

  .business-tools,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .coming-hero {
    padding-top: 112px;
  }

  .hero-mini-list,
  .two-column-band,
  .impact-panel {
    grid-template-columns: 1fr;
  }

  .quick-access-phone {
    width: min(74vw, 220px);
    justify-self: center;
  }

  .split-band .shell {
    width: min(100% - 32px, 1120px);
  }

  .business-visuals {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .business-screen-main {
    width: 100%;
    transform: none;
  }

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

  .business-tools,
  .benefit-grid,
  .two-col-list {
    grid-template-columns: 1fr;
  }

  .phone-left,
  .phone-right,
  .phone-center {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: min(86vw, 270px);
  }

  .hero-phone-stack {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    min-height: auto;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .app-feature-card {
    grid-template-columns: 1fr;
  }

  .app-feature-card img {
    width: min(72vw, 210px);
    max-height: none;
  }

  .phone-pair {
    flex-direction: column;
    align-items: center;
  }

  .phone-pair img {
    width: min(82vw, 240px);
  }

  .cta-actions {
    flex-direction: column;
  }
}

/* Partnerstvo page */
body.business-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(123, 76, 230, 0.26), transparent 26%),
    radial-gradient(circle at 18% 45%, rgba(29, 230, 230, 0.18), transparent 30%),
    linear-gradient(180deg, #06192b 0%, #082238 38%, #06192b 100%);
}

.button-tertiary {
  border: 1px solid rgba(123, 76, 230, 0.72);
  background: rgba(123, 76, 230, 0.15);
  color: var(--text);
}

.button-tertiary:hover {
  border-color: rgba(29, 230, 230, 0.62);
  background: rgba(123, 76, 230, 0.24);
}

.biz-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(107, 197, 235, 0.18);
}

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

.biz-hero::before {
  width: 540px;
  height: 540px;
  right: -150px;
  top: 18px;
  border: 1px solid rgba(29, 230, 230, 0.38);
  border-radius: 50%;
  transform: rotate(-18deg) scaleX(1.34);
}

.biz-hero::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 25, 43, 0.9) 0%, rgba(6, 25, 43, 0.22) 58%, rgba(6, 25, 43, 0.82) 100%),
    radial-gradient(circle at 84% 22%, rgba(29, 230, 230, 0.18), transparent 32%);
}

.biz-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 48px;
  align-items: center;
  min-height: 620px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.biz-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(3rem, 5.4vw, 6.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.biz-hero-copy h1 span,
.centered-title span {
  color: var(--cyan);
}

.biz-hero-copy > p:not(.section-eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.75;
}

.biz-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 30px;
}

.biz-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.biz-proof i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(107, 197, 235, 0.28);
  background:
    radial-gradient(circle at 45% 45%, rgba(29, 230, 230, 0.8), transparent 18%),
    rgba(255, 255, 255, 0.06);
}

.biz-phone-stack {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.biz-phone-stack::before {
  content: "";
  position: absolute;
  inset: 18% 6% 4%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(29, 230, 230, 0.25), transparent 66%);
  filter: blur(6px);
}

.biz-phone {
  position: absolute;
  width: min(31vw, 250px);
  height: auto;
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.48));
}

.biz-phone.center {
  left: 50%;
  top: 12px;
  z-index: 3;
  width: min(34vw, 285px);
  transform: translateX(-50%);
}

.biz-phone.left {
  left: 5%;
  top: 72px;
  z-index: 1;
  transform: rotate(-6deg);
  opacity: 0.94;
}

.biz-phone.right {
  right: 3%;
  top: 78px;
  z-index: 2;
  transform: rotate(5deg);
  opacity: 0.95;
}

.biz-section {
  padding: 56px 0;
}

.centered {
  text-align: center;
}

.centered-title {
  margin: 0 auto 14px;
  max-width: 900px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.centered-intro {
  max-width: 850px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.biz-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.biz-benefit-grid article,
.why-grid article {
  min-height: 194px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 65, 103, 0.74), rgba(7, 31, 52, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.biz-benefit-grid span {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(29, 230, 230, 0.18), rgba(123, 76, 230, 0.22)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(107, 197, 235, 0.24);
}

.biz-benefit-grid h3,
.why-grid h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.biz-benefit-grid p,
.why-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.biz-panel-section {
  padding-top: 84px;
}

.biz-panel-layout,
.reservation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 46px;
  align-items: center;
}

.biz-panel-copy h2,
.reservation-layout h2,
.prelaunch-panel h2,
.sponsor-panel h2,
.biz-cta-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1.08;
}

.biz-panel-copy p,
.reservation-layout p,
.prelaunch-panel p,
.sponsor-panel p,
.biz-cta-panel p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.72;
}

.biz-panel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.panel-device-frame {
  position: relative;
  width: min(100%, 760px);
  margin: 0;
  padding: 12px 12px 16px;
  border: 1px solid rgba(107, 197, 235, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(227, 238, 247, 0.14), rgba(2, 12, 24, 0.5));
  box-shadow: var(--shadow);
}

.panel-device-frame::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -18px;
  height: 18px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, rgba(126, 145, 160, 0.18), rgba(241, 247, 252, 0.5), rgba(126, 145, 160, 0.18));
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.38));
}

.panel-dashboard {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: clamp(260px, 32vw, 430px);
  border-radius: 10px;
  object-fit: cover;
  object-position: top left;
}

.panel-phone {
  display: none;
}

.reservation-band {
  width: min(100% - 48px, 1320px);
  margin: 28px auto;
  padding: 46px 34px 0;
  border: 1px solid rgba(123, 76, 230, 0.44);
  border-radius: 16px;
  background:
    radial-gradient(circle at 10% 12%, rgba(123, 76, 230, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(24, 36, 96, 0.82), rgba(10, 35, 68, 0.82));
  overflow: hidden;
}

.reservation-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 22px;
  min-height: 390px;
}

.reservation-phones img {
  width: min(22vw, 230px);
  height: auto;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.48));
}

.reservation-phones img:first-child {
  transform: translateY(24px) rotate(-2deg);
}

.reservation-phones img:last-child {
  transform: translateY(44px) rotate(2deg);
}

.prelaunch-panel,
.sponsor-panel,
.biz-cta-panel {
  border: 1px solid rgba(29, 230, 230, 0.32);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 40%, rgba(29, 230, 230, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(5, 93, 106, 0.75), rgba(10, 45, 79, 0.78));
}

.prelaunch-panel,
.sponsor-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
}

.sponsor-panel {
  border-color: rgba(123, 76, 230, 0.46);
  background:
    radial-gradient(circle at 2% 30%, rgba(123, 76, 230, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(34, 29, 86, 0.84), rgba(8, 30, 58, 0.84));
}

.mini-perk-grid,
.sponsor-grid,
.why-grid {
  display: grid;
  gap: 14px;
}

.mini-perk-grid,
.sponsor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-perk-grid span,
.sponsor-grid span {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
  border: 1px solid rgba(107, 197, 235, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.note {
  font-size: 0.96rem;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  text-align: left;
}

.partnership-types-section {
  padding-top: 46px;
}

.partnership-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.partnership-type-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(29, 230, 230, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 0%, rgba(29, 230, 230, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 65, 103, 0.78), rgba(7, 31, 52, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.partnership-type-grid h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.partnership-type-grid p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.partnership-type-grid .button {
  margin-top: auto;
  min-height: 46px;
  padding-inline: 18px;
  white-space: normal;
}

.biz-cta {
  padding: 34px 0 44px;
}

.biz-cta-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-color: rgba(123, 76, 230, 0.48);
  background:
    linear-gradient(135deg, rgba(41, 38, 128, 0.9), rgba(8, 46, 76, 0.78)),
    rgba(255, 255, 255, 0.05);
}

.biz-cta-panel .cta-actions {
  justify-content: flex-end;
}

.biz-cta-panel .cta-contact {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(107, 197, 235, 0.18);
  padding-top: 18px;
}

@media (max-width: 1120px) {
  .biz-hero-inner,
  .biz-panel-layout,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .biz-hero-inner {
    min-height: auto;
  }

  .biz-phone-stack {
    min-height: 560px;
  }

  .biz-phone {
    width: min(28vw, 230px);
  }

  .biz-phone.center {
    width: min(31vw, 268px);
  }

  .biz-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partnership-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prelaunch-panel,
  .sponsor-panel,
  .biz-cta-panel {
    grid-template-columns: 1fr;
  }

  .biz-cta-panel .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .biz-hero-inner,
  .biz-section,
  .biz-cta {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .biz-hero-copy h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .biz-proof {
    gap: 12px;
  }

  .biz-proof span {
    width: 100%;
  }

  .biz-phone-stack {
    min-height: 430px;
  }

  .biz-phone,
  .biz-phone.center {
    width: 46%;
  }

  .biz-phone.left {
    left: -2%;
    top: 68px;
  }

  .biz-phone.right {
    right: -3%;
    top: 78px;
  }

  .biz-benefit-grid,
  .why-grid,
  .partnership-type-grid,
  .mini-perk-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .biz-benefit-grid article,
  .why-grid article {
    min-height: auto;
    text-align: left;
  }

  .biz-benefit-grid span {
    margin-left: 0;
  }

  .panel-device-frame {
    width: 100%;
  }

  .panel-dashboard {
    height: clamp(190px, 54vw, 330px);
  }

  .reservation-band {
    width: min(100% - 32px, 1320px);
    padding: 32px 20px 0;
  }

  .reservation-phones {
    min-height: 300px;
    gap: 10px;
  }

  .reservation-phones img {
    width: 46%;
  }

  .prelaunch-panel,
  .sponsor-panel,
  .biz-cta-panel {
    padding: 24px;
    border-radius: 12px;
  }

  .mini-perk-grid span,
  .sponsor-grid span {
    min-height: auto;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 440px) {
  .biz-phone-stack {
    min-height: 350px;
  }

  .biz-phone,
  .biz-phone.center {
    width: 52%;
  }

  .biz-phone.center {
    top: 0;
  }

  .biz-phone.left,
  .biz-phone.right {
    top: 74px;
  }

  .reservation-phones {
    min-height: 250px;
  }
}
