/* style.css */

:root {
  --blue: #0b6cff;
  --blue-dark: #064fc4;
  --text: #071426;
  --muted: #617085;
  --bg: #f6f9fc;
  --card: #ffffff;
  --border: #dce6f2;
  --dark: #050b12;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
  transition:
    background .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    backdrop-filter .25s ease;
}

/* kad si na vrhu hero-a */
.nav-wrap:not(.scrolled) {
  background: rgba(5, 11, 18, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  box-shadow: none;
  border-radius: 14px;
}

/* kad krene scroll */
.nav-wrap.scrolled {
  background: rgba(5, 11, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border-radius: 14px;
}

.nav {
  position: relative;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 22px;
  border-radius: 22px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .88);
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
}

.nav-pill {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .06);
  color: white;
  transition: border-color .2s ease, background .2s ease;
}

.nav-pill:hover {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .1);
}

.hero {
  min-height: 760px;
  color: white;
  background:
    linear-gradient(90deg, rgba(3, 9, 17, .96) 0%, rgba(3, 9, 17, .84) 42%, rgba(3, 9, 17, .30) 100%),
    url("assets/hero-wall.png") center right / cover no-repeat;
  position: relative;
  margin-top: -100px;
  padding-top: 100px;

}

.hero-content {
  padding-top: 92px;
  max-width: 650px;
}

h1 {
  font-size: clamp(46px, 7vw, 78px);
  line-height: .98;
  margin: 0 0 26px;
  letter-spacing: -0.055em;
}

.hero p {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 34px;
  max-width: 610px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 32px rgba(11, 108, 255, .34);
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 40px rgba(11, 108, 255, .42);
}

.btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 58px;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 14px;
  max-width: 780px;
}

.trust-chip {
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
  border-radius: 18px;
  padding: 16px;
  color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.trust-chip img {
  width: 30px;
  height: 30px;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(11, 108, 255, .42));
}

.trust-chip strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 5px;
}

.trust-chip span {
  display: block;
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, .64);
}

section {
  padding: 84px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(9, 25, 44, .06);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef6ff;
  font-size: 22px;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.why {
  background: white;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  min-height: 230px;
}

.final-cta {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 17, .94), rgba(3, 9, 17, .78)),
    url("assets/hero-wall.png") center / cover no-repeat;
  color: white;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.cta-box h2 {
  margin: 0 0 14px;
  font-size: 42px;
  letter-spacing: -0.04em;
}

.cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 18px;
  line-height: 1.6;
  max-width: 680px;
}

footer {
  background: #020812;
  color: rgba(255, 255, 255, .75);
  padding: 34px 0;
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-contact a {
  font-size: 14px;
  font-weight: 600;

  color: #ffffff;

  transition: color .2s ease;
}

.footer-contact a:hover {
  color: #9ebcee;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
    background-position: center;
  }

  .hero-content {
    padding-top: 82px;
  }

  .trust,
  .grid-4,
  .pricing-row {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-box {
    display: block;
  }

  .section-head h2 {
    margin-bottom: 16px;
  }

  .cta-box .btn {
    margin-top: 24px;
  }
}

@media (max-width: 560px) {

  .container,
  .nav-wrap {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    height: 74px;
    padding: 0 14px;
  }

  .logo img {
    height: 38px;
  }

  .nav-actions {
    gap: 10px;
    font-size: 13px;
  }

  .nav-pill {
    padding: 9px 12px;
  }

  h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 58px 0;
  }

  .section-head h2 {
    font-size: 32px;
  }
}

/* =========================================
   FOR WHO SECTION
========================================= */

.for-who {
  background: #f8fbff;
  scroll-margin-top: 80px;
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.for-who-tile {
  background: #ffffff;
  border: 1px solid #dce6f2;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 18px 40px rgba(9, 25, 44, 0.06);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.for-who-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(9, 25, 44, 0.08);
  border-color: #cdddf1;
}

.for-who-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.for-who-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
  flex-shrink: 0;
}


.for-who-tile {
  padding: 34px 38px;
}

.for-who-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eef6ff;
  margin-bottom: 24px;
}

.for-who-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.for-who-top h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  color: #081326;
}

.for-who-tile p {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  line-height: 1.7;
  color: #617085;
}

#for-who,
#modules,
#pricing,
#contact {
  scroll-margin-top: 140px;

}

