/* ============================================================================
   polish.css — modern visual polish layered on top of style.css
   Loaded LAST so it wins the cascade.
   ========================================================================== */

:root {
    --p-primary:        #dc2626;
    --p-primary-dark:   #b91c1c;
    --p-primary-light:  #ef4444;
    --p-primary-soft:   #fee2e2;
    --p-primary-glow:   rgba(220, 38, 38, 0.22);

    --p-ink-1:          #0f172a;
    --p-ink-2:          #1e293b;
    --p-ink-3:          #334155;

    --p-text-1:         #1a1d23;
    --p-text-2:         #475569;
    --p-text-3:         #64748b;
    --p-text-4:         #94a3b8;

    --p-surface-1:      #ffffff;
    --p-surface-2:      #f8fafc;
    --p-surface-3:      #f1f5f9;

    --p-border-subtle:  #e2e8f0;
    --p-border-strong:  #cbd5e1;

    --p-shadow-1:       0 1px 2px rgba(15, 23, 42, 0.04),
                        0 1px 3px rgba(15, 23, 42, 0.06);
    --p-shadow-2:       0 4px 12px -2px rgba(15, 23, 42, 0.08),
                        0 2px 6px -2px rgba(15, 23, 42, 0.05);
    --p-shadow-3:       0 12px 28px -6px rgba(15, 23, 42, 0.14),
                        0 6px 14px -4px rgba(15, 23, 42, 0.08);

    --p-r:              6px;
    --p-r-lg:           10px;

    --p-ease:           cubic-bezier(0.22, 0.61, 0.36, 1);

    --p-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                   Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ============================================================================
   Base
   ========================================================================== */
html, body {
    font-family: var(--p-font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--p-text-1);
    background: var(--p-surface-1);
    letter-spacing: -0.005em;
}

::selection {
    background: var(--p-primary-glow);
    color: var(--p-primary-dark);
}

/* Smooth scroll between sections */
html { scroll-behavior: smooth; }

/* Kill the 'scale-container' zoom trick — we want REAL responsive */
#scale-container {
    transform: none !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
}

/* ============================================================================
   Hero wrapper — kill the legacy 700px box, make it a real hero
   ========================================================================== */
