/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
    --primary: #C9A24D;
    --surface-strong: #1b2638;
    --text: #ffffff;
    --muted: #b1b9c8;
    --border: rgba(255,255,255,.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
    height: 100%;
    overflow: hidden;
    background: #0f1827;
    color-scheme: dark;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(201,162,77,.35);
    color: #fff;
}

:focus-visible {
    outline: 2px solid rgba(201,162,77,.7);
    outline-offset: 3px;
    border-radius: 4px;
}

body {
    margin: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.5;
}

/* ── THE scroll + snap container ──────────────────────────────────────────
   position:fixed means it is always exactly the visible viewport size.
   The browser toolbar showing/hiding does NOT change its dimensions.
   Scroll snap therefore always snaps to a pixel-perfect full screen.
   ──────────────────────────────────────────────────────────────────────── */
#scroller {
    position: fixed;
    inset: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: touch;
    background:
            radial-gradient(circle at top left,  rgba(92,121,255,.14),  transparent 30%),
            radial-gradient(circle at 85% 12%,   rgba(201,162,77,.14),  transparent 24%),
            radial-gradient(circle at 50% 85%,   rgba(66,153,225,.08),  transparent 28%),
            linear-gradient(180deg, #132033 0%, #0f1827 35%, #111a29 68%, #172131 100%);
}

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

/* ============================================================
   SECTIONS — every section snaps to its own screen
   ============================================================ */

section {
    height: 100%;        /* 100% of the fixed #scroller = exact visible screen */
    scroll-snap-align: start;
    scroll-snap-stop: always;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* glass card background per section */
section::before {
    content: "";
    position: absolute;
    inset: 24px 16px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
    border: 1px solid rgba(255,255,255,.05);
    z-index: -1;
    pointer-events: none;
    transition: border-color .75s ease, box-shadow .75s ease;
}

.section-animate.is-visible::before {
    border-color: rgba(201,162,77,.1);
    box-shadow: 0 20px 60px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.04);
}

/* footer snaps too */
.site-footer {
    height: auto;
    min-height: unset;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 0;
    display: block;
    position: relative;
    z-index: 1;
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    border-top: 1px solid rgba(255,255,255,.05);
    z-index: -1;
    pointer-events: none;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.section-animate::before {
    opacity: .7;
    transform: translateY(20px) scale(.988);
    transition: transform .9s cubic-bezier(.22,1,.36,1), opacity .75s ease,
    border-color .75s ease, box-shadow .75s ease;
}
.section-animate.is-visible::before {
    opacity: 1;
    transform: none;
}

[data-reveal] {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 32px, 0);
    transition: opacity .65s ease, transform .85s cubic-bezier(.22,1,.36,1), filter .65s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}
[data-reveal="left"]  { transform: translate3d(-48px, 18px, 0); }
[data-reveal="right"] { transform: translate3d( 48px, 18px, 0); }
[data-reveal].is-visible { opacity: 1; filter: blur(0); transform: none; }

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes heroFloatMain   { 0%,100%{ transform:rotate(-5deg) translateY(0) }   50%{ transform:rotate(-7deg)  translateY(-14px) } }
@keyframes heroFloatBack   { 0%,100%{ transform:rotate( 9deg) translateY(0) }   50%{ transform:rotate(11deg)  translateY(-10px) } }
@keyframes phoneFloatLeft  { 0%,100%{ transform:rotate(-8deg) translateY(0) }   50%{ transform:rotate(-10deg) translateY(-12px) } }
@keyframes phoneFloatCenter{ 0%,100%{ transform:rotate( 4deg) translateY(0) }   50%{ transform:rotate(  2deg) translateY(-16px) } }
@keyframes phoneFloatCenterMobile{ 0%,100%{ transform:translateX(-50%) rotate(-1deg) translateY(0) } 50%{ transform:translateX(-50%) rotate(-2deg) translateY(-10px) } }
@keyframes phoneFloatRight { 0%,100%{ transform:rotate(10deg) translateY(0) }   50%{ transform:rotate( 12deg) translateY(-10px) } }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(201,162,77,.28);
    border-radius: 999px;
    background: rgba(201,162,77,.08);
    color: #f7df9c;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-kicker {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ============================================================
   HERO — DESKTOP
   ============================================================ */

.hero::before {
    content: "";
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(201,162,77,.2), transparent 70%);
    filter: blur(130px);
    top: -300px; right: -300px;
    z-index: 0;
}