/* responsive */
@media (max-width: 960px) {
  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .for-who-tile {
    padding: 30px;
  }

   #for-who,
  #modules,
  #pricing,
  #contact {
    scroll-margin-top: 90px;
  
  }
}
@media (max-width: 768px) {

  .for-who-top {
    align-items: flex-start;
  }

  .for-who-top h3 {
    font-size: 28px;
  }

  .for-who-icon {
    width: 74px;
    height: 74px;
  }
}
/* =========================================
   CORE MODULES
========================================= */

.why {
  background: #ffffff;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* kartica */
.card {
  background: #ffffff;
  border: 1px solid #dce6f2;
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 18px 40px rgba(9, 25, 44, 0.06);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 300px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(9, 25, 44, 0.08);
  border-color: #cdddf1;
}

/* ikona */
.module-icon {
  margin-bottom: 24px;
}

.module-icon img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
}

/* naslov */
.card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
  color: #081326;
}

/* tekst */
.card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #617085;
}

/* =========================================
   RESPONSIVE
========================================= */

/* tablet */
@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {

  .section-head {
    display: flex;
    flex-direction: column;

    gap: 18px;

    text-align: center;
  }

  .section-head h2 {
    margin: 0;

    font-size: 52px;
    line-height: 0.96;
  }

  .section-head p {
    margin: 0;

    max-width: 100%;

    font-size: 18px;
    line-height: 1.7;
  }
}

/* mobile */
@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 28px 24px;
  }

  .module-icon img {
    width: 72px;
    height: 72px;
  }

  .card h3 {
    font-size: 24px;
  }
}

#modules .section-head h2 {
  position: relative;
  top: -20px;
}



/* =========================================
   SHOWCASE SECTION
========================================= */

.showcase {
  padding: 28px 0;
  background: #ffffff;
  padding-bottom: 90px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 96px;
  align-items: start;
}

/* =========================================
   SCREENSHOT
========================================= */

.showcase-media {
  position: relative;
  top: -12px;
  margin: -28px;

}

.showcase-media img {
  width: 92%;
  display: block;

  border-radius: 28px;
  border: 1px solid #dce6f2;

  box-shadow:
    0 40px 90px rgba(8, 19, 38, 0.12),
    0 12px 30px rgba(8, 19, 38, 0.08);

  background:
    linear-gradient(180deg,
      #f8fbff 0%,
      #ffffff 100%);
}

.showcase-media::before {
  content: "";
  position: absolute;

  inset: -40px;

  background:
    radial-gradient(circle,
      rgba(37, 99, 235, 0.08),
      transparent 70%);

  z-index: -1;
}

/* =========================================
   CONTENT
========================================= */

.showcase-content {
  max-width: 520px;
}

.showcase .eyebrow {
  margin-bottom: 20px;
}

.showcase-content h2 {
  margin: 0 0 24px;

  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.04em;

  color: #081326;
}

.showcase-content p {
  margin: 0 0 34px;

  font-size: 18px;
  line-height: 1.8;

  color: #617085;
}

/* =========================================
   BULLETS
========================================= */

.showcase-points {
  display: grid;
  gap: 14px;

  margin-bottom: 38px;
}

.showcase-points div {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 16px;
  font-weight: 600;

  color: #081326;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .showcase-grid {
    gap: 48px;
  }

  .showcase-content h2 {
    font-size: 46px;
  }
}

