:root {
--primary: #191E39;
--primary-light: #242b52;
--accent: #6BB96C;
--accent-dark: #56a957;
--text: #191E39;
--muted: #64748b;
--bg: #ffffff;
--bg-soft: #f6f8fb;
--border: #e2e8f0;
--success: #6BB96C;
--radius: 18px;
--shadow: 0 18px 45px rgba(25, 30, 57, 0.14);
--max-width: 1160px;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: var(--text);
background: var(--bg);
line-height: 1.6;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
.container {
width: min(100% - 32px, var(--max-width));
margin: 0 auto;
}
.top-bar {
background: var(--primary);
color: var(--accent);
font-size: 14px;
padding: 8px 0;
border-bottom: 1px solid rgba(107, 185, 108, 0.24);
}
.top-bar__inner {
display: flex;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap;
}
.top-bar__claim,
.top-bar__call-label {
font-weight: 900;
}
.top-bar a {
color: var(--accent);
font-weight: 700;
}
.top-bar a:hover {
color: #ffffff;
}
.header {
position: sticky;
top: 0;
z-index: 20;
background: var(--primary);
border-bottom: 1px solid rgba(107, 185, 108, 0.24);
box-shadow: 0 10px 30px rgba(25, 30, 57, 0.18);
}
.header__inner {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 76px;
gap: 24px;
}
.logo {
display: flex;
flex-direction: column;
font-weight: 800;
color: var(--accent);
line-height: 1.1;
letter-spacing: -0.02em;
}
.logo span {
color: rgba(107, 185, 108, 0.78);
font-size: 13px;
font-weight: 600;
margin-top: 4px;
letter-spacing: 0;
}
.nav {
display: flex;
align-items: center;
gap: 22px;
font-weight: 700;
color: var(--accent);
font-size: 15px;
}
.nav a:hover {
color: #ffffff;
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 48px;
padding: 12px 22px;
border-radius: 999px;
font-weight: 800;
border: 2px solid transparent;
cursor: pointer;
transition: 0.2s ease;
text-align: center;
}
.button--primary {
background: var(--accent);
color: var(--primary);
box-shadow: 0 10px 30px rgba(107, 185, 108, 0.28);
}
.button--primary:hover {
background: var(--accent-dark);
transform: translateY(-1px);
}
.button--secondary {
background: #fff;
color: var(--primary);
border-color: var(--border);
}
.button--secondary:hover {
border-color: var(--accent);
color: var(--primary);
transform: translateY(-1px);
}
.hero {
background:
radial-gradient(circle at 80% 20%, rgba(107, 185, 108, 0.2), transparent 34%),
linear-gradient(135deg, #f7fafc 0%, #eef4f9 55%, #ffffff 100%);
padding: 78px 0 64px;
overflow: hidden;
}
.hero__grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 48px;
align-items: center;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 14px;
border-radius: 999px;
background: rgba(107, 185, 108, 0.16);
color: var(--primary);
font-weight: 800;
font-size: 14px;
margin-bottom: 18px;
}
h1, h2, h3 {
margin: 0;
line-height: 1.15;
color: var(--primary);
letter-spacing: -0.03em;
}
h1 {
font-size: clamp(38px, 5vw, 62px);
max-width: 760px;
}
h2 {
font-size: clamp(30px, 3.6vw, 44px);
margin-bottom: 18px;
}
h3 {
font-size: 22px;
margin-bottom: 10px;
}
p {
margin: 0 0 16px;
}
.lead {
font-size: 20px;
color: var(--text);
max-width: 720px;
margin-top: 22px;
}
.hero__actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 28px;
}
.hero__badges {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
margin-top: 34px;
max-width: 760px;
}
.badge-card {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 16px;
box-shadow: 0 10px 28px rgba(25, 30, 57, 0.08);
}
.badge-card strong {
display: block;
color: var(--primary);
font-size: 18px;
margin-bottom: 4px;
}
.badge-card span {
color: var(--muted);
font-size: 14px;
}
.hero-card {
background: #fff;
border-radius: 28px;
padding: 30px;
box-shadow: var(--shadow);
border: 1px solid var(--border);
}
.price {
font-size: 46px;
font-weight: 900;
color: var(--primary);
letter-spacing: -0.04em;
margin: 12px 0 2px;
}
.price small {
font-size: 18px;
color: var(--muted);
font-weight: 700;
}
.vat-note {
color: var(--muted);
font-size: 15px;
font-weight: 700;
margin-top: 4px;
}
.check-list {
list-style: none;
padding: 0;
margin: 22px 0 0;
display: grid;
gap: 12px;
}
.check-list li {
position: relative;
padding-left: 30px;
}
.check-list li::before {
content: "✓";
position: absolute;
left: 0;
top: 0;
color: var(--success);
font-weight: 900;
}
section {
padding: 76px 0;
}
.section-soft {
background: var(--bg-soft);
}
.section-head {
max-width: 760px;
margin-bottom: 34px;
}
.section-head p {
color: var(--muted);
font-size: 18px;
}
.grid-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}
.grid-2 {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 28px;
align-items: start;
}
.card {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 26px;
box-shadow: 0 12px 30px rgba(25, 30, 57, 0.06);
}
.card__icon {
width: 46px;
height: 46px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 14px;
background: rgba(107, 185, 108, 0.18);
color: var(--primary);
font-weight: 900;
margin-bottom: 16px;
}
.card p {
color: var(--muted);
}
.steps {
counter-reset: step;
display: grid;
gap: 18px;
}
.step {
position: relative;
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 22px 22px 22px 74px;
box-shadow: 0 12px 30px rgba(25, 30, 57, 0.05);
}
.step::before {
counter-increment: step;
content: counter(step);
position: absolute;
left: 22px;
top: 22px;
width: 34px;
height: 34px;
border-radius: 50%;
background: var(--accent);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
font-weight: 900;
}
.price-box {
background: var(--primary);
color: #fff;
border-radius: 28px;
padding: 38px;
box-shadow: var(--shadow);
}
.price-box h2,
.price-box h3 {
color: var(--accent);
}
.price-box .price {
color: #fff;
}
.price-box .price small,
.price-box .vat-note,
.price-box p,
.price-box li {
color: rgba(255, 255, 255, 0.84);
}
.price-box .check-list li::before {
color: var(--accent);
}
.location-box {
display: grid;
grid-template-columns: 1fr 1fr;
overflow: hidden;
border-radius: 28px;
border: 1px solid var(--border);
background: #fff;
box-shadow: var(--shadow);
}
.location-box__image {
min-height: 420px;
background:
linear-gradient(135deg, rgba(25, 30, 57, 0.64), rgba(25, 30, 57, 0.3)),
url(//sidlofirmyostrava.cz/images/sidlo-firmy-ostrava.jpg) center / cover no-repeat;
position: relative;
display: flex;
align-items: flex-end;
padding: 28px;
}
.location-box__image::before {
content: "Fotka nemovitosti";
display: inline-flex;
padding: 8px 14px;
border-radius: 999px;
background: rgba(25, 30, 57, 0.82);
color: var(--accent);
font-weight: 900;
font-size: 14px;
backdrop-filter: blur(6px);
}
.location-box__content {
padding: 38px;
display: flex;
flex-direction: column;
justify-content: center;
}
.address-panel {
background: var(--primary);
color: #fff;
border-radius: 22px;
padding: 26px;
margin-bottom: 24px;
}
.address-panel strong {
display: block;
font-size: 26px;
line-height: 1.2;
color: var(--accent);
margin-bottom: 8px;
}
.address-panel span {
display: block;
color: rgba(255, 255, 255, 0.88);
font-weight: 700;
}
.map-links {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 22px;
}
.faq {
display: grid;
gap: 14px;
}
details {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 20px 22px;
box-shadow: 0 10px 26px rgba(25, 30, 57, 0.05);
}
summary {
cursor: pointer;
color: var(--primary);
font-weight: 900;
font-size: 18px;
}
details p {
margin-top: 14px;
color: var(--muted);
}
.contact-card {
background: #fff;
border: 1px solid var(--border);
border-radius: 28px;
padding: 30px;
box-shadow: var(--shadow);
}
.contact-list {
list-style: none;
padding: 0;
margin: 18px 0 0;
display: grid;
gap: 14px;
}
.contact-list strong {
display: block;
color: var(--primary);
}
form {
display: grid;
gap: 14px;
}
label {
font-weight: 800;
color: var(--primary);
font-size: 14px;
}
input,
textarea {
width: 100%;
border: 1px solid var(--border);
border-radius: 14px;
padding: 14px 16px;
font: inherit;
color: var(--text);
background: #fff;
}
textarea {
min-height: 140px;
resize: vertical;
}
input:focus,
textarea:focus {
outline: 3px solid rgba(107, 185, 108, 0.22);
border-color: var(--accent);
}
.form-note {
color: var(--muted);
font-size: 14px;
}
.form-note a {
color: var(--primary);
font-weight: 800;
text-decoration: underline;
text-underline-offset: 4px;
}
.footer {
background: var(--primary);
color: var(--accent);
padding: 36px 0;
border-top: 1px solid rgba(107, 185, 108, 0.24);
}
.footer__inner {
display: flex;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.footer strong {
color: var(--accent);
}
.footer a {
color: var(--accent);
text-decoration: underline;
text-underline-offset: 4px;
}
.footer a:hover {
color: #ffffff;
}
.mobile-menu-button {
display: none;
width: 42px;
height: 42px;
padding: 0;
border: 0;
background: transparent;
color: var(--accent);
cursor: pointer;
align-items: center;
justify-content: center;
}
.hamburger {
display: inline-flex;
flex-direction: column;
gap: 6px;
width: 30px;
}
.hamburger span {
display: block;
height: 3px;
width: 100%;
border-radius: 999px;
background: var(--accent);
}
@media (max-width: 920px) {
.hero__grid,
.grid-2,
.location-box {
grid-template-columns: 1fr;
}
.location-box__image {
min-height: 320px;
}
.grid-3 {
grid-template-columns: repeat(2, 1fr);
}
.hero__badges {
grid-template-columns: 1fr;
}
.nav {
display: none;
position: absolute;
top: 76px;
left: 16px;
right: 16px;
background: var(--primary);
border: 1px solid rgba(107, 185, 108, 0.24);
border-radius: var(--radius);
padding: 18px;
box-shadow: var(--shadow);
flex-direction: column;
align-items: flex-start;
}
.nav.is-open {
display: flex;
}
.mobile-menu-button {
display: inline-flex;
}
}
@media (max-width: 640px) {
.top-bar__inner,
.footer__inner {
flex-direction: column;
}
section {
padding: 56px 0;
}
.hero {
padding: 56px 0 48px;
}
.grid-3 {
grid-template-columns: 1fr;
}
.hero-card,
.price-box,
.contact-card,
.location-box__content {
padding: 24px;
}
.location-box__image {
min-height: 260px;
padding: 20px;
}
.button {
width: 100%;
}
} body.admin-bar .header { top: 32px; }
.page-content { max-width: 900px; }
.page-content h1 { margin-bottom: 28px; }
.page-content h2 { margin-top: 34px; }
.page-content ul { margin-bottom: 20px; }
.form-status { padding: 14px 16px; border-radius: 14px; font-weight: 700; margin-bottom: 16px; }
.form-status--success { background: rgba(107,185,108,.16); border: 1px solid var(--accent); }
.form-status--error { background: #fff1f0; border: 1px solid #f4b4af; color: #8a1c14; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
@media (max-width: 782px) { body.admin-bar .header { top: 46px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { transition: none !important; animation: none !important; } }