.LIVADA-UVODNA-STRAN .group {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 78vh !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: none !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
}
/* Background image stays — we just dim it heavily so title reads clearly */
.LIVADA-UVODNA-STRAN .group::before {
    background-image: url("../img/livada1.png") !important;
    background-size: cover !important;
    background-position: 50% 35% !important;
    transform: none !important;
    filter: brightness(0.5) saturate(0.85);
}
/* Strong dark gradient overlay on top of the image so title pops everywhere */
.LIVADA-UVODNA-STRAN .group::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(15,23,42,0.35) 0%, rgba(15,23,42,0.55) 70%, rgba(15,23,42,0.78) 100%),
        radial-gradient(ellipse at 80% 20%, rgba(220, 38, 38, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.LIVADA-UVODNA-STRAN .group > * {
    position: relative !important;
    z-index: 2 !important;
}

/* ============================================================================
   Header / navigation (sits inside the dark hero)
   ========================================================================== */
.header,
#site-header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    padding: 18px 6vw !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    min-height: 64px;
}

/* Make header sticky-ish ONLY after scroll past hero — handled later if needed.
   For now it's transparent over the dark hero. */
.rectangle-5 {
    height: 44px !important;
    width: auto !important;
    margin: 0 !important;
    filter: brightness(0) invert(1);   /* dark logo → white for dark hero */
    opacity: 0.95;
}
.header .div-3 {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

/* PRIJAVA button in header (over dark hero) */
.button-2 {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: var(--p-r) !important;
    padding: 10px 22px !important;
    font-family: var(--p-font-sans) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s var(--p-ease), border-color 0.18s var(--p-ease), transform 0.15s var(--p-ease);
    box-shadow: none !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.button-2:hover {
    background: var(--p-primary) !important;
    border-color: var(--p-primary) !important;
    transform: translateY(-1px);
}
.button-2 .button-text-wrapper,
.button-2 .button-text-2 {
    color: inherit !important;
    font: inherit !important;
    letter-spacing: inherit !important;
}

/* ============================================================================
   Hero content (centered over the dark image)
   ========================================================================== */
.LIVADA-UVODNA-STRAN .group .section-text {
    padding: 0 6vw !important;
    text-align: center !important;
    background: transparent !important;
    margin: auto 0 !important;       /* vertically center inside the flex group */
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 22px !important;
}
.section-text .top {
    margin-bottom: 8px !important;
    text-align: center !important;
}
.main-headline,
.main-headline.flow {
    font-family: var(--p-font-sans) !important;
    font-size: clamp(32px, 6vw, 64px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.05 !important;
    color: #ffffff !important;
    text-align: center !important;
    margin: 0 !important;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.section-text .paragraph {
    font-family: var(--p-font-sans) !important;
    font-size: clamp(15px, 1.6vw, 19px) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    line-height: 1.6 !important;
    max-width: 600px;
    margin: 0 auto !important;
    text-align: center !important;
    font-weight: 400;
}

/* Generic .button — used in hero + bottom contact section */
.button,
.buttons-group .button {
    background: var(--p-primary) !important;
    color: #fff !important;
    border: 1px solid transparent !important;
    border-radius: var(--p-r) !important;
    padding: 13px 30px !important;
    font-family: var(--p-font-sans) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s var(--p-ease), transform 0.15s var(--p-ease);
    box-shadow: none !important;
    display: inline-block;
}
.button:hover,
.buttons-group .button:hover {
    background: var(--p-primary-dark) !important;
    transform: translateY(-1px);
}
.button .text-container,
.button .button-text {
    color: inherit !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
}
.buttons-group {
    display: flex !important;
    justify-content: center !important;
    gap: 12px;
}

/* ============================================================================
   Inline <br/><br/> hack → kill with margin instead
   ========================================================================== */
.LIVADA-UVODNA-STRAN > br {
    display: none !important;
}

/* ============================================================================
   Image-text alternating sections
   ========================================================================== */
.section,
.section-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
    padding: 60px 6vw !important;
    max-width: 1200px;
    margin: 0 auto !important;
}
.section-2 {
    background: var(--p-surface-2);
    max-width: none;
    margin: 0 !important;
    padding-left: max(6vw, calc((100% - 1200px) / 2 + 6vw)) !important;
    padding-right: max(6vw, calc((100% - 1200px) / 2 + 6vw)) !important;
}

.section .right,
.section-2 .right-2 {
    display: flex !important;
    justify-content: center;
}

.section .rectangle,
.section .right img,
.section-2 .img,
.section-2 .right-2 img {
    width: 100% !important;
    height: auto !important;
    max-width: 540px;
    object-fit: cover;
    border-radius: var(--p-r-lg) !important;
    box-shadow: none !important;
    transition: transform 0.4s var(--p-ease);
}
.section .rectangle:hover,
.section-2 .img:hover {
    transform: translateY(-4px);
}

/* Kill the legacy red decorative shapes that were poking out of sections */
.LIVADA-UVODNA-STRAN .rectangle-3,
.LIVADA-UVODNA-STRAN .rectangle-4 {
    display: none !important;
}

.section .col,
.section-2 .col {
    min-width: 0;
}

.secondary-headline,
.secondary-headline-2 {
    font-family: var(--p-font-sans) !important;
    font-size: clamp(22px, 3vw, 32px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
    color: var(--p-ink-1) !important;
    margin: 0 0 18px !important;
    position: relative;
    padding-left: 20px;
}
.secondary-headline::before,
.secondary-headline-2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: var(--p-primary);
    border-radius: 2px;
}

.section .p,
.section-2 .p {
    font-family: var(--p-font-sans) !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--p-text-2) !important;
    margin: 0 !important;
}

/* ============================================================================
   Decorative \\\\ → replace with clean red bar pseudo-element
   We target the inline-styled .decor divs and override.
   ========================================================================== */
.decor {
    font-size: 0 !important;        /* hide the \\ text */
    position: relative;
    display: inline-block !important;
    width: 4px !important;
    height: 32px !important;
    background: var(--p-primary) !important;
    border-radius: 2px;
    transform: none !important;
    text-shadow: none !important;
    margin-right: 4px;
    vertical-align: middle;
}

/* The top .top wrapper next to .decor now uses cleaner alignment */
.testimonial .top,
.section-3 .top {
    align-items: center !important;
}

/* ============================================================================
   Testimonial section (kill the legacy fixed height + negative margin)
   ========================================================================== */
.row-wrapper {
    background: linear-gradient(135deg, var(--p-ink-1) 0%, var(--p-ink-2) 100%) !important;
    padding: 80px 6vw !important;
    color: #fff;
    margin: 60px 0 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
}
.row {
    max-width: 1100px;
    margin: 0 auto !important;
}
.row-2.testimonial {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
}
.testimonial .col-2 {
    min-width: 0;
}
.mnenja-title {
    font-family: var(--p-font-sans) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    color: var(--p-primary-light) !important;
    text-transform: uppercase;
    text-align: left !important;
}
.secondary-headline-3 {
    font-family: var(--p-font-sans) !important;
    font-size: clamp(16px, 2vw, 19px) !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    margin: 16px 0 24px !important;
    font-style: italic;
    font-weight: 400 !important;
    position: relative;
    padding-left: 22px;
}
.secondary-headline-3::before {
    content: '“';
    position: absolute;
    left: -8px;
    top: -18px;
    font-size: 70px;
    font-family: Georgia, serif;
    color: var(--p-primary);
    font-style: normal;
    line-height: 1;
}
.paragraph-2 {
    font-family: var(--p-font-sans) !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.5;
}
.testimonial .col-2:last-child .picture-3 {
    border-radius: var(--p-r-lg) !important;
    overflow: hidden;
    box-shadow: none !important;
    height: 380px !important;
}
.testimonial .col-2 {
    height: auto !important;
    min-height: 0 !important;
    position: relative !important;
}

/* Hide the testimonial decor bar specifically — it conflicts with the “ */
.testimonial .decor {
    display: none !important;
}

/* ============================================================================
   Sport cards grid + FAQ wrapper
   ========================================================================== */
.LIVADA-UVODNA-STRAN .section-3,
.section-3 {
    padding: 80px 6vw !important;
    max-width: 1200px;
    margin: 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
    background: none !important;
    background-image: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}
.section-3 .section-text-3 {
    text-align: center;
    margin: 0 auto 50px !important;
    max-width: 700px;
}
.section-3 .section-text-3 .top {
    justify-content: center !important;
}
.secondary-headline-4 {
    font-family: var(--p-font-sans) !important;
    font-size: clamp(22px, 3vw, 32px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
    color: var(--p-ink-1) !important;
    margin: 0 !important;
}

.row-3 {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 24px !important;
}

.content-box-2 {
    background: var(--p-surface-1) !important;
    border: 1px solid var(--p-border-subtle) !important;
    border-radius: var(--p-r-lg) !important;
    overflow: hidden !important;
    box-shadow: var(--p-shadow-1) !important;
    transition: transform 0.3s var(--p-ease), box-shadow 0.3s var(--p-ease), border-color 0.3s var(--p-ease);
    cursor: default;
    display: flex !important;
    flex-direction: column;
    width: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}
.content-box-2:hover {
    transform: translateY(-4px);
    box-shadow: var(--p-shadow-3) !important;
    border-color: var(--p-primary-light) !important;
}

.content-box-2 [class^="picture-"] {
    width: 100% !important;
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.content-box-2 .content-2 {
    padding: 20px 22px 22px !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.content-box-2 .title-category {
    margin-bottom: 8px !important;
}
.content-box-2 .title-2 {
    font-family: var(--p-font-sans) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
    color: var(--p-ink-1) !important;
    text-transform: uppercase;
}
.content-box-2 .paragraph-3 {
    font-family: var(--p-font-sans) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--p-text-2) !important;
    margin: 0 !important;
}

/* ============================================================================
   FAQ accordion — minimal divider style (no boxy cards)
   ========================================================================== */
.LIVADA-UVODNA-STRAN .FAQ,
.FAQ {
    max-width: 720px;
    margin: 0 auto !important;
    display: block !important;
    padding: 0 !important;
    border-top: 1px solid var(--p-border-subtle);
}
.LIVADA-UVODNA-STRAN .FAQ-item,
.FAQ-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--p-border-subtle) !important;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: none !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    width: 100% !important;
    position: relative !important;
    transition: background 0.16s var(--p-ease);
}
.FAQ-item:hover { background: var(--p-surface-2) !important; }
.FAQ-item.is-open {
    background: transparent !important;
}

/* The trigger row (question + chevron) */
.LIVADA-UVODNA-STRAN .FAQ-item .div,
.FAQ-item .div {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 20px 4px !important;
    cursor: pointer;
    user-select: none;
    background: transparent !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    position: relative !important;
    box-shadow: none !important;
    border: none !important;
}
.LIVADA-UVODNA-STRAN .FAQ-item .question,
.FAQ-item .question,
.FAQ-item p.question,
.FAQ-item div.question {
    font-family: var(--p-font-sans) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--p-ink-1) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    flex: 1;
    text-align: left !important;
    letter-spacing: -0.01em;
}

/* Chevron — replace the gray PNG with a clean rotating CSS arrow */
.FAQ-item img.img-2 {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
    opacity: 0;                      /* hide the legacy png */
    position: relative;
}
.FAQ-item .div::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    border-radius: 50%;
    background: var(--p-surface-2);
    display: flex;
    transition: background 0.18s var(--p-ease), transform 0.25s var(--p-ease);
}
.FAQ-item .div::before {
    content: '';
    position: absolute;
    right: 17px;
    top: 50%;
    margin-top: -3px;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--p-text-2);
    border-bottom: 2px solid var(--p-text-2);
    transform: rotate(45deg);
    transition: transform 0.25s var(--p-ease), border-color 0.2s var(--p-ease);
    z-index: 1;
    pointer-events: none;
}
.FAQ-item:hover .div::after  { background: var(--p-surface-3); }
.FAQ-item:hover .div::before { border-color: var(--p-primary); }
/* Open state: keep the chevron clean — no red filled circle, just rotation */
.FAQ-item.is-open .div::after {
    background: var(--p-surface-3);
}
.FAQ-item.is-open .div::before {
    border-color: var(--p-primary);
    transform: rotate(-135deg);
    margin-top: 0;
}

