/* === Root & Base === */
:root {
    --bg: #050505;
    --bg-alt: #0c0d12;
    --panel: rgba(255, 255, 255, 0.04);
    --panel-strong: rgba(255, 255, 255, 0.08);
    --stroke: rgba(255, 255, 255, 0.12);
    --text: #e8e8ef;
    --muted: #a1a5b5;
    --accent: #c6ff1f;      /* neon zelená */
    --accent-2: #7dff5a;    /* druhá neon */
    --glass-blur: blur(18px);
    --radius: 18px;
    --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { 
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(198, 255, 31, 0.14), transparent 32%),
        radial-gradient(circle at 75% 10%, rgba(125, 255, 90, 0.12), transparent 28%),
        linear-gradient(180deg, #0b0c0f 0%, #030303 100%);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Phone banner (top contact) === */
.phone-banner {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(10, 12, 6, 0.98));
    border-bottom: 1px solid var(--stroke);
}
.phone-banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 0 12px;
    font-size: 1rem;
}
.phone-banner-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    color: var(--muted);
}
.phone-banner-number {
    display: inline-block;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    animation: phonePulse 1.2s ease-in-out 3 2.5s;
}
.phone-banner-number:hover {
    color: var(--accent-2);
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
        text-shadow: none;
    }
    40% {
        transform: scale(1.06);
        text-shadow: 0 0 16px rgba(198, 255, 31, 0.9);
    }
    100% {
        transform: scale(1);
        text-shadow: none;
    }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
a { 
    color: inherit; 
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
img { 
    display: block; 
    width: 100%; 
    height: auto;
    max-width: 100%;
}

/* === Decorative glows === */
.glow-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 30% 40%, rgba(198, 255, 31, 0.18), transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(125, 255, 90, 0.14), transparent 36%);
    filter: blur(70px);
}
.glow-layer-2 { mix-blend-mode: screen; opacity: 0.4; }

/* === Hero === */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0 60px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: none;
    overflow: hidden;
    transform-origin: center;
    animation: slowZoom 22s ease-in-out infinite alternate;
}
.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 */
    min-width: 177.78vh; /* cover height when viewport is tall */
    min-height: 100vh;
    border: 0;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        120deg,
        rgba(5, 5, 5, 0.65) 0%,
        rgba(5, 5, 5, 0.35) 40%,
        rgba(5, 5, 5, 0.65) 100%
    );
}

.top-nav {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 28px;
    margin: 0 auto;
    width: min(1200px, 100%);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: 0.08em; }
.logo-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, var(--accent));
    box-shadow: 0 0 18px rgba(198, 255, 31, 0.85);
}
.logo-text { font-weight: 700; color: #fff; }
.logo-img { height: 24px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 18px; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color 0.2s ease, transform 0.2s ease; }
.nav-links a:hover { color: #fff; transform: translateY(-2px); }
.nav-links .pill {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    color: #000;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 24px rgba(198, 255, 31, 0.45);
}

/* hero grid minimalist */
.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr);
    justify-content: flex-start;
    margin-top: 60px;
}
.h1 {
    font-size: 120px;
    color: cyan;
}

.hero-copy {
    max-width: 620px;
}
.hero-copy h1 {
    font-size: clamp(6.6rem, 3vw + 1rem, 3.8rem);
    line-height: 1.05;
    color: #fff;
    margin: 10px 0 4px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.accent-x { color: var(--accent); }
.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 60px;
}
.hero-lede-minimal {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 520px;
}
.eyebrow {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--accent);
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 22px 0 18px;
    flex-wrap: wrap;
}
.btn {
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.3s ease, border-color 0.2s ease, background 0.3s ease, color 0.3s ease;
    font-size: 0.95rem;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.btn-icon {
    font-size: 1rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #020303;
    box-shadow: 0 10px 30px rgba(198, 255, 31, 0.45);
}
.btn-ghost {
    border-color: var(--stroke);
    color: #fff;
    background: rgba(5, 5, 5, 0.65);
    backdrop-filter: blur(8px);
}
.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
}
.btn.full { width: 100%; justify-content: center; }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(198, 255, 31, 0.6); }