@media (max-width: 960px) {
  .showcase {
    padding: 80px 0;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-content {
    max-width: 100%;
  }

  .showcase-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .showcase-content h2 {
    font-size: 36px;
  }

  .showcase-content p {
    font-size: 17px;
    line-height: 1.7;
  }

  .showcase-media img {
    border-radius: 22px;
  }
}

/* =========================================
   DASHBOARD SHOWCASE
========================================= */

.dashboard-showcase {
  padding: 110px 0;
  background:
    linear-gradient(
      180deg,
      #f7fbff 0%,
      #ffffff 100%
    );
  overflow: hidden;
}

.dashboard-head {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.dashboard-head .eyebrow {
  display: inline-block;
  margin-bottom: 18px;

  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;

  color: #2563eb;
}

.dashboard-head h2 {
  margin: 0 0 22px;

  font-size: 68px;
  line-height: .95;
  font-weight: 800;
  letter-spacing: -0.04em;

  color: #081326;
}

.dashboard-head p {
  max-width: 760px;
  margin: 0 auto 34px;

  font-size: 22px;
  line-height: 1.75;

  color: #617085;
}

.dashboard-shot {
  position: relative;
}

.dashboard-shot img {
  display: block;
  width: 100%;
  height: auto;

  border-radius: 30px;
  border: 1px solid #dce6f2;

  box-shadow:
    0 40px 100px rgba(15, 23, 42, 0.10),
    0 10px 30px rgba(15, 23, 42, 0.05);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .dashboard-head h2 {
    font-size: 56px;
  }

}

@media (max-width: 960px) {

  .dashboard-showcase {
    padding: 90px 0;
  }

  .dashboard-head {
    margin-bottom: 42px;
  }

  .dashboard-head h2 {
    font-size: 44px;
    line-height: 1.02;
  }

  .dashboard-head p {
    font-size: 18px;
    line-height: 1.65;
  }

}

@media (max-width: 640px) {

  .dashboard-showcase {
    padding: 72px 0;
  }

  .dashboard-head {
    text-align: left;
  }

  .dashboard-head h2 {
    font-size: 36px;
  }

  .dashboard-head p {
    margin-left: 0;
    margin-right: 0;

    font-size: 17px;
  }

  .dashboard-shot img {
    border-radius: 22px;
  }

}
/* =========================================================
   EVENTS SHOWCASE
========================================================= */

.events-showcase {
  padding: 40px 0 100px;
  background: #ffffff;
}

.events-showcase .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================================
   HEADER
========================================================= */

.events-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.events-head .eyebrow {
  display: inline-block;
  margin-bottom: 18px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #2563eb;
}

.events-head h2 {
  margin: 0 0 24px;

  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;

  color: #0f172a;
}

.events-head p {
  margin: 0 auto 32px;

  max-width: 720px;

  font-size: 24px;
  line-height: 1.7;
  font-weight: 400;

  color: #64748b;
}

.events-list {
  margin: 0 0 38px;
  padding: 0;

  list-style: none;
}

.events-list li {
  margin-bottom: 14px;

  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

/* =========================================================
   BUTTON
========================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 62px;
  padding: 0 34px;

  border-radius: 18px;

  background: #2563eb;
  color: #ffffff;

  font-size: 18px;
  font-weight: 700;
  text-decoration: none;

  box-shadow:
    0 12px 30px rgba(37, 99, 235, 0.22);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.28);
}

/* =========================================================
   SCREENSHOT
========================================================= */

.events-shot-wrap {
  max-width: 1240px;
  margin: 0 auto;

  border-radius: 30px;
  overflow: hidden;

  border: 1px solid #e7edf7;

  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.10);

  background: #ffffff;
}

.events-shot {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 960px) {

  .events-showcase {
    padding: 30px 0 70px;
  }

  .events-showcase .container {
    padding: 0 20px;
  }

  .events-head {
    margin-bottom: 36px;
  }

  .events-head p {
    font-size: 19px;
    line-height: 1.6;
  }

  .events-list li {
    font-size: 17px;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
  }

  .events-shot-wrap {
    border-radius: 22px;
  }
}
/* =========================================
   FINANCE SHOWCASE
========================================= */

.finance-showcase {
  padding: 100px 0;
  background: #f8fbff;
}

/* =========================================
   GRID
========================================= */

.finance-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

/* =========================================
   SCREENSHOT
========================================= */

.finance-media {
  margin-top: 24px;
}

.finance-media img {
  width: 92%;
  display: block;

  border-radius: 30px;

  border: 1px solid #e6edf7;

  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.10);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

  .finance-grid {
    gap: 48px;
  }
}

@media (max-width: 960px) {

  .finance-showcase {
    padding: 80px 0;
  }

  .finance-grid {
    grid-template-columns: 1fr;
  }

  .finance-media {
    margin-top: 0;
  }
}
/* =========================================
   PACKAGES / PRICING
========================================= */

.packages {
  padding: 110px 0;
  background: #f8fbff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #dce6f2;
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 18px 40px rgba(9, 25, 44, 0.06);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(9, 25, 44, 0.10);
  border-color: #cdddf1;
}

.package-card-featured {
  border-color: #2563eb;
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.12);
}
.package-card-featured:hover {
  border-color: #2563eb;
  box-shadow: 0 34px 90px rgba(37, 99, 235, 0.18);
}

.package-icon {
  width: 118px;
  height: 118px;
  object-fit: contain;
  display: block;
  margin-bottom: 30px;
   border-radius: 22px;
}

.package-card h3 {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 800;
  min-height: 88px;
  color: #081326;
}

.package-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #617085;
}

.package-card ul {
  display: grid;
  gap: 16px;

  margin: 38px 0 0;
  padding: 0;

  list-style: none;
}