/* The answer panel — clean, indented slightly under the question */
.FAQ-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.32s var(--p-ease);
}
.FAQ-item.is-open .FAQ-answer { max-height: 800px; }

.FAQ-answer-inner {
    padding: 0 4px 36px !important;
    font-family: var(--p-font-sans) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--p-text-2) !important;
    margin-top: -4px !important;
    max-width: 92%;
}
.FAQ-answer-inner a {
    color: var(--p-primary) !important;
    text-decoration: none !important;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.16s var(--p-ease);
}
.FAQ-answer-inner a:hover { border-color: var(--p-primary); }
.FAQ-answer-inner p { margin: 0 0 10px !important; }
.FAQ-answer-inner p:last-child { margin-bottom: 0 !important; }

/* ============================================================================
   Bottom CTA "STOPITE V STIK Z NAMI"
   Higher specificity (.LIVADA-UVODNA-STRAN .div-wrapper) to beat the
   original style.css that set a red background-image + fixed height.
   ========================================================================== */
.LIVADA-UVODNA-STRAN .div-wrapper {
    background-image: none !important;
    background: var(--p-surface-1) !important;
    border-top: 1px solid var(--p-border-subtle) !important;
    padding: 90px 6vw !important;
    text-align: center !important;
    margin: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    gap: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.LIVADA-UVODNA-STRAN .section-text-5 {
    max-width: 600px;
    margin: 0 auto !important;
    text-align: center !important;
    width: 100%;
    gap: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.LIVADA-UVODNA-STRAN .secondary-headline-5 {
    font-family: var(--p-font-sans) !important;
    font-size: clamp(24px, 3.5vw, 36px) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.15 !important;
    color: var(--p-ink-1) !important;
    margin: 0 !important;
    text-shadow: none !important;
}
.LIVADA-UVODNA-STRAN .paragraph-4 {
    font-family: var(--p-font-sans) !important;
    font-size: 16px !important;
    color: var(--p-text-2) !important;
    line-height: 1.6 !important;
    margin: 0 0 12px !important;
    text-shadow: none !important;
}
.LIVADA-UVODNA-STRAN .div-wrapper .buttons-group {
    margin: 0 !important;
}

/* ============================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--p-ink-1) !important;
    color: rgba(255, 255, 255, 0.65) !important;
    padding: 32px 6vw !important;
}
.footer .bottom {
    max-width: 1200px;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
}
.companyname-all {
    font-family: var(--p-font-sans) !important;
    font-size: 13px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 400 !important;
}
.medle-link {
    display: inline-flex !important;
    align-items: center;
}
.logo-medle {
    height: 28px !important;
    opacity: 0.85;
    transition: opacity 0.18s var(--p-ease);
}
.medle-link:hover .logo-medle { opacity: 1; }

.footer .div-3.social,
.social-link {
    display: inline-flex !important;
}
.social-link {
    width: 36px !important;
    height: 36px !important;
    margin-left: 6px;
    border-radius: var(--p-r) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    align-items: center;
    justify-content: center;
    transition: background 0.18s var(--p-ease);
}
.social-link:hover { background: rgba(255, 255, 255, 0.18) !important; }
.social-link .social-icon {
    width: 16px !important;
    height: 16px !important;
    filter: invert(1) !important;
}

/* ============================================================================
   Contact modal polish
   ========================================================================== */
#contact-overlay { background: rgba(15, 23, 42, 0.55) !important; }
#contact-modal {
    border-radius: var(--p-r-lg) !important;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4) !important;
    padding: 24px !important;
    max-width: 720px !important;
    font-family: var(--p-font-sans) !important;
}
#contact-modal .modal-title strong {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--p-ink-1);
}
#contact-modal .modal-close {
    color: var(--p-text-3) !important;
    border-radius: var(--p-r) !important;
    transition: background 0.16s var(--p-ease), color 0.16s var(--p-ease);
}
#contact-modal .modal-close:hover {
    background: var(--p-surface-3) !important;
    color: var(--p-primary) !important;
}
#contact-modal .info {
    color: var(--p-text-1) !important;
    line-height: 1.7 !important;
    font-size: 14.5px !important;
}
#contact-modal .info a {
    color: var(--p-primary) !important;
    text-decoration: none !important;
    font-weight: 500;
}
#contact-modal .info a:hover { text-decoration: underline !important; }
#contact-modal .cta {
    display: inline-block;
    background: var(--p-primary);
    color: #fff !important;
    text-decoration: none !important;
    padding: 9px 16px;
    border-radius: var(--p-r);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.18s var(--p-ease);
}
#contact-modal .cta:hover { background: var(--p-primary-dark); }
#contact-modal .map-frame iframe {
    border-radius: var(--p-r) !important;
    min-height: 220px;
}

