:root {
    --text: #111827;
    --muted: #6b7280;

    --border: rgba(0, 0, 0, 0.06);

    --pink-50: #fff1f6;
    --pink-100: #ffe4ee;
    --pink-500: #ff5fa2;
    --pink-700: #d81b72;

    --radius: 18px;
    --shadow: 0 16px 46px rgba(17, 24, 39, 0.12);

    --max: 1120px;

    --pad: 24px;
    --pad-sm: 18px;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI,
        Roboto, Helvetica, Arial;
    color: var(--text);
    background: #fff;
    line-height: 1.55;
    overflow-x: hidden;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding-inline: var(--pad);
}
@media (max-width: 640px) {
    .container {
        padding-inline: var(--pad-sm);
    }
}

/* NAVBAR */
.topbar {
    background: linear-gradient(135deg, var(--pink-500), #ff86bb);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    position: relative;
}
@media (max-width: 900px) {
    .topbar {
        position: sticky;
        top: 0;
        z-index: 10;
    }
}
.topbar-inner {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
    line-height: 0; /* FIX pomeranja */
}
.logo-svg {
    display: block;
} /* FIX pomeranja */

.brand-text {
    font-family: "Dancing Script", cursive;
    font-size: 26px;
    letter-spacing: 0.2px;
    color: #fff;
    text-shadow: 0 8px 18px rgba(17, 24, 39, 0.18);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 850;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    user-select: none;
}
.btn:hover {
    transform: translateY(-1px);
}

.btn-nav {
    background: rgba(255, 255, 255, 0.95);
    color: var(--pink-700);
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.12);
}

/* HERO */
.hero {
    border-bottom: 1px solid rgba(255, 95, 162, 0.22);
    background: radial-gradient(
            900px 380px at 12% 25%,
            rgba(255, 95, 162, 0.18),
            transparent 60%
        ),
        radial-gradient(
            900px 380px at 88% 20%,
            rgba(255, 95, 162, 0.12),
            transparent 55%
        ),
        repeating-linear-gradient(
            90deg,
            var(--pink-50) 0px,
            var(--pink-50) 52px,
            #ffffff 52px,
            #ffffff 104px
        );
}

.hero-inner {
    padding-block: clamp(32px, 5vw, 74px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 22px;
    align-items: center;
}

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

.hero-left {
    min-width: 0;
}
.hero-right {
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 980px) {
    .hero-right {
        justify-content: center; /* FIX: u jednom stupcu centriraj vizual */
    }
}

.hero-kicker {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 95, 162, 0.2);
    font-weight: 800;
    color: #7a204b;
}

.hero-title {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4.4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.7px;
    overflow-wrap: anywhere; /* da nikad ne probije */
}

.hero-lead {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    max-width: 72ch;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.badge {
    font-size: 13px;
    font-weight: 800;
    color: #7a204b;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 95, 162, 0.16);
    border-radius: 999px;
    padding: 8px 10px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.btn-hero {
    background: linear-gradient(135deg, var(--pink-500), #ff86bb);
    color: #fff;
    box-shadow: 0 16px 34px rgba(255, 95, 162, 0.3);
}
.btn-hero:hover {
    box-shadow: 0 20px 42px rgba(255, 95, 162, 0.36);
}

.hero-note {
    color: var(--muted);
    font-size: 13px;
}

/* Visual */
.hero-visual {
    width: 100%;
    max-width: 540px;
    margin-inline: auto; /* FIX: centriraj u koloni */
}

.hero-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.hero-mini {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
@media (max-width: 520px) {
    .hero-mini {
        grid-template-columns: 1fr;
    }
}
.mini-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 95, 162, 0.14);
    border-radius: 16px;
    padding: 10px 12px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}
.mini-title {
    font-weight: 900;
    color: #7a204b;
    font-size: 13px;
}
.mini-text {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

/* SECTIONS */
.section {
    padding-block: clamp(40px, 5vw, 72px);
}

.section-head h2 {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 30px);
    letter-spacing: -0.3px;
}
.section-head p {
    margin: 10px 0 0;
    color: var(--muted);
    max-width: 78ch;
}
.section-head.compact p {
    max-width: 62ch;
}

.grid {
    margin-top: 18px;
    display: grid;
    gap: 16px;
}
.cards-6 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
    .cards-6 {
        grid-template-columns: 1fr;
    }
}

.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
    .cards-3 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 56px rgba(17, 24, 39, 0.14);
}
.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--pink-100), #fff);
    border: 1px solid rgba(255, 95, 162, 0.18);
    font-size: 20px;
    margin-bottom: 10px;
}
.card h3 {
    margin: 0 0 6px;
    font-size: 18px;
}
.card p {
    margin: 0;
    color: var(--muted);
}

/* WHY */
.why {
    background: radial-gradient(
            900px 340px at 10% 15%,
            rgba(255, 95, 162, 0.1),
            transparent 60%
        ),
        radial-gradient(
            900px 340px at 90% 25%,
            rgba(255, 95, 162, 0.08),
            transparent 55%
        ),
        #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.why-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 18px;
    align-items: stretch;
}
@media (max-width: 980px) {
    .why-wrap {
        grid-template-columns: 1fr;
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}
.feature-list li {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 95, 162, 0.12);
    border-radius: 16px;
    padding: 10px 12px;
}
.tick {
    width: 18px;
    height: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pink-500), #ff86bb);
    display: inline-block;
    margin-right: 10px;
    vertical-align: -4px;
    box-shadow: 0 10px 18px rgba(255, 95, 162, 0.18);
}

.photo-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 95, 162, 0.18);
    box-shadow: var(--shadow);
    background: #fff;
    min-height: 240px;
}
.photo-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            420px 240px at 20% 20%,
            rgba(255, 95, 162, 0.18),
            transparent 60%
        ),
        radial-gradient(
            420px 240px at 80% 40%,
            rgba(255, 95, 162, 0.12),
            transparent 55%
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 241, 246, 0.9) 0px,
            rgba(255, 241, 246, 0.9) 18px,
            rgba(255, 255, 255, 0.95) 18px,
            rgba(255, 255, 255, 0.95) 36px
        );
}
.photo-text {
    position: relative;
    padding: 18px;
}
.photo-text h3 {
    margin: 0 0 6px;
}
.photo-text p {
    margin: 0;
    color: var(--muted);
    max-width: 52ch;
}

/* CTA */
.cta {
    background: radial-gradient(
            900px 320px at 15% 30%,
            rgba(255, 95, 162, 0.12),
            transparent 60%
        ),
        radial-gradient(
            900px 320px at 85% 20%,
            rgba(255, 95, 162, 0.1),
            transparent 55%
        ),
        #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.cta-box {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 95, 162, 0.16);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
}
.cta-box h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.2px;
}
.cta-box p {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 70ch;
}
.btn-cta {
    background: linear-gradient(135deg, var(--pink-500), #ff86bb);
    color: #fff;
    box-shadow: 0 16px 34px rgba(255, 95, 162, 0.3);
}

/* FOOTER */
.footerbar {
    background: linear-gradient(135deg, var(--pink-500), #ff86bb);
    color: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.footer-inner {
    padding-block: 22px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 16px;
}
@media (max-width: 980px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 520px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.footer-mark {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-name {
    font-family: "Dancing Script", cursive;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.footer-title {
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}
.footer-text {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    line-height: 1.45;
}
.footer-link {
    display: inline-block;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.14);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-block: 12px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.86);
}
