:root {
    --primary:        #f59e0b;
    --primary-hover:  #d97706;
    --secondary:      #0f172a;
    --secondary-mid:  #1e293b;
    --bg-white:       #ffffff;
    --bg-off:         #fafafa;
    --text-main:      #1e293b;
    --text-muted:     #64748b;
    --border:         #e2e8f0;
    --font-main:      'Outfit', sans-serif;
    --radius-md:      12px;
    --radius-lg:      20px;
    --shadow-soft:    0 10px 40px -10px rgba(0,0,0,0.09);
    --shadow-hover:   0 28px 55px -12px rgba(0,0,0,0.14);
    --shadow-gold:    0 10px 32px -6px rgba(245,158,11,0.38);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default !important;
}

h1, h2, h3, h4 { color: var(--secondary); line-height: 1.2; font-weight: 800; }
a, button, .btn { cursor: pointer !important; }
img { display: block; }

.container     { max-width: 1250px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 120px 0; }
.highlight     { color: var(--primary); }

/* ── Section Label ─────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--primary);
    margin-bottom: 18px; padding: 6px 16px;
    background: rgba(245,158,11,0.09);
    border-radius: 99px; border: 1px solid rgba(245,158,11,0.22);
}

/* ── Section Title ─────────────────────────────────────────── */
.section-title { margin-bottom: 70px; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.section-title p  { font-size: 1.1rem; color: var(--text-muted); max-width: 580px; margin-top: 14px; }

/* ── Reveal ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    transition: all 0.4s ease;
    padding: 14px 0;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    border-bottom-color: var(--border);
}
.nav-content  { display: flex; justify-content: space-between; align-items: center; }
.brand-logo   { height: 110px; width: auto; transition: height 0.3s ease; }
.navbar.scrolled .brand-logo { height: 78px; }
.nav-links    { display: flex; gap: 36px; }
.nav-links a  { font-weight: 600; color: var(--secondary); font-size: 0.95rem; text-decoration: none; transition: color 0.25s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions  { display: flex; align-items: center; gap: 14px; }

.lang-btn {
    background: #f1f5f9; border: 1.5px solid #e2e8f0;
    padding: 5px 13px; border-radius: 8px;
    font-weight: 800; font-size: 0.78rem; color: var(--secondary); transition: 0.25s;
}
.lang-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    padding: 13px 30px; border-radius: 99px; font-weight: 700;
    font-size: 0.95rem; transition: all 0.3s; border: none;
    text-decoration: none; display: inline-flex; align-items: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-large   { padding: 18px 42px; font-size: 1.05rem; }
.btn-outline { background: transparent; color: var(--secondary); border: 2px solid rgba(15,23,42,0.3); }
.btn-outline:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.w-100 { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
    position: relative; min-height: 92vh;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    padding: 160px 24px 70px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(251,187,29,0.16) 0%, transparent 60%),
        linear-gradient(180deg, #fbf6ea 0%, #f4ecd8 100%);
}

/* Okvir — pločica sa zlatnim kutnim akcentima */
.hero-frame {
    position: relative; z-index: 3;
    width: 100%; max-width: 880px;
    padding: 64px 60px;
    border: 1px solid rgba(191,149,15,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 90px -12px rgba(251,187,29,0.4), 0 25px 60px -25px rgba(15,23,42,0.15);
}
.hero-frame .corner {
    position: absolute; width: 30px; height: 30px; pointer-events: none; z-index: 2;
}
.corner-tl { top: -1px;    left: -1px;  border-top: 3px solid #fbbb1d; border-left: 3px solid #fbbb1d; }
.corner-tr { top: -1px;    right: -1px; border-top: 3px solid #fbbb1d; border-right: 3px solid #fbbb1d; }
.corner-bl { bottom: -1px; left: -1px;  border-bottom: 3px solid #fbbb1d; border-left: 3px solid #fbbb1d; }
.corner-br { bottom: -1px; right: -1px; border-bottom: 3px solid #fbbb1d; border-right: 3px solid #fbbb1d; }

/* Odsjaj — suptilan zrak svjetla koji povremeno prijeđe preko okvira */
.hero-frame-shine {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden; border-radius: 6px; pointer-events: none;
}
.hero-frame-shine::before {
    content: '';
    position: absolute; top: -30%; left: -60%; width: 30%; height: 160%;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.75) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: heroShine 7s ease-in-out infinite;
}
@keyframes heroShine {
    0%           { left: -60%; }
    14%, 100%    { left: 140%; }
}

.hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(251,187,29,0.14); border: 1px solid rgba(251,187,29,0.35);
    color: #92660a; padding: 8px 18px;
    border-radius: 99px; font-weight: 700; font-size: 0.8rem;
    letter-spacing: 1.5px; margin-bottom: 30px; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #92660a; flex-shrink: 0; }

.hero-content h1 .highlight {
    background: linear-gradient(100deg, #c9891a 0%, #fbbb1d 30%, #fff2cc 50%, #fbbb1d 70%, #c9891a 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: highlightShine 5s ease-in-out infinite;
}
@keyframes highlightShine {
    0%, 100% { background-position: 100% 0; }
    50%      { background-position: 0% 0; }
}

.hero-content h1 {
    color: var(--secondary);
    font-size: clamp(2.6rem, 4.6vw, 4.2rem);
    margin-bottom: 26px;
    letter-spacing: -2px;
    line-height: 1.15;
    position: relative;
    overflow: hidden;
    clip-path: inset(0);
    isolation: isolate;
}
/* Sakrij sve injektirane elemente koji nisu .highlight ili br */
.hero-content h1 > *:not(.highlight):not(br) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    clip-path: inset(100%) !important;
}

.hero-content p {
    font-size: 1.15rem; color: var(--text-muted);
    margin-bottom: 44px; max-width: 560px; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.hero-trust {
    display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
    margin-top: 34px;
}
.hero-trust span {
    font-size: 0.88rem; font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}
.hero-trust span::first-letter { color: var(--primary); }

.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-line {
    width: 1px; height: 55px;
    background: linear-gradient(to bottom, rgba(15,23,42,0.4), transparent);
    animation: scrollDown 2.2s infinite;
}
@keyframes scrollDown {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   DARK SECTION (Prednosti)
══════════════════════════════════════════════════════════════ */
.dark-section {
    background: var(--secondary);
    background-image:
        radial-gradient(ellipse at 10% 70%, rgba(245,158,11,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(245,158,11,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 55% 100%, rgba(245,158,11,0.05) 0%, transparent 45%);
    position: relative; overflow: hidden;
}
.dark-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 75%);
}
.dark-section .container { position: relative; z-index: 1; }
.dark-section .section-title h2 { color: #fff; }
.dark-section .section-title p  { color: rgba(255,255,255,0.5); }

/* ── Feature Cards ─────────────────────────────────────────── */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; perspective: 1400px;
    align-items: stretch;
}

.feature-card {
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: 52px 44px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.09);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    position: relative; overflow: hidden;
    transform-style: preserve-3d;
    display: flex; flex-direction: column;
}
/* Zlatna gornja linija koja se širi na hover */
.feature-card::before {
    content: ''; position: absolute;
    top: 0; left: 30%; right: 30%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.6), transparent);
    transition: left 0.45s, right 0.45s;
}
/* Zlatna donja linija na hover */
.feature-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover {
    transform: translateY(-14px);
    border-color: rgba(245,158,11,0.28);
    background: rgba(255,255,255,0.065);
    box-shadow:
        0 45px 90px -20px rgba(0,0,0,0.65),
        0 0 70px -15px rgba(245,158,11,0.2),
        inset 0 1px 0 rgba(255,255,255,0.09);
}
.feature-card:hover::before { left: 0%; right: 0%; }
.feature-card:hover::after  { opacity: 1; }

.card-number {
    font-size: 4rem; font-weight: 800;
    color: rgba(245,158,11,0.09);
    position: absolute; top: 18px; right: 24px;
    line-height: 1; pointer-events: none;
}
.icon-wrapper {
    width: 62px; height: 62px;
    background: rgba(245,158,11,0.12); color: var(--primary);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px; border: 1px solid rgba(245,158,11,0.22);
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover .icon-wrapper { transform: scale(1.1); box-shadow: 0 0 24px rgba(245,158,11,0.22); }
.icon-wrapper svg { width: 28px; height: 28px; }
.feature-card h3 {
    color: #fff; font-size: 1.25rem; margin-bottom: 16px;
    min-height: 3.8rem; display: flex; align-items: flex-start;
    align-self: stretch;
}
.feature-card p { color: rgba(255,255,255,0.52); line-height: 1.75; font-size: 0.97rem; margin-top: auto; }

/* ══════════════════════════════════════════════════════════════
   SERVICES (bijela sekcija)
══════════════════════════════════════════════════════════════ */
.about-services { background: var(--bg-white); }
.large-text { font-size: 3rem !important; letter-spacing: -1px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-label { margin-bottom: 18px; }
.about-text h2  { margin-bottom: 24px; }
.about-text p   { color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; font-size: 1.04rem; }
.check-list     { list-style: none; margin-top: 36px; }
.check-list li  {
    display: flex; align-items: center; font-weight: 600;
    margin-bottom: 22px; color: var(--secondary); font-size: 1rem;
}
.check-list li::before {
    content: '✓'; width: 30px; height: 30px; background: var(--primary);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 16px; font-size: 13px; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.image-3d-wrapper { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.image-3d-wrapper img {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: 0 35px 70px -15px rgba(0,0,0,0.2);
    transition: transform 0.6s ease;
}
.image-3d-wrapper:hover img { transform: scale(1.02) translateY(-5px); }

/* ══════════════════════════════════════════════════════════════
   FAQ (bijela sekcija)
══════════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg-white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
    cursor: pointer; list-style: none;
    -webkit-appearance: none; appearance: none;
    padding: 22px 24px; margin: 10px 0;
    border-radius: var(--radius-md);
    background: rgba(251,187,29,0.22);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    transition: background 0.25s ease;
    font-family: inherit; font-size: 1.05rem; font-weight: 600; color: #000; line-height: 1.4;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; display: none; }
.faq-question:hover { background: rgba(251,187,29,0.34); }
.faq-toggle {
    position: relative; flex-shrink: 0;
    width: 22px; height: 22px;
    transition: transform 0.25s ease;
}
.faq-toggle::before {
    content: ''; position: absolute; top: 40%; left: 50%;
    width: 10px; height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.25s ease;
}
.faq-item[open] .faq-toggle { transform: rotate(180deg); }
.faq-answer { padding: 2px 24px 22px; }
.faq-answer > p {
    color: #000; line-height: 1.8; font-size: 0.98rem; margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT (bijela sekcija)
══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg-white); }
.contact-section .section-title { text-align: center; }
.contact-section .section-title p { margin: 16px auto 0; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 80px; align-items: start; margin-top: 64px;
}

.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: flex-start; margin-bottom: 36px; gap: 20px; }
.contact-icon {
    width: 56px; height: 56px;
    background: rgba(245,158,11,0.07);
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px; font-size: 1.25rem; flex-shrink: 0;
    border: 1px solid rgba(245,158,11,0.14);
}
.contact-item-text { display: flex; flex-direction: column; gap: 6px; padding-top: 6px; }
.contact-item-text strong {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted);
}
.contact-item-text span,
.contact-item-text a {
    font-size: 1.05rem; color: var(--secondary); font-weight: 600;
    text-decoration: none; transition: color 0.25s;
}
.contact-item-text a:hover { color: var(--primary); }

/* ── Forma ─────────────────────────────────────────────────── */
.contact-form-wrapper {
    background: var(--bg-white); padding: 52px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1), 0 0 0 1px rgba(245,158,11,0.04);
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group   { display: flex; flex-direction: column; gap: 10px; }
.form-group label {
    font-weight: 700; font-size: 0.88rem;
    color: var(--secondary); letter-spacing: 0.3px;
}
.form-group input, .form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-main); font-size: 1rem;
    color: var(--secondary); background: var(--bg-white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(245,158,11,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-status {
    text-align: center; font-weight: 600; font-size: 0.93rem;
    padding: 14px; border-radius: var(--radius-md); display: none;
}
.form-status.success { display: block; background: rgba(34,197,94,0.08); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.form-status.error   { display: block; background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer { background: var(--secondary); padding: 50px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.83rem; }
.footer-logo { height: 65px !important; filter: brightness(0) invert(1); opacity: 0.5; }
.footer-legal-links { display: flex; gap: 14px; align-items: center; }
.legal-btn { background: none; border: none; font-size: 0.83rem; color: rgba(255,255,255,0.35); transition: color 0.25s; }
.legal-btn:hover { color: var(--primary); }
.sep { color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════════════════════ */
.hamburger-btn { display: none; flex-direction: column; gap: 6px; background: none; border: none; padding: 5px; }
.hamburger-btn span { width: 28px; height: 2.5px; background: var(--secondary); border-radius: 3px; transition: 0.3s; }
.mobile-menu {
    position: fixed; inset: 0; background: #fff; z-index: 1050;
    display: none; flex-direction: column; justify-content: center;
    padding: 50px; transform: translateX(100%); transition: 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.active { display: flex; transform: translateX(0); }
.mobile-nav-link    { font-size: 2.1rem; font-weight: 800; color: var(--secondary); margin-bottom: 22px; text-decoration: none; display: block; }
.mobile-nav-link:hover { color: var(--primary); }
.menu-close-btn   { position: absolute; top: 28px; right: 28px; font-size: 3rem; background: none; border: none; color: var(--secondary); }
.lang-btn-mobile  { background: var(--primary); color: #fff; border: none; padding: 14px 28px; border-radius: 99px; font-weight: 700; font-size: 0.95rem; margin-top: 20px; width: fit-content; }

/* ── WhatsApp floating gumb (uvijek vidljiv) ───────────────── */
.whatsapp-fab {
    position: fixed; bottom: 24px; left: 24px;
    width: 58px; height: 58px;
    background: #25d366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(37,211,102,0.4);
    z-index: 900; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.07); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }

/* ── Floating pozovi gumb (samo mobitel) ───────────────────── */
.mobile-call-fab {
    display: none;
    position: fixed; bottom: 24px; left: 96px;
    background: var(--primary); color: #fff;
    border-radius: 99px; padding: 14px 22px;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none;
    align-items: center; gap: 10px;
    box-shadow: 0 8px 28px rgba(245,158,11,0.4);
    z-index: 900;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mobile-call-fab svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-call-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,158,11,0.5); }

@media (max-width: 768px) {
    .mobile-call-fab { display: flex; }
}

/* ── WhatsApp link u kontakt listi ─────────────────────────── */
.whatsapp-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; font-weight: 600;
    color: #25d366; text-decoration: none;
    margin-top: 4px; transition: opacity 0.2s;
}
.whatsapp-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.whatsapp-link:hover { opacity: 0.75; }

/* ── Back to top ───────────────────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 34px; right: 34px; width: 52px; height: 52px;
    background: var(--secondary); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.3s; z-index: 900; border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.back-to-top:hover  { background: var(--primary); transform: translateY(-3px); }
.back-to-top.visible { opacity: 1; visibility: visible; }

/* ── Cookie ────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 420px;
    background: var(--secondary); padding: 26px; border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.32); z-index: 2000; display: none;
    border: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.visible { display: block; }
.cookie-banner p { font-size: 0.88rem; margin-bottom: 16px; color: rgba(255,255,255,0.62); }
.btn-cookie-acc  { background: var(--primary); color: #fff; border: none; padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: 0.85rem; }

/* ── Modal ─────────────────────────────────────────────────── */
.modal-legal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px); z-index: 3000;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-legal.active { display: flex; }
.modal-legal-box {
    background: #fff; width: 100%; max-width: 600px;
    padding: 50px; border-radius: 24px; position: relative;
    max-height: 80vh; overflow-y: auto;
}
.modal-close { position: absolute; top: 20px; right: 24px; font-size: 2rem; background: none; border: none; color: var(--text-muted); }
.modal-body p { margin-top: 20px; color: var(--text-muted); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid    { grid-template-columns: 1fr; gap: 50px; }
    .large-text    { font-size: 2.5rem !important; }
    .contact-grid  { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .section-padding  { padding: 80px 0; }
    .nav-links        { display: none; }
    .lang-btn         { display: none; }
    .hamburger-btn    { display: flex; }
    .hero            { padding: 130px 16px 60px; }
    .hero-frame       { padding: 44px 26px; }
    .hero-content h1  { font-size: 2.4rem; letter-spacing: -1px; }
    .hero-buttons     { flex-direction: column; gap: 12px; }
    .features-grid    { grid-template-columns: 1fr; }
    .footer-bottom    { flex-direction: column; text-align: center; }
    .contact-form-wrapper { padding: 28px 22px; }
    .section-title    { margin-bottom: 50px; }
}