/* ============================================================================
   Responsive — REAL mobile-first layout
   ========================================================================== */
@media (max-width: 900px) {
    .section,
    .section-2,
    .row-2.testimonial {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 50px 6vw !important;
    }
    .section-2 .right-2 {
        order: -1;
    }
    .row-wrapper { padding: 60px 6vw !important; margin: 30px 0 !important; }
    .section-text { padding: 60px 6vw 70px !important; }
    .section-3 { padding: 60px 6vw !important; }
    .div-wrapper { padding: 60px 6vw !important; }

    .footer .bottom {
        justify-content: center !important;
        text-align: center !important;
    }
}

@media (max-width: 600px) {
    .header { padding: 10px 4vw !important; }
    .row-3 { gap: 16px !important; }
    .content-box-2 [class^="picture-"] { height: 180px !important; }
    .secondary-headline,
    .secondary-headline-2 { padding-left: 16px; }
    .secondary-headline-3 { padding-left: 18px; }
    .secondary-headline-3::before { font-size: 56px; top: -14px; }
}

/* ============================================================================
   Section animation enhancements (lightweight)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
    .content-box-2,
    .FAQ-item,
    .section,
    .section-2 {
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.55s var(--p-ease), transform 0.55s var(--p-ease);
    }
    .content-box-2.in-view,
    .FAQ-item.in-view,
    .section.in-view,
    .section-2.in-view {
        opacity: 1;
        transform: translateY(0);
    }
}