/* hero meta icons row */
.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.85rem;
    color: var(--muted);
}
.meta-icon {
    font-size: 1rem;
    color: var(--accent);
}

/* scroll cue */
.scroll-cue {
    position: relative;
    z-index: 3;
    align-self: center;
    margin-top: 40px;
    color: var(--muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.scroll-cue::after {
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    display: inline-block;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="6 9 12 15 18 9" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/50% 50% no-repeat;
    background: linear-gradient(145deg, var(--accent), var(--accent-2));
    animation: bounce 2.4s ease-in-out infinite;
}

/* === Sections === */
.section { padding: 90px 0; position: relative; z-index: 2; }
.section-header { margin-bottom: 32px; max-width: 760px; }
.section h2 {
    font-size: clamp(3rem, 1.6vw + 1rem, 2.6rem);
    line-height: 1.15;
    margin-top: 10px;
    color: #fff;
}
.section .lede { color: var(--text); margin: 0px 0 0; }

.section .ledes { 
    font-size: 1.5rem;
    font-weight:900;
    color: var(--accent); margin: 14px 0 0; 
}

.split {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: center;
}
.split-contact {
    grid-template-columns: 1fr 1.3fr; /* větší mapa */
}
.split-test {
    grid-template-columns: 1.5fr 1fr;
    margin-bottom: 40px;
}

.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.chips span {
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--stroke);
    color: #fff;
    font-weight: 500;
}
.signature .lede { max-width: 820px; }
.signature-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 18px 0 6px;
}
.fact {
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
}
.fact-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}
.fact-label { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.signature-card { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.signature-card ul { margin-top: 6px; }

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.detail-card {
    padding: 22px;
    border-radius: var(--radius);
    background: var(--panel-strong);
    border: 1px solid var(--stroke);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow);
}
.detail-card.alt { background: linear-gradient(135deg, rgba(198, 255, 31, 0.12), rgba(125, 255, 90, 0.08)); }
.detail-card h4 { font-size: 1.2rem; margin-bottom: 12px; color: #fff; }
.detail-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; color: var(--muted); }
.detail-card li { position: relative; padding-left: 18px; }
.detail-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* === Test Section === */
.test-section { 
    background: 
        radial-gradient(circle at 20% 30%, rgba(198, 255, 31, 0.08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(125, 255, 90, 0.06), transparent 35%),
        linear-gradient(180deg, #050505 0%, #06070b 100%); 
}
.test-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    max-width: 400px;
    margin: 0 auto;
}
.test-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.test-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0 20px;
    color: var(--text);
}
.test-list li {
    position: relative;
    padding-left: 20px;
}
.test-list li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.test-video-wrapper {
    margin-top: 50px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    background: #000;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.test-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* === Services === */
.services { background: linear-gradient(180deg, #06070b 0%, #050505 60%); }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}
.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: var(--panel);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-rows: 220px 1fr;
    transition: transform 0.22s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(198, 255, 31, 0.18), transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 255, 31, 0.7);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.service-card:hover::before { opacity: 1; }

.image-veil { position: relative; height: 100%; overflow: hidden; }
.image-veil::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
}
.image-veil img { height: 100%; width: 100%; object-fit: cover; filter: saturate(1.1); transform: scale(1); transition: transform 0.45s ease; }
.service-card:hover img { transform: scale(1.05); }

.service-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.service-body h3 { font-size: 1.25rem; color: #fff; }
.service-body p { color: var(--muted); }
.service-body ul { list-style: none; color: var(--muted); display: flex; flex-direction: column; gap: 8px; }
.service-body li { padding-left: 18px; position: relative; }
.service-body li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
}
.tag {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(198, 255, 31, 0.16);
    color: #0c1004;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    text-transform: uppercase;
}
.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff, var(--accent));
    box-shadow: 0 0 12px rgba(198, 255, 31, 0.9);
}
.tag.neutral {
    background: rgba(125, 255, 90, 0.16);
    color: #fbfffd;
}