.hero-grid {
    max-width: 1160px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.brand { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; width: fit-content; }
.brand img { width: 44px; }
.brand-name { letter-spacing: .15em; font-size: 12px; opacity: .75; }

.title-stack { display: flex; flex-direction: column; margin: 0 0 16px; }
.title-main, .title-accent { line-height: .92; margin: 0; padding: 0; }
.title-main {
    font-size: clamp(3rem, 5.5vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -.04em;
    text-wrap: balance;
}
.title-accent {
    font-size: clamp(2.45rem, 5vw, 3.2rem);
    color: #f0cf82;
    margin-top: 6px;
    font-weight: 700;
    letter-spacing: -.04em;
}

.hero p {
    color: #d7deea;
    line-height: 1.8;
    max-width: 520px;
    font-size: 1rem;
    text-wrap: pretty;
    margin: 0 0 4px;
}

/* ============================================================
   BULLETS
   ============================================================ */

.bullets { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; list-style: none; padding: 0; margin-left: 0; }
.bullet  { display: flex; align-items: flex-start; gap: 10px; color: #e5e7eb; font-size: .97rem; }
.bullet svg {
    width: 17px; height: 17px;
    color: var(--primary);
    margin-top: 3px;
    flex: 0 0 auto;
    transition: transform .4s ease, filter .4s ease;
}
[data-reveal].is-visible.bullet svg {
    transform: scale(1.06);
    filter: drop-shadow(0 0 10px rgba(201,162,77,.3));
}

/* ============================================================
   CTA BUTTONS
   ============================================================ */

.cta { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 15px 22px;
    border-radius: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    font-size: .97rem;
    min-width: 210px;
    border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-icon  { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.btn-icon svg { width: 24px; height: 24px; }
.btn-copy  { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.btn-label { font-size: .74rem; opacity: .7; letter-spacing: .04em; text-transform: uppercase; }
.btn-title { font-size: 1rem; }

.btn-android { background: linear-gradient(135deg, #dcb45b, #c9a24d); color: #111; box-shadow: 0 18px 36px rgba(0,0,0,.26); }
.btn-android .btn-icon { background: rgba(255,255,255,.2); box-shadow: inset 0 1px 0 rgba(255,255,255,.22); }
.btn-android:hover { box-shadow: 0 22px 42px rgba(0,0,0,.34); }

.btn-ios { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.15); color: var(--text); backdrop-filter: blur(12px); }
.btn-ios .btn-icon { background: linear-gradient(180deg, var(--surface-strong), #0f141d); border: 1px solid rgba(255,255,255,.08); }
.btn-ios:hover { box-shadow: 0 16px 32px rgba(0,0,0,.22); border-color: rgba(201,162,77,.3); }
.btn-disabled { opacity: .85; cursor: not-allowed; }
.btn-disabled:hover { transform: none; }

/* ============================================================
   HERO PHONES — DESKTOP
   ============================================================ */

.hero-phones {
    position: relative;
    height: 480px;
}
.hero-phones::after {
    content: "";
    position: absolute;
    inset: auto 14% 40px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(201,162,77,.2), rgba(111,169,255,.08) 54%, transparent 74%);
    filter: blur(38px);
    opacity: 0;
    transform: scale(.7);
    transition: opacity .75s ease .12s, transform .95s cubic-bezier(.22,1,.36,1) .12s;
    pointer-events: none;
}
.hero-observe.is-visible .hero-phones::after { opacity: .9; transform: scale(1); }

.phone { position: absolute; }
.phone img { width: 100%; border-radius: 28px; border: 0; background: transparent; }

.phone-main { width: 280px; left: 100px; top: 30px;  transform: rotate(-5deg); }
.phone-back { width: 200px; right: 30px;  top: 220px; transform: rotate( 9deg); }

.hero-observe.is-visible .phone-main { animation: heroFloatMain 6.8s ease-in-out infinite; }
.hero-observe.is-visible .phone-back { animation: heroFloatBack 7.6s ease-in-out infinite .25s; }

/* ============================================================
   FEATURE GRID — DESKTOP
   ============================================================ */

.feature-grid {
    max-width: 1160px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-text h2 {
    font-size: 2.4rem;
    margin: 0 0 16px;
    line-height: 1.06;
    letter-spacing: -.03em;
    text-wrap: balance;
}
.feature-text p {
    color: #d1d9e6;
    line-height: 1.8;
    font-size: 1rem;
    text-wrap: pretty;
    margin: 0;
}

/* phone stack — desktop */
.phones {
    position: relative;
    height: 480px;
}
.phones img {
    position: absolute;
    border-radius: 28px;
}

@media (min-width: 901px) {
    .phones img {
        width: 240px;
        border: 0;
        background: transparent;
    }
}
.phones::after {
    content: "";
    position: absolute;
    left: 8%; right: 8%; bottom: 16px;
    height: 100px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(201,162,77,.18), rgba(71,118,255,.06) 52%, transparent 74%);
    filter: blur(30px);
    opacity: 0;
    transform: scale(.7);
    transition: opacity .75s ease .15s, transform .95s cubic-bezier(.22,1,.36,1) .15s;
    pointer-events: none;
}
.section-animate.is-visible .phones::after { opacity: .85; transform: scale(1); }

.p1 { left: 0;     top: 70px;  transform: rotate(-8deg); }
.p2 { left: 130px; top: 0;     transform: rotate( 4deg); }
.p3 { left: 260px; top: 150px; transform: rotate(10deg); }

@media (min-width: 901px) {
    .section-animate.is-visible .p1 { animation: phoneFloatLeft   6.6s ease-in-out infinite; }
    .section-animate.is-visible .p2 { animation: phoneFloatCenter 7.2s ease-in-out infinite .12s; }
    .section-animate.is-visible .p3 { animation: phoneFloatRight  6.9s ease-in-out infinite .24s; }
}

/* mobile-only elements hidden on desktop */
.phones-kicker       { display: none; }
.footer-organization { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */

.final-footer {
    padding: 48px 32px 52px;
    text-align: center;
    background: linear-gradient(180deg, rgba(14,20,32,.4), rgba(18,28,44,.95));
    backdrop-filter: blur(14px);
}

.site-footer .final-links,
.site-footer .final-platforms { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.site-footer .final-links     { margin-bottom: 14px; }
.site-footer .final-platforms { margin-bottom: 24px; }

.site-footer .final-links a,
.site-footer .final-platforms a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 10px 18px;
    border-radius: 999px;
    color: #f5f7fb;
    text-decoration: none;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
    font-size: .9rem;
}
.site-footer .final-links a:hover,
.site-footer .final-platforms a:hover {
    transform: translateY(-2px);
    background: rgba(201,162,77,.14);
    border-color: rgba(201,162,77,.32);
    box-shadow: 0 12px 22px rgba(0,0,0,.14);
}
.site-footer .final-platforms a {
    min-width: 148px; padding: 12px 20px; font-weight: 700;
    background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
    border-color: rgba(255,255,255,.13);
}
.site-footer .final-platforms a:first-child {
    background: linear-gradient(135deg, rgba(201,162,77,.3), rgba(201,162,77,.13));
    border-color: rgba(201,162,77,.36); color: #fff7df;
}
.site-footer .final-platforms a[aria-disabled="true"] {
    opacity: .7; cursor: not-allowed;
}
.site-footer .final-platforms a[aria-disabled="true"]:hover { transform: none; }

.final-legal { font-size: .88rem; color: #c8d1e0; line-height: 1.9; }
.final-legal a {
    color: #e8eef8; text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 1px;
    transition: color .2s, border-color .2s;
}
.final-legal a:hover { color: #fff; border-color: rgba(201,162,77,.42); }

.final-faq {
    margin: 0 auto 20px;
}
.final-faq a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(201,162,77,.18), rgba(201,162,77,.08));
    border: 1px solid rgba(201,162,77,.36);
    color: #f7df9c;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s, background .2s, box-shadow .2s;
    letter-spacing: .01em;
}
.final-faq a:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(201,162,77,.28), rgba(201,162,77,.14));
    box-shadow: 0 12px 28px rgba(0,0,0,.2), 0 0 0 1px rgba(201,162,77,.22);
    text-decoration: none;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .section-animate::before, [data-reveal], .phones::after, .hero-phones::after, .bullet svg {
        transition: none !important; animation: none !important;
        opacity: 1 !important; filter: none !important; transform: none !important;
    }
}

/* ============================================================
   MOBILE  ≤ 900px
   ============================================================

   Layout per section:
   ┌─────────────────────────────┐
   │   phones (top ~45%)         │  ← images floating, centered
   │─────────────────────────────│
   │   text block (bottom ~55%)  │  ← kicker · h2 · p · bullets
   └─────────────────────────────┘
   Each section = 100dvh, snap-stop: always
   ============================================================ */

@media (max-width: 900px) {

    /* ── Section shell ── */
    section {
        width: 100%;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: stretch;
        overflow: hidden;
    }

    section::before {
        inset: 8px;
        border-radius: 22px;
    }

    /* ── Hero ── */
    .hero { padding: 0; }

    .hero-grid {
        height: 100%;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 32px 20px 28px;
        text-align: center;
    }

    .hero-phones { display: none; }

    .brand {
        flex-direction: column;
        gap: 10px;
        margin: 0 auto 18px;
        width: auto;
    }
    .brand img { width: 68px; filter: drop-shadow(0 10px 20px rgba(0,0,0,.24)); }

    .hero .eyebrow { display: none; }

    .title-stack  { align-items: center; margin-bottom: 10px; }
    .title-main   { font-size: clamp(1.9rem, 7.5vw, 2.5rem); }
    .title-accent { font-size: clamp(1.5rem, 6vw, 2rem); margin-top: 4px; }

    .hero p { margin: 0 auto; max-width: 28rem; font-size: .9rem; line-height: 1.5; }

    .hero .bullets { width: min(100%, 28rem); margin: 14px auto 0; gap: 8px; }
    .hero .bullet  { font-size: .87rem; text-align: left; }

    .cta { justify-content: center; margin-top: 24px; gap: 10px; }
    .btn { width: min(100%, 300px); justify-content: center; padding: 13px 18px; min-width: 0; }
    .btn-icon { width: 40px; height: 40px; }
    .btn-copy { align-items: center; }
    .btn-title { font-size: .96rem; }
    .btn-label { font-size: .7rem; }

    /* ── Feature sections — phones pinned to top as header, text below ── */

    .section-animate { position: relative; }

    .feature-grid {
        height: 100%;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        text-align: center;
    }

    .phones {
        position: absolute;
        top: 8px; left: 8px; right: 8px;
        height: 36%;
        overflow: hidden;
        border-radius: 20px 20px 0 0;

        background:
            radial-gradient(ellipse at 20% 0%,  rgba(201,162,77,.22)  0%, transparent 52%),
            radial-gradient(ellipse at 80% 10%, rgba(71,118,255,.16)  0%, transparent 48%),
            radial-gradient(ellipse at 50% 100%, rgba(66,153,225,.08) 0%, transparent 55%),
            linear-gradient(180deg, #101c2e 0%, #0f1827 55%, #111a29 100%);

        border: 1px solid rgba(255,255,255,.07);
        border-bottom: none;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.06),
            inset 0 0 40px rgba(71,118,255,.04),
            0 -1px 0 rgba(201,162,77,.12);
    }

    .phones::before { display: none; }
    .phones::after  { display: none; }
    .section-animate::after { display: none; }

    /* Prepreči horizontalni slide na .phones — povzroča skok p3 iz desne v levo ob prvem prikazu */
    .phones[data-reveal] { transform: none; }

    .phones-kicker { display: none; }

    .feature-text > .section-kicker {
        display: block;
        margin: 0 auto 10px;
        font-size: .68rem;
    }

    .phones img {
        position: absolute;
        border-radius: 22px;
        transform-origin: bottom center;
        /* drop-shadow removed — it escapes overflow:hidden and causes horizontal overflow on iOS */
    }

    .p3 {
        width: 96vw;
        max-width: 430px;
        top: 20%;
        left: auto;
        transform-origin: top left;
        transform: rotate(-8deg);
        z-index: 3;
        opacity: .98;
    }

    .p2 {
        width: 84vw;
        max-width: 375px;
        top: 6%;
        left: 50%;
        transform: translateX(-50%) rotate(-1deg);
        z-index: 4;
        opacity: 0;
    }

    .p1 {
        width: 96vw;
        max-width: 430px;
        top: -60%;
        left: -16%;
        right: auto;
        transform-origin: top center;
        transform: rotate(10deg);
        z-index: 2;
        opacity: .2;
    }

    /* floating animations on mobile */
    .section-animate.is-visible .p1 { animation: phoneFloatRight        7.2s ease-in-out infinite; }
    .section-animate.is-visible .p2 { animation: phoneFloatCenterMobile 7.8s ease-in-out infinite .15s; }
    .section-animate.is-visible .p3 { animation: phoneFloatLeft         7.5s ease-in-out infinite .3s; }

    .hero-observe.is-visible .phone-main { animation: heroFloatMain 6.8s ease-in-out infinite; }
    .hero-observe.is-visible .phone-back { animation: heroFloatBack 7.6s ease-in-out infinite .25s; }

    /* text block — lower 58%, vertically centered */
    .feature-text {
        width: 100%;
        max-width: 36rem;
        padding: 18px 24px 26px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 0 0 56%;
        text-align: center;
    }


    .feature-text h2 {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
        margin: 0 auto 8px;
        line-height: 1.1;
        max-width: 22rem;
    }
    .feature-text p {
        margin: 0 auto;
        max-width: 28rem;
        font-size: .86rem;
        line-height: 1.46;
        color: #cdd6e3;
    }
    .feature-text .bullets { width: min(100%, 28rem); margin: 10px auto 0; gap: 6px; }
    .bullet { font-size: .82rem; text-align: left; padding: 6px 10px; border-radius: 10px; }

    /* org section hidden on mobile — content moved to footer */
    #organizacija { display: none; }

    /* footer org block */
    .footer-organization {
        display: block;
        margin: 0 auto 24px;
        padding: 0 0 16px;
        max-width: 32rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-organization h2 { margin: 0 auto 8px; font-size: clamp(1.2rem, 4.4vw, 1.5rem); line-height: 1.1; }
    .footer-organization p  { margin: 0 auto; max-width: 30rem; color: #d7deea; font-size: .84rem; line-height: 1.48; }

    .site-footer {
        height: auto;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    .site-footer .final-footer { padding: 36px 20px 44px; }
    .site-footer .final-links  { margin-bottom: 14px; }
}

/* ============================================================
   MOBILE  ≤ 430px  — small phones
   ============================================================ */

@media (max-width: 430px) {

    .hero-grid  { padding: 16px 16px 12px; }

    .brand      { gap: 8px; margin-bottom: 10px; }
    .brand img  { width: 50px; }
    .title-stack  { margin-bottom: 6px; }
    .title-main   { font-size: clamp(1.6rem, 7vw, 1.9rem); }
    .title-accent { font-size: clamp(1.22rem, 5.5vw, 1.54rem); }

    .hero p { font-size: .8rem; line-height: 1.4; }
    .feature-text p,
    .footer-organization p { font-size: .83rem; }

    .hero .bullets { margin-top: 8px; gap: 3px; }
    .cta  { gap: 6px; margin-top: 12px; }
    .btn  { width: 100%; padding: 10px 12px; }
    .btn-icon { width: 32px; height: 32px; }


    .feature-text { flex: 0 0 60%; padding: 14px 18px 22px; }
    .feature-text h2 { font-size: 1.16rem; }
    .feature-text .bullets { margin-top: 8px; gap: 5px; }
    .bullet { font-size: .76rem; padding: 4px 8px; line-height: 1.35; }

    .site-footer .final-footer { padding: 28px 16px 36px; }
}

/* ============================================================
   MOBILE  ≤ 375px  — iPhone 12 mini, SE, manjši Androidi
   ============================================================ */

@media (max-width: 375px) {

    .hero-grid  { padding: 12px 14px 10px; }

    .brand      { gap: 6px; margin-bottom: 8px; }
    .brand img  { width: 42px; }
    .title-stack  { margin-bottom: 4px; }
    .title-main   { font-size: clamp(1.46rem, 6.6vw, 1.7rem); }
    .title-accent { font-size: clamp(1.12rem, 5vw, 1.38rem); }

    .hero p { font-size: .76rem; line-height: 1.38; }

    .hero .bullets { margin-top: 6px; gap: 2px; }
    .hero .bullet  { font-size: .72rem; padding: 3px 7px; }

    .cta  { gap: 5px; margin-top: 10px; }
    .btn  { padding: 9px 10px; }
    .btn-icon { width: 28px; height: 28px; border-radius: 10px; }
    .btn-title { font-size: .86rem; }
    .btn-label { font-size: .64rem; }
}

/* ============================================================
   FAQ ACCORDION — styles so inline v faq.html
   ============================================================ */



