:root {
    --navy: #1f2937;
    --blue: #2563eb;
    --light: #e5e7eb;
    --muted: #94a3b8;
    --white: #ffffff;
    --bg: #07111d;
    --panel: rgba(255, 255, 255, 0.06);
    --line: rgba(229, 231, 235, 0.14);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --header-padding-y: 20px;
    --header-border: 1px;
    --header-logo-height: 48px;
    --header-height: calc(var(--header-logo-height) + 2 * var(--header-padding-y) + var(--header-border));
    --page-max-width: 1480px;
    --page-padding-x: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.20), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(229, 231, 235, 0.08), transparent 22%),
    linear-gradient(135deg, #07111d 0%, #0b1620 55%, #101827 100%);
  color: var(--white);
  font-family: Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }


.menu-toggle {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: var(--header-height);
    padding: var(--header-padding-y) clamp(20px, 5vw, 72px);
    background: rgba(7, 17, 29, 0.76);
    backdrop-filter: blur(18px);
    border-bottom: var(--header-border) solid var(--line);
}

.brand img {
    height: var(--header-logo-height);
    width: auto;
    max-width: 48vw;
    display: block;
}
.nav { display: flex; align-items: center; gap: 22px; font-size: 16px; color: var(--light); }
.nav a { opacity: 0.84; }
.nav a:hover { opacity: 1; color: var(--white); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; }

/* =========================
   DOCUMENT - baza
   ========================= */

h1, h2, h3 {
    margin: 0;
    line-height: 1.05;
}

h1 {
    max-width: 980px;
    font-size: clamp(38px, 5vw, 82px);
    letter-spacing: -0.06em;
}

h2 {
    font-size: clamp(32px, 4.8vw, 62px);
    letter-spacing: -0.05em;
}

h3 {
    font-size: 28px;
    letter-spacing: -0.03em;
}

p {
    white-space: pre-line;
}

.lead, .section-text, .contact-section p:not(.eyebrow), .service-card p:not(.eyebrow) {
    color: #cbd5e1;
    line-height: 1.75;
}

/* =========================
   LANGUAGE-SWITCHER
   ========================= */

.language-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}

.language-switcher button {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--light);
    padding: 6px 9px;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    cursor: pointer;
    opacity: 0.75;
}

    .language-switcher button:hover,
    .language-switcher button.is-active {
        opacity: 1;
        color: var(--white);
        border-color: var(--blue);
    }


/* =========================
   EYEBROW
   ========================= */

.eyebrow {
    margin: 0 0 18px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 13px;
    font-weight: 700;
}


.lead {
    max-width: 740px;
    margin: 28px 0 0;
    font-size: clamp(18px, 2vw, 22px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
}

.button.primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.32);
}

.button.secondary {
    border: 1px solid var(--line);
    color: var(--light);
}

/* =========================
   SECTION - baza
   ========================= */


.section {
    padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 72px);
    min-height: calc(100svh - var(--header-height));
}

.section-text {
    font-size: 18px;
    max-width: 760px;
}

/* =========================
   HERO
   ========================= */

.hero {
    min-height: calc(100svh - var(--header-height));
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
    align-items: stretch;
    gap: clamp(32px, 4vw, 72px);
}
.hero.section {
    padding-top: 20px;
    min-height: calc(100svh - var(--header-height));
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-points li {
    font-size: clamp(1.35rem, 2vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    padding: 0.8rem 0;
}
.hero-points li:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.20);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
}
.hero-visual {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}
/*.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}*/



/* =========================
   SPLIT-SECTION
   ========================= */

.split-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.split-section p:not(.eyebrow) {
    font-size: clamp(16px, 1.8vw, 22px);
    text-align: justify;
    line-height: 1.3;
/*    margin-bottom: 12px;*/
}

.about-section {
    position: relative;
    overflow: hidden;
}


/* =========================
   CARD-SECTION
   ========================= */

.cards-section {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    min-height: calc(100svh - var(--header-height));
    font-size: 20px
}
.cards-section > h2 { max-width: 860px; margin-bottom: 36px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { padding: 28px; min-height: 360px; }
.card-number { display: inline-block; color: var(--muted); margin-bottom: 68px; font-weight: 700; }


.viewer-placeholder {
  margin-top: 28px;
  height: 110px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(229, 231, 235, 0.32);
  border-radius: 18px;
  color: var(--muted);
}

/* =========================
   PROCESS-SECTION
   ========================= */

.process-section { border-top: 1px solid var(--line); }
.process-section h2 { max-width: 760px; margin-bottom: 32px; }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.process-grid div { padding: 22px; display: grid; gap: 18px; }
.process-grid strong { color: var(--blue); }
.process-grid span { color: var(--light); }

/* =========================
   CONTACT-SECTION
   ========================= */

.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.contact-section h2 { max-width: 720px; }

/* =========================
   FOOTER
   ========================= */

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/*@media (max-width: 900px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero, .split-section, .cards-grid, .process-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .contact-section, .site-footer { flex-direction: column; align-items: flex-start; }
}*/

/* =========================
   @MEDIA
   ========================= */

@media (max-width: 900px) {
    :root {
        --header-height: 109px;
        
        --header-logo-height: 32px;
    }
    .hero, .split-section, .cards-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .site-header {
        position: sticky;
        top: 0;
        
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
        gap: 16px;
        font-size: 15px;
        white-space: nowrap;
    }
}

/*body {
    border: 10px solid red !important;
}*/