/* === Portfolio === */
.portfolio { background: #070709; }
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    position: relative;
    isolation: isolate;
}
.gallery-card img { height: 260px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.gallery-card figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px;
    z-index: 2;
    color: #fff;
    font-weight: 600;
}

/* === Pricing === */
.pricing { background: linear-gradient(180deg, #050505 0%, #0a0b10 100%); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}
.price-card {
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: var(--panel);
    padding: 22px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}
.price-card.featured {
    background: radial-gradient(circle at top right, rgba(198, 255, 31, 0.22), rgba(5,5,5,0.9));
    border-color: rgba(198, 255, 31, 0.7);
}
.price-header h3 { font-size: 1.35rem; color: #fff; margin-top: 6px; }
.price-header p { color: var(--muted); }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-card li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--stroke);
    padding-bottom: 10px;
    color: var(--text);
    font-weight: 500;
}
.price-card li span:last-child { color: var(--accent); }

/* === Contact === */
.contact { background: #060708; }
.contact-card, .map-card {
    padding: 26px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: var(--panel);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow);
}
.contact-card h2 { margin-bottom: 8px; }
.contact-card .lede { margin-bottom: 16px; }
.contact-phone {
    display: inline-block;
    font-size: 1.8rem;
    color: #fff;
    margin: 10px 0 16px;
    font-weight: 700;
}
.cta-row { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; color: var(--muted); }
.info-grid h4 { color: #fff; margin-bottom: 6px; }

.map-card h4 { margin-bottom: 10px; }
.map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    height: 520px; /* větší mapa */
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* === Footer === */
.footer { background: #040404; padding: 36px 0 24px; text-align: center; }
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    align-items: center;
    text-align: left;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
}
.footer-links a { color: var(--text); }
.foot-note { color: var(--muted); margin-top: 6px; }
.copyright { color: var(--muted); font-size: 0.9rem; margin-top: 16px; }

/* === Animations === */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
@keyframes slowZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.06); }
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-grid,
    .split,
    .split-contact,
    .split-test {
        grid-template-columns: 1fr;
    }
    .hero { min-height: 80vh; }
    .top-nav { padding: 6px 20px; }
    .nav-links { gap: 12px; }
    .map-wrapper { height: 420px; }
    .test-image {
        margin-top: 30px;
        max-width: 85%;
    }
    .test-video-wrapper {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    body {
        background: #000;
        font-size: 15px;
    }
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: env(safe-area-inset-top, 0px);
        background: #000;
        z-index: 1000;
    }
    
    /* Phone banner */
    .phone-banner-inner {
        padding: 8px 0 10px;
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 8px;
    }
    .phone-banner-label {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
    .phone-banner-number {
        font-size: 1rem;
    }
    
    /* Container */
    .container {
        padding: 0 20px;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 24px;
    }
    .section h2 {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
        line-height: 1.2;
        margin-top: 8px;
    }
    .section .ledes {
        font-size: 1.2rem;
        margin: 12px 0 0;
    }
    .section .lede {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Hero */
    .hero { 
        padding: calc(18px + env(safe-area-inset-top)) 0 32px; 
        min-height: 100vh; 
        justify-content: center; 
    }
    .hero-grid { gap: 14px; margin-top: 0; justify-items: center; }
    .hero-copy { margin: 0; text-align: center; max-width: 520px; padding: 0 6px; }
    .hero-copy h1 { font-size: clamp(3.2rem, 12vw, 4rem); line-height: 1.02; letter-spacing: 0.05em; text-align: center; }
    .hero-subtitle { font-size: 0.95rem; margin: 6px 0 14px 0; line-height: 1.25; letter-spacing: 0.05em; text-align: center; }
    .hero-actions { flex-direction: column; width: 100%; align-items: center; gap: 10px; margin: 8px 0 6px; }
    .hero-meta-row { display: none; }
    
    /* Buttons */
    .btn { 
        width: 100%; 
        justify-content: center; 
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    .btn-primary {
        padding: 16px 24px;
        font-size: 1.05rem;
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        box-shadow: 0 12px 40px rgba(198, 255, 31, 0.7), 0 0 0 2px rgba(198, 255, 31, 0.3);
        backdrop-filter: blur(12px);
    }
    
    /* Navigation */
    .nav-links { display: none; }
    .top-nav {
        padding: 8px 20px;
    }
    
    /* Split layouts */
    .split,
    .split-contact,
    .split-test {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .split-test {
        margin-bottom: 30px;
    }
    
    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-card {
        grid-template-rows: 180px 1fr;
    }
    .service-body {
        padding: 18px;
    }
    .service-body h3 {
        font-size: 1.1rem;
    }
    .service-body p,
    .service-body ul {
        font-size: 0.9rem;
    }
    
    /* Test section */
    .test-image {
        max-width: 80%;
    }
    .test-video-wrapper {
        max-width: 85%;
        margin-top: 30px;
    }
    .test-list {
        font-size: 0.9rem;
        gap: 8px;
    }
    .test-list li {
        padding-left: 18px;
    }
    
    /* Gallery */
    .gallery { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
        gap: 12px; 
    }
    .gallery-card:nth-child(n+5) { display: none; }
    .gallery-card img { 
        height: 200px; 
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .price-card { 
        gap: 12px; 
        display: flex;
        flex-direction: column;
        padding: 18px;
    }
    .price-header h3 {
        font-size: 1.2rem;
    }
    .price-card ul {
        flex: 1;
    }
    .price-card li {
        font-size: 0.9rem;
        padding-bottom: 8px;
    }
    .price-card .btn-primary.full {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin-top: auto;
    }
    
    /* Contact */
    .contact-card,
    .map-card {
        padding: 20px;
    }
    .contact-card h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }
    .contact-phone {
        font-size: 1.4rem;
        margin: 8px 0 14px;
    }
    .cta-row {
        flex-direction: column;
        gap: 10px;
    }
    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .map-wrapper {
        height: 300px;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        align-items: center;
    }
    .copyright {
        font-size: 0.85rem;
        margin-top: 12px;
    }
}

@media (max-width: 560px) {
    .container { 
        padding: 0 16px; 
    }
    .section { 
        padding: 40px 0; 
    }
    .section h2 {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    .section .ledes {
        font-size: 1.1rem;
    }
    
    /* Phone banner */
    .phone-banner-inner {
        padding: 6px 0 8px;
        font-size: 0.8rem;
    }
    .phone-banner-label {
        font-size: 0.65rem;
    }
    .phone-banner-number {
        font-size: 0.95rem;
    }
    
    /* Hero */
    .hero-copy { 
        max-width: 100%; 
        padding: 0 4px;
    }
    .hero-copy h1 { 
        font-size: clamp(2.4rem, 12vw, 3.2rem); 
    }
    .hero-subtitle { 
        font-size: 0.85rem;
        margin-bottom: 22px; 
    }
    
    /* Buttons */
    .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    .btn-primary {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Services */
    .service-card {
        grid-template-rows: 160px 1fr;
    }
    .service-body {
        padding: 16px;
    }
    .service-body h3 {
        font-size: 1rem;
    }
    
    /* Gallery */
    .gallery-card img { 
        height: 180px; 
    }
    .gallery {
        gap: 10px;
    }
    
    /* Pricing */
    .price-card {
        padding: 16px;
    }
    .price-header h3 {
        font-size: 1.1rem;
    }
    .price-card li {
        font-size: 0.85rem;
    }
    
    /* Contact */
    .contact-card,
    .map-card {
        padding: 18px;
    }
    .contact-phone {
        font-size: 1.3rem;
    }
    .map-wrapper {
        height: 250px;
    }
    
    /* Test section */
    .test-image {
        max-width: 75%;
    }
    .test-video-wrapper {
        max-width: 80%;
    }
    
    /* Footer */
    .footer {
        padding: 24px 0 16px;
    }
    .copyright {
        font-size: 0.8rem;
    }
}
