/* ============================================================
   ODŤAHOVÁ SLUŽBA H&M – style.css
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:        #e63312;
    --red-dark:   #c0280e;
    --red-light:  #ff4d2e;
    --dark:       #0f0f1a;
    --dark2:      #1a1a2e;
    --dark3:      #16213e;
    --mid:        #2a2a45;
    --light:      #f8f9fc;
    --white:      #ffffff;
    --text:       #2d2d3a;
    --text-muted: #6b7280;
    --border:     #e5e7eb;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.10);
    --shadow-md:  0 4px 16px rgba(0,0,0,.12);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
    --radius:     12px;
    --radius-lg:  20px;
    --transition: .25s ease;
    --font:       'Inter', system-ui, -apple-system, sans-serif;
    --nav-h:      72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 96px 0; }
.section-light { background: var(--light); }
.section-dark  { background: var(--dark2); }
.section-contact { background: var(--white); }

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(230,51,18,.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(230,51,18,.45);
    outline: none;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--red);
    font-weight: 700;
    font-size: .95rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}
.btn-white:hover, .btn-white:focus-visible {
    background: var(--light);
    transform: translateY(-2px);
    outline: none;
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.6);
    transition: all var(--transition);
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
    outline: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(15,15,26,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.navbar { height: var(--nav-h); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    color: var(--white);
    text-decoration: none;
    transition: opacity var(--transition);
    line-height: 1;
}
.logo:hover { opacity: .85; }
.logo-main {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
}
.logo-amp { color: var(--red); }
.logo-sub {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    line-height: 1;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: .9rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link:focus-visible {
    color: var(--white);
    background: rgba(255,255,255,.1);
    outline: none;
}
.nav-link.nav-cta {
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(230,51,18,.4);
}
.nav-link.nav-cta:hover {
    background: var(--red-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 8px;
    transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,10,20,.88) 0%,
        rgba(15,15,26,.75) 50%,
        rgba(10,10,20,.55) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    padding-top: var(--nav-h);
    max-width: 760px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,51,18,.18);
    border: 1px solid rgba(230,51,18,.4);
    color: #ff8070;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--red-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.3); }
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.hero-title-accent { color: var(--red-light); }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.7;
}
.hero-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 13px 24px;
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(230,51,18,.4);
}
.phone-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.phone-btn-outline {
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.4);
    box-shadow: none;
}
.phone-btn-outline:hover { background: rgba(255,255,255,.2); border-color: var(--white); }
.hero-cta { font-size: 1rem; padding: 15px 32px; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.scroll-dot {
    width: 6px; height: 6px;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: .5; }
    50%       { transform: translateY(10px); opacity: 1; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--red);
    padding: 28px 0;
}
.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 40px;
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1;
}
.stat-label {
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.25);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-tag {
    display: inline-block;
    background: rgba(230,51,18,.1);
    color: var(--red);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-tag-light {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--dark);
    margin-bottom: 20px;
}
.section-title-light { color: var(--white); }
.section-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 520px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}
.section-subtitle-light {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}
.section-header-center { text-align: center; margin-bottom: 60px; }

/* ============================================================
   O NÁS – GRID
   ============================================================ */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.section-content { order: 1; }
