/* =========================================================
   ELEZDON s. r. o. – stylesheet
   Farby:  primary  #0A2A66 (tmavomodrá)
           accent   #FFC400 (žltá)
           dark     #0A1530
   ========================================================= */

:root {
    --primary: #0A2A66;
    --primary-light: #1E4FCC;
    --primary-soft: #1a3a8c;
    --accent: #FFC400;
    --accent-dark: #FF8A00;
    --dark: #0A1530;
    --text: #1f2937;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f5f7fb;
    --border: #e5e7eb;
    --radius: 10px;
    --radius-lg: 18px;
    --shadow-sm: 0 2px 6px rgba(10, 42, 102, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 42, 102, 0.08);
    --shadow-lg: 0 20px 50px rgba(10, 42, 102, 0.12);
    --container-max: 1200px;
    --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--primary); margin-top: 0; line-height: 1.2; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-yellow { background: var(--accent); color: var(--primary); }
.btn-yellow:hover { background: var(--accent-dark); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    transition: all var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}
.logo { height: 56px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { display: flex; gap: 26px; align-items: center; }
.main-nav a { color: var(--primary); font-weight: 600; font-size: 14.5px; position: relative; text-transform: uppercase; letter-spacing: 0.5px; }
.main-nav a::after {
    content: ''; position: absolute; left: 0; bottom: -6px;
    width: 0; height: 2px; background: var(--accent);
    transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.main-nav a.nav-cta { color: #fff; }
.main-nav a.nav-cta:hover { color: #fff; }
.main-nav a.nav-cta::after { display: none; }
.nav-toggle, .nav-close { display: none; background: none; border: none; cursor: pointer; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-top: 90px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,196,0,0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30,79,204,0.25) 0%, transparent 50%);
}
.hero-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px 80px;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,196,0,0.18);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 0 0 24px;
}
.hero-text {
    font-size: 1.1rem;
    margin: 0 0 32px;
    color: rgba(255,255,255,0.85);
    max-width: 580px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-decoration {
    max-width: 280px; margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(255,196,0,0.3));
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-services { background: var(--bg); }
.section-header { max-width: 800px; margin: 0 auto 60px; }
.section-header.center { text-align: center; }
.section-eyebrow {
    display: inline-block;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin: 0 0 16px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0;
}

/* ===== SERVICES ===== */
.services-header {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: end;
    text-align: left;
    max-width: none;
    margin-bottom: 60px;
}
.services-intro { color: var(--text-muted); font-size: 1rem; margin: 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-alt);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-icon {
    width: 64px; height: 64px;
    background: #ffffff;
    color: #9ca3af;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.service-icon svg { width: 28px; height: 28px; }

/* Highlighted card – tmavomodrá s žltou ikonou (podľa inšpirácie) */
.service-card.is-highlighted {
    background: var(--primary);
    color: #fff;
    border-top: 4px solid var(--accent);
}
.service-card.is-highlighted .service-title { color: #fff; }
.service-card.is-highlighted .service-desc { color: rgba(255,255,255,0.85); }
.service-card.is-highlighted .service-icon {
    background: var(--accent);
    color: var(--primary);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--accent); }
.service-card.is-highlighted:hover .service-icon { background: var(--accent); color: var(--primary); }

.service-title { font-size: 1.2rem; margin: 0 0 12px; line-height: 1.3; }
.service-desc { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

.services-footnote {
    text-align: center;
    color: var(--text-muted);
    margin: 60px auto 0;
    max-width: 800px;
    font-size: 0.95rem;
}

/* ===== STEPS — STAČIA 3 KROKY ===== */
.section-steps { background: var(--bg-alt); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.step {
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition);
}
.step:hover { transform: translateY(-6px); }
.step-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.step-title { font-size: 1.25rem; margin: 0 0 12px; }
.step-desc { font-size: 0.95rem; margin: 0; }

.step-light { background: #ffffff; box-shadow: var(--shadow-md); }
.step-light .step-icon { background: #e5e7eb; color: var(--primary); }
.step-light .step-title { color: var(--primary); }
.step-light .step-desc { color: var(--text-muted); }

.step-yellow { background: var(--accent); }
.step-yellow .step-icon { background: var(--primary); color: var(--accent); }
.step-yellow .step-title { color: var(--primary); }
.step-yellow .step-desc { color: var(--primary); }

.step-dark { background: var(--primary); color: #fff; }
.step-dark .step-icon { background: var(--accent); color: var(--primary); }
.step-dark .step-title { color: #fff; }
.step-dark .step-desc { color: rgba(255,255,255,0.85); }

.steps-footnote {
    text-align: center;
    margin-top: 50px;
    color: var(--text-muted);
}
.steps-footnote a { color: var(--primary); font-weight: 700; text-decoration: underline; }

/* ===== ABOUT ===== */
.section-about { background: var(--bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-content p { color: var(--text-muted); font-size: 1.05rem; }
.about-content .btn { margin-top: 12px; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.stat {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: #fff;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition);
}
.stat:hover { transform: translateY(-4px); }
.stat:nth-child(2), .stat:nth-child(3) {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
}
.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem; font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; opacity: 0.9; }

/* ===== WHY US ===== */
.section-why { background: var(--bg-alt); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.benefit { text-align: left; padding: 8px; }
.benefit-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
    -webkit-text-stroke: 1px var(--primary);
}
.benefit-title { font-size: 1.2rem; margin: 0 0 8px; }
.benefit-desc { color: var(--text-muted); margin: 0; }

/* ===== REVIEWS / REFERENCIE ===== */
.section-reviews {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,196,0,0.1), transparent 50%);
}
.section-reviews .container { position: relative; z-index: 1; }
.section-reviews .section-eyebrow { color: rgba(255,255,255,0.6); }
.section-reviews .section-title { color: #fff; }
.section-reviews .section-subtitle { color: rgba(255,255,255,0.75); }

.reviews-header {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}
.reviews-rating {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
}
.reviews-stars {
    color: var(--accent);
    font-size: 1.6rem;
    letter-spacing: 4px;
}
.reviews-rating-meta { display: flex; flex-direction: column; gap: 4px; padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.2); }
.reviews-rating-meta strong { color: #fff; font-size: 1rem; font-weight: 600; max-width: 200px; }
.reviews-rating-meta span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.reviews-rating-meta span strong { color: var(--accent); font-size: 1.1rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.review {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(10px);
}
.review-text {
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 24px;
}
.review-stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.review-name { color: #fff; margin: 0 0 4px; font-size: 1.1rem; }
.review-job { color: var(--accent); font-size: 0.9rem; margin: 0; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 60px 0;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner h2 { color: var(--primary); margin: 0 0 8px; font-size: 1.8rem; }
.cta-banner p { margin: 0; color: var(--primary); opacity: 0.85; }
.cta-banner .btn-yellow { background: var(--primary); color: #fff; }
.cta-banner .btn-yellow:hover { background: var(--dark); color: #fff; }

/* ===== CONTACT ===== */
.section-contact { background: var(--bg-alt); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}
.contact-info h3 { font-size: 1.4rem; margin: 0 0 24px; }
.contact-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-list strong {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.contact-list a, .contact-list span { color: var(--primary); font-weight: 600; font-size: 1.05rem; }

.contact-form {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.contact-form label {
    display: block;
    margin-bottom: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(30,79,204,0.12);
}
.contact-form .btn { width: 100%; margin-top: 8px; }
.hp { position: absolute; left: -9999px; }
.form-message {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 600;
}
.form-message.success { background: #ecfdf5; color: #065f46; border: 1px solid #34d399; }
.form-message.error { background: #fef2f2; color: #991b1b; border: 1px solid #f87171; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-logo { height: 60px; margin-bottom: 16px; }
.footer-about p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 0 0 20px; }
.footer-col h4 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 22px;
    font-weight: 700;
}
.footer-list li { padding: 6px 0; font-size: 0.95rem; }
.footer-list a { color: rgba(255,255,255,0.75); display: inline-flex; align-items: center; gap: 8px; }
.footer-list a:hover { color: var(--accent); }
.arrow-list a::before {
    content: '›';
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-contact-intro {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin: 0 0 20px;
}
.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.85);
}
.footer-phone:hover { color: var(--accent); }
.footer-phone-icon {
    width: 48px; height: 48px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-phone small { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.footer-phone strong { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; color: #fff; }
.footer-phone:hover strong { color: var(--accent); }

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px; height: 36px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}
.social-links a:hover { background: #fff; color: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.82rem;
    text-align: center;
}
.footer-bottom p { margin: 0 0 4px; color: rgba(255,255,255,0.6); }
.footer-bottom strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-register { font-size: 0.78rem; color: rgba(255,255,255,0.45) !important; }
.footer-copyright {
    display: block;
    max-width: 800px;
    margin: 8px auto 0 !important;
    padding: 0 16px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4) !important;
    line-height: 1.5;
    text-align: center;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 48px; height: 48px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
    z-index: 50;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ===== COPY PROTECTION =====
   Default: text sa nedá označiť, obrázky nedajú ťahať a nedajú sa uložiť.
   Výnimky: formulárové polia + kontaktné údaje (telefón/e-mail/adresa). */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Obrázky a SVG sa nedajú ťahať (drag-and-save) */
img, svg, .logo, .footer-logo, .hero-decoration {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

/* Zakázať dlhé klepnutie na mobile (kontextové menu obrázku) */
img { -webkit-touch-callout: none; }

/* VÝNIMKY – tu označovanie POVOLENÉ: */
input, textarea, select,
.contact-list, .contact-list *,
.topbar, .topbar *,
.footer-phone, .footer-phone *,
a[href^="tel:"], a[href^="mailto:"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
}

/* Skryť obsah pri tlači okrem hlavných sekcií (znechutiť print-to-PDF) */
@media print {
    body { background: #fff !important; }
    .hero-bg, .hero-decoration, .cta-banner, .section-reviews::before { display: none !important; }
    .site-header { position: static !important; }
    body::before {
        content: "© ELEZDON s. r. o. – obsah tejto stránky je chránený autorským právom.";
        display: block;
        padding: 20px;
        font-weight: bold;
        color: #0A2A66;
        border: 2px solid #FFC400;
        margin: 20px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-init.in-view { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
    .hero-inner, .about-grid, .contact-grid, .services-header, .reviews-header { grid-template-columns: 1fr; }
    .hero-decoration { max-width: 200px; margin-top: 40px; }
    .reviews-rating { justify-content: flex-start; flex-wrap: wrap; }
    .reviews-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 10px; }
    .nav-toggle span {
        display: block; width: 26px; height: 3px; background: var(--primary); border-radius: 2px;
    }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px; height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        gap: 0;
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; gap: 8px; align-items: stretch; }
    .main-nav ul li a { padding: 12px 0; display: block; font-size: 1.1rem; }
    .nav-close {
        display: block; position: absolute; top: 20px; right: 20px;
        font-size: 32px; color: var(--primary); line-height: 1;
    }
    .nav-cta { margin-top: 20px; }
    .section { padding: 70px 0; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr; }
    .hero-buttons .btn { width: 100%; }
    .logo { height: 44px; }
}