.package-card li::before {
  content: "✓";
  color: #2563eb;
  font-weight: 700;
  margin-right: 10px;
}

.package-card li {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: #081326;
}

/* responsive */
@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card-featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .packages {
    padding: 80px 0;
  }

  .package-card {
    padding: 32px 26px;
    border-radius: 26px;
  }

  .package-icon {
    width: 96px;
    height: 96px;
  }

  .package-card h3 {
    font-size: 30px;
  }
}

/* =========================================
   FINAL CONTACT CTA
========================================= */

.final-contact {
  padding: 120px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.18), transparent 34%),
    linear-gradient(135deg, #061426 0%, #081326 48%, #0b1f3a 100%);
  color: #ffffff;
}

.final-contact-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.final-contact .eyebrow {
  display: inline-block;
  margin-bottom: 22px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: #60a5fa;
}

.final-contact h2 {
  margin: 0 auto 30px;
  max-width: 960px;

  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.final-contact p {
  margin: 0 auto;
  max-width: 720px;

  font-size: 20px;
  line-height: 1.75;

  color: rgba(255, 255, 255, 0.78);
}

.final-contact-note {
  margin-top: 24px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
}

.final-contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;

  margin-top: 42px;
}

.final-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 58px;
  padding: 0 30px;

  border-radius: 18px;

  background: #0b6cff;
  color: #ffffff;

  font-size: 20px;
  font-weight: 800;

  box-shadow: 0 18px 44px rgba(11, 108, 255, 0.34);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.final-phone:hover {
  transform: translateY(-2px);
  background: #064fc4;
  box-shadow: 0 24px 54px rgba(11, 108, 255, 0.42);
}

.final-contact-actions span {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

/* responsive */
@media (max-width: 768px) {
  .final-contact {
    padding: 86px 0;
  }

  .final-contact h2 {
    font-size: 38px;
  }

  .final-contact p {
    font-size: 17px;
    line-height: 1.7;
  }

  .final-phone {
    width: 100%;
    max-width: 320px;
  }
}
.final-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.final-viber {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 16px;
  font-weight: 600;

  color: rgba(255,255,255,0.72);
}

.final-phone svg,
.final-viber svg {
  width: 20px;
  height: 20px;
}
/* =========================================
   MOBILE NAV
========================================= */

.mobile-toggle {
  display: none;

  width: 52px;
  height: 52px;

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;

  background: rgba(255,255,255,0.04);

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  cursor: pointer;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;

  border-radius: 999px;
  background: #ffffff;
}

.mobile-menu {
  position: absolute;

  top: calc(100% + 16px);
  left: 0;
  right: 0;

  display: none;
  flex-direction: column;
  gap: 18px;

  padding: 26px;

  border-radius: 24px;

  background: rgba(6, 20, 38, 0.96);

  backdrop-filter: blur(18px);

  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 960px) {

  .nav {
    position: relative;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

}
/* =========================================
   SUBPAGES
========================================= */

.subpage {
  background:
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 100%
    );
}

/* navbar */

.subpage .nav-wrap {
  background: rgba(0, 0, 0, 0.82);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid #e8eef6;
}

/* dark logo for light pages */

.subpage .logo-light {
  display: none;
}

.subpage .logo-dark {
  display: block;
}

/* =========================================
   LEGAL / INFO PAGES
========================================= */

.subpage .legal-page {
  padding: 96px 0 110px;
}

.subpage .legal-container {
  max-width: 760px;
}

.subpage .legal-head {
  margin-bottom: 58px;
}

.subpage .legal-head h1 {
  margin: 0 0 18px;

  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.05em;

  color: #081326;
}

.subpage .legal-head p {
  margin: 0;

  font-size: 18px;
  line-height: 1.7;

  color: #617085;
}

.subpage .legal-content h2 {
  margin: 56px 0 0;

  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.03em;

  color: #081326;
}

.subpage .legal-content p {
  margin-top: 16px;

  font-size: 18px;
  line-height: 1.9;

  color: #617085;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 960px) {
  .subpage .legal-page {
    padding: 130px 0 90px;
  }

  .subpage .legal-head h1 {
    font-size: 64px;
  }

  .subpage .legal-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .subpage .legal-page {
    padding: 120px 0 80px;
  }

  .subpage .legal-head h1 {
    font-size: 48px;
  }

  .subpage .legal-content h2 {
    font-size: 26px;
  }

  .subpage .legal-content p {
    font-size: 17px;
    line-height: 1.8;
  }
}