.section-image  { order: 2; position: relative; }
.section-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    box-shadow: var(--shadow-lg);
}
.image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
}
.image-badge svg { color: var(--red); flex-shrink: 0; }
.image-badge strong { display: block; font-size: .9rem; color: var(--dark); }
.image-badge span  { display: block; font-size: .75rem; color: var(--text-muted); }

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 36px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text);
}
.feature-icon {
    width: 24px; height: 24px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.09);
    border-color: rgba(230,51,18,.4);
}
.service-card-highlight {
    background: var(--red);
    border-color: var(--red);
}
.service-card-highlight:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}
.service-icon-wrap {
    width: 64px; height: 64px;
    background: rgba(230,51,18,.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}
.service-card-highlight .service-icon-wrap {
    background: rgba(255,255,255,.2);
}
.service-icon-wrap img {
    width: 40px; height: 40px;
    object-fit: cover;
    border-radius: 8px;
}
.service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-text {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
}
.service-card-highlight .service-text { color: rgba(255,255,255,.85); }

/* ============================================================
   WHY GRID
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230,51,18,.25);
}
.why-icon {
    width: 60px; height: 60px;
    background: rgba(230,51,18,.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 20px;
}
.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.why-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 50%, var(--mid) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(230,51,18,.25) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.02em;
    margin-bottom: 8px;
}
.cta-text p {
    color: rgba(255,255,255,.65);
    font-size: 1rem;
}
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
a.contact-detail-item:hover {
    border-color: rgba(230,51,18,.3);
    box-shadow: var(--shadow-sm);
}
.contact-detail-icon {
    width: 44px; height: 44px;
    background: rgba(230,51,18,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}
.contact-detail-item strong {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2px;
}
.contact-detail-item span {
    font-size: .95rem;
    font-weight: 600;
    color: var(--dark);
}

/* ---- Form ---- */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: .02em;
}
.form-group label span { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font);
    font-size: .95rem;
    color: var(--text);
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230,51,18,.12);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b7c3; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.form-note { font-size: .78rem; color: var(--text-muted); }
.btn-submit { font-size: 1rem; padding: 14px 32px; }

.form-error {
    background: #fff0ee;
    border: 1px solid rgba(230,51,18,.3);
    color: var(--red-dark);
    font-size: .88rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
}
.form-success {
    text-align: center;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.success-icon {
    width: 80px; height: 80px;
    background: rgba(16,185,129,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.form-success p  { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    padding: 72px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}
.logo-footer { margin-bottom: 0; }
.footer-links h3,
.footer-contact h3 {
    color: rgba(255,255,255,.5);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact {
    display: flex;
    flex-direction: column;
}
.footer-contact a,
.footer-contact span {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p {
    color: rgba(255,255,255,.35);
    font-size: .8rem;
}

/* ============================================================
   FAB PHONE BUTTON
   ============================================================ */
.fab-phone {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 58px; height: 58px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(230,51,18,.5);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: fabPulse 3s infinite;
}
.fab-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(230,51,18,.65);
    animation: none;
}
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(230,51,18,.5); }
    50%       { box-shadow: 0 4px 32px rgba(230,51,18,.75), 0 0 0 10px rgba(230,51,18,.1); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
    border-color: rgba(230,51,18,.3);
    box-shadow: var(--shadow-sm);
}
.faq-item.open {
    border-color: rgba(230,51,18,.4);
    box-shadow: var(--shadow-md);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: color var(--transition);
}
.faq-question:hover,
.faq-question:focus-visible {
    color: var(--red);
    outline: none;
}
.faq-item.open .faq-question {
    color: var(--red);
}
.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--red);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.faq-link {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.faq-link:hover { color: var(--red-dark); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .section-grid    { grid-template-columns: 1fr; gap: 48px; }
    .section-image   { order: -1; }
    .image-badge     { bottom: -16px; left: 16px; }
    .services-grid   { grid-template-columns: repeat(2, 1fr); }
    .why-grid        { grid-template-columns: repeat(2, 1fr); }
    .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner    { grid-template-columns: 1fr 1fr; }
    .footer-brand    { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }
    .section { padding: 72px 0; }

    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(10,10,20,.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 24px 32px;
        gap: 4px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        /* Skryté stav */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
        pointer-events: none;
    }
    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-link { padding: 12px 16px; font-size: 1rem; border-radius: 10px; }
    .nav-link.nav-cta { text-align: center; margin-top: 8px; }

    .hero-title { font-size: 2.2rem; }
    .hero-phones { flex-direction: column; }
    .phone-btn { justify-content: center; }

    .stats-inner { gap: 0; }
    .stat-item { padding: 8px 20px; }
    .stat-divider { height: 32px; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid      { grid-template-columns: 1fr; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .form-footer { flex-direction: column; align-items: stretch; }
    .btn-submit { justify-content: center; }

    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .stats-inner { flex-direction: column; }
    .stat-divider { width: 48px; height: 1px; }
    .stat-item { padding: 12px 0; }
}
