:root {
--petrol: #16404f;
--petrol-dark: #0e2f3b;
--blue: #29b8ea;
--blue-dark: #149fd1;
--blue-darker: #0e86b2;
--bg-soft: #f1f8fb;
--bg-softer: #f8fbfd;
--text: #33454e;
--text-light: #5c6f78;
--white: #ffffff;
--yellow: #ffb400;
--green: #23a26d;
--radius: 18px;
--radius-sm: 12px;
--shadow: 0 10px 40px rgba(14, 47, 59, 0.10);
--shadow-sm: 0 4px 16px rgba(14, 47, 59, 0.08);
--maxw: 1180px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
color: var(--text);
background: var(--white);
line-height: 1.7;
font-size: 17px;
-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
color: var(--petrol);
line-height: 1.25;
font-weight: 800;
letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1em; }
a { color: var(--blue-darker); text-decoration: none; }
a:hover { color: var(--petrol); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.kicker {
display: inline-block;
color: var(--blue-darker);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 0.8rem;
margin-bottom: 12px;
}
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head p { color: var(--text-light); margin-top: 14px; } .topbar {
background: var(--petrol-dark);
color: #cfe6ef;
font-size: 0.85rem;
padding: 7px 0;
}
.topbar .container {
display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar a { color: #fff; font-weight: 700; }
.topbar a:hover { color: var(--blue); }
.topbar .tb-left { display: flex; gap: 22px; align-items: center; }
.topbar svg { vertical-align: -2px; margin-right: 6px; } .site-header {
position: sticky; top: 0; z-index: 1000;
background: rgba(255, 255, 255, 0.96);
backdrop-filter: blur(10px);
box-shadow: 0 2px 18px rgba(14, 47, 59, 0.08);
}
.site-header .container {
display: flex; align-items: center; justify-content: space-between;
height: 82px; gap: 20px;
}
.logo img { height: 40px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { display: flex; list-style: none; gap: 2px; align-items: center; }
.main-nav a {
display: block; padding: 10px 16px;
color: var(--petrol); font-weight: 700; font-size: 1rem;
border-radius: 10px; white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: var(--bg-soft); color: var(--blue-darker); }
.has-dropdown { position: relative; }
.has-dropdown > a::after {
content: ""; display: inline-block; margin-left: 7px;
border: solid var(--petrol); border-width: 0 2px 2px 0;
padding: 3px; transform: rotate(45deg) translateY(-3px);
}
.dropdown {
position: absolute; top: 100%; left: 0; min-width: 250px;
background: #fff; border-radius: var(--radius-sm);
box-shadow: var(--shadow); padding: 8px; list-style: none;
opacity: 0; visibility: hidden; transform: translateY(8px);
transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { padding: 10px 14px; border-radius: 8px; }
.header-cta { display: flex; align-items: center; gap: 12px; } .btn {
display: inline-flex; align-items: center; justify-content: center; gap: 10px;
white-space: nowrap;
padding: 15px 28px; border-radius: 999px;
font-weight: 800; font-size: 1rem; cursor: pointer;
border: 2px solid transparent; transition: all 0.2s ease;
text-align: center;
}
.btn-primary {
background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
color: #fff; box-shadow: 0 8px 24px rgba(41, 184, 234, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(41, 184, 234, 0.55); color: #fff; }
.btn-dark { background: var(--petrol); color: #fff; }
.btn-dark:hover { background: var(--petrol-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--petrol); color: var(--petrol); background: transparent; }
.btn-outline:hover { background: var(--petrol); color: #fff; }
.btn-white { background: #fff; color: var(--petrol); box-shadow: var(--shadow-sm); }
.btn-white:hover { transform: translateY(-2px); color: var(--blue-darker); }
.btn-sm { padding: 11px 20px; font-size: 0.92rem; } .nav-toggle {
display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
display: block; width: 26px; height: 3px; background: var(--petrol);
margin: 5px 0; border-radius: 2px; transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } .hero {
position: relative; overflow: hidden;
background:
linear-gradient(100deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 42%, rgba(255,255,255,0.55) 68%, rgba(241,248,251,0.25) 100%),
url(//anpackhelden.de/wp-content/themes/anpackhelden/assets/img/haushaltsaufloesung-wuerzburg-hero.jpg) center right / cover no-repeat;
padding: 100px 0 90px;
}
.hero-inner { max-width: 660px; }
.hero .eyebrow {
display: inline-flex; align-items: center; gap: 8px;
background: #fff; border: 1px solid #d9ecf4;
color: var(--petrol); font-weight: 700; font-size: 0.85rem;
padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
box-shadow: var(--shadow-sm);
}
.hero .eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { color: var(--blue-dark); }
.hero .sub { font-size: 1.15rem; color: var(--text-light); max-width: 560px; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; }
.hero-checks li { font-weight: 700; color: var(--petrol); font-size: 0.95rem; }
.hero-checks li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 8px; } .trustbar { background: var(--petrol); padding: 0; }
.trustbar .container {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
padding-top: 30px; padding-bottom: 30px;
}
.trust-item { display: flex; align-items: center; gap: 14px; color: #fff; }
.trust-item .t-icon {
flex: 0 0 48px; height: 48px; border-radius: 14px;
background: rgba(41, 184, 234, 0.18); color: var(--blue);
display: flex; align-items: center; justify-content: center;
}
.trust-item strong { display: block; font-size: 1rem; line-height: 1.3; }
.trust-item span { font-size: 0.82rem; color: #a8cbd8; line-height: 1.35; display: block; } .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
background: #fff; border-radius: var(--radius);
box-shadow: var(--shadow-sm); overflow: hidden;
display: flex; flex-direction: column;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.card-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--text-light); font-size: 0.97rem; flex: 1; }
.card-link { font-weight: 800; color: var(--blue-darker); font-size: 0.95rem; }
.card-link::after { content: " →"; }
.service-icon {
width: 58px; height: 58px; border-radius: 16px;
background: var(--bg-soft); color: var(--blue-darker);
display: flex; align-items: center; justify-content: center;
margin-bottom: 18px; font-size: 1.6rem;
} .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
background: #fff; border-radius: var(--radius); padding: 34px 28px;
box-shadow: var(--shadow-sm); position: relative;
}
.step-num {
width: 52px; height: 52px; border-radius: 50%;
background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
color: #fff; font-weight: 800; font-size: 1.3rem;
display: flex; align-items: center; justify-content: center;
margin-bottom: 20px; box-shadow: 0 6px 18px rgba(41, 184, 234, 0.4);
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: 0.97rem; margin: 0; }
.step .badge {
position: absolute; top: 24px; right: 24px;
background: #e8f7e9; color: var(--green);
font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 999px;
} .split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; width: 100%; }
.benefit-list { list-style: none; margin-top: 24px; display: grid; gap: 16px; }
.benefit-list li { display: flex; gap: 14px; }
.benefit-list .b-icon {
flex: 0 0 30px; height: 30px; border-radius: 50%;
background: #e6f6fd; color: var(--blue-darker);
display: flex; align-items: center; justify-content: center;
font-weight: 900; font-size: 0.9rem; margin-top: 3px;
}
.benefit-list strong { color: var(--petrol); display: block; }
.benefit-list span { color: var(--text-light); font-size: 0.95rem; } .video-wrap {
position: relative; max-width: 880px; margin: 0 auto;
border-radius: var(--radius); overflow: hidden;
box-shadow: var(--shadow); aspect-ratio: 16 / 9;
background: var(--petrol-dark); cursor: pointer;
}
.video-wrap > img { width: 100%; height: 100%; object-fit: cover; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play {
position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 94px; height: 94px; border-radius: 50%; border: 4px solid #fff;
background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
color: #fff; cursor: pointer;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 10px 34px rgba(14, 47, 59, 0.45);
transition: transform 0.2s ease;
}
.video-play::before {
content: ""; display: block; margin-left: 7px;
border-style: solid; border-width: 17px 0 17px 28px;
border-color: transparent transparent transparent #fff;
}
.video-wrap:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-hint {
position: absolute; left: 0; right: 0; bottom: 0;
background: linear-gradient(transparent, rgba(14, 47, 59, 0.85));
color: #fff; font-weight: 700; font-size: 0.95rem;
text-align: center; padding: 40px 16px 16px; pointer-events: none;
} .ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 880px; margin: 0 auto; }
.ba-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.ba-label {
position: absolute; top: 16px; left: 16px;
padding: 8px 20px; border-radius: 999px;
font-weight: 800; color: #fff; font-size: 0.92rem; letter-spacing: 0.08em;
box-shadow: var(--shadow-sm);
}
.ba-label.l-vorher { background: #c9484d; }
.ba-label.l-nachher { background: var(--green); }
.ba-caption { text-align: center; color: var(--text-light); font-size: 0.95rem; max-width: 720px; margin: 26px auto 0; } .owner-fig { margin: 0; }
.owner-fig img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.owner-fig figcaption {
background: #fff; border-radius: var(--radius-sm);
box-shadow: var(--shadow-sm); padding: 18px 22px;
margin: -34px 22px 0; position: relative;
}
.owner-fig figcaption strong { color: var(--petrol); display: block; }
.owner-fig figcaption span { color: var(--text-light); font-size: 0.9rem; } .team-grid {
display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: flex-start;
}
.team-member { text-align: center; max-width: 240px; }
.team-member img { border-radius: 50%; width: 210px; height: 210px; object-fit: cover; margin: 0 auto 16px; }
.team-member strong { color: var(--petrol); font-size: 1.1rem; display: block; }
.team-member span { color: var(--text-light); font-size: 0.9rem; }
.team-banner { max-width: 640px; margin: 40px auto 0; } .press-block { margin-top: 56px; }
.press-head { text-align: center; margin-bottom: 30px; }
.press-head h3 { font-size: 1.4rem; }
.press-head p { color: var(--text-light); font-size: 0.97rem; margin: 8px 0 0; }
.press-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; max-width: 920px; margin: 0 auto; align-items: stretch; }
.press-card {
display: flex; flex-direction: column;
background: #fff; border-radius: var(--radius); overflow: hidden;
box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.press-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.press-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.press-card .press-meta {
display: flex; align-items: center; justify-content: space-between; gap: 12px;
padding: 16px 22px; border-top: 1px solid #edf4f8;
}
.press-card .press-meta strong { color: var(--petrol); font-size: 0.95rem; line-height: 1.35; }
.press-card .press-meta span {
flex: 0 0 auto; color: var(--blue-darker); font-weight: 800; font-size: 0.9rem; white-space: nowrap;
}
.press-card .press-meta span::after { content: " ↗"; } .testimonial {
background: #fff; border-radius: var(--radius); padding: 30px;
box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px;
}
.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 3px; }
.testimonial p { color: var(--text); font-size: 0.98rem; margin: 0; flex: 1; }
.testimonial footer { font-weight: 800; color: var(--petrol); font-size: 0.92rem; }
.testimonial footer span { display: block; font-weight: 600; color: var(--text-light); font-size: 0.85rem; } .region-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.city-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.city-links a {
background: #fff; border-radius: var(--radius-sm); padding: 16px 20px;
font-weight: 800; color: var(--petrol); box-shadow: var(--shadow-sm);
display: flex; align-items: center; gap: 10px;
transition: all 0.2s ease;
}
.city-links a:hover { color: var(--blue-darker); transform: translateY(-3px); box-shadow: var(--shadow); }
.city-links a::before { content: "📍"; }
.ort-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ort-tags span {
background: var(--bg-soft); color: var(--text-light);
font-size: 0.85rem; font-weight: 600; padding: 6px 14px; border-radius: 999px;
} .faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
background: #fff; border-radius: var(--radius-sm);
box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
width: 100%; text-align: left; background: none; border: 0;
padding: 20px 56px 20px 24px; cursor: pointer;
font-family: inherit; font-size: 1.05rem; font-weight: 800; color: var(--petrol);
position: relative;
}
.faq-q::after {
content: "+"; position: absolute; right: 22px; top: 50%;
transform: translateY(-50%); font-size: 1.6rem; color: var(--blue-dark);
transition: transform 0.25s ease; font-weight: 600;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a > div { padding: 0 24px 22px; color: var(--text-light); }
.faq-a p:last-child { margin-bottom: 0; } .cta-band {
background:
linear-gradient(115deg, rgba(14, 47, 59, 0.96) 0%, rgba(22, 64, 79, 0.9) 55%, rgba(20, 159, 209, 0.75) 100%),
url(//anpackhelden.de/wp-content/themes/anpackhelden/assets/img/haushaltsaufloesung-wuerzburg-hero.jpg) center / cover no-repeat;
color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #cfe6ef; max-width: 640px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }
.cta-phone { font-size: 1.5rem; font-weight: 800; color: #fff; display: block; margin-top: 26px; }
.cta-phone:hover { color: var(--blue); }
.cta-phone small { display: block; font-size: 0.85rem; font-weight: 600; color: #a8cbd8; } .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 46px; align-items: start; }
.contact-info-card {
background: var(--petrol); color: #fff; border-radius: var(--radius);
padding: 38px 34px;
}
.contact-info-card h3 { color: #fff; margin-bottom: 20px; }
.contact-info-card ul { list-style: none; display: grid; gap: 18px; }
.contact-info-card li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-card .c-icon {
flex: 0 0 42px; height: 42px; border-radius: 12px;
background: rgba(41, 184, 234, 0.18); color: var(--blue);
display: flex; align-items: center; justify-content: center;
}
.contact-info-card a { color: #fff; font-weight: 700; }
.contact-info-card a:hover { color: var(--blue); }
.contact-info-card small { color: #a8cbd8; display: block; font-size: 0.83rem; }
.contact-form {
background: #fff; border-radius: var(--radius); padding: 38px 34px;
box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form .form-sub { color: var(--text-light); font-size: 0.95rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
display: block; font-weight: 700; font-size: 0.88rem;
color: var(--petrol); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
width: 100%; padding: 13px 16px;
border: 2px solid #e3eef4; border-radius: var(--radius-sm);
font-family: inherit; font-size: 0.97rem; color: var(--text);
background: var(--bg-softer); transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
outline: none; border-color: var(--blue);
}
.form-hint { font-size: 0.8rem; color: var(--text-light); margin-top: 14px; } .site-footer { background: var(--petrol-dark); color: #b6d2dd; padding: 70px 0 0; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: #b6d2dd; }
.site-footer a:hover { color: var(--blue); }
.footer-logo { height: 54px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 22px 0; display: flex; justify-content: space-between;
flex-wrap: wrap; gap: 12px; font-size: 0.85rem;
}
.footer-bottom ul { display: flex; gap: 22px; list-style: none; } .mobile-callbar {
display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200;
background: #fff; box-shadow: 0 -4px 20px rgba(14, 47, 59, 0.15);
padding: 10px 14px; gap: 10px;
}
.mobile-callbar .btn { flex: 1; padding: 13px 10px; font-size: 0.92rem; } .page-hero {
background:
linear-gradient(100deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.5) 100%),
url(//anpackhelden.de/wp-content/themes/anpackhelden/assets/img/haushaltsaufloesung-wuerzburg-hero.jpg) center right / cover no-repeat;
padding: 70px 0 60px;
}
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.85rem; margin-bottom: 18px; color: var(--text-light); }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--text-light); }
.breadcrumb a { color: var(--blue-darker); font-weight: 700; }
.page-hero .sub { font-size: 1.12rem; color: var(--text-light); max-width: 680px; margin-top: 16px; }
.page-hero .hero-ctas { margin-top: 28px; } .prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin: 40px 0 16px; }
.prose h3 { margin: 28px 0 12px; }
.prose ul { margin: 0 0 1em 1.3em; }
.prose li { margin-bottom: 6px; }
.check-list { list-style: none !important; margin-left: 0 !important; display: grid; gap: 10px; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 10px; }
.highlight-box {
background: var(--bg-soft); border-left: 5px solid var(--blue);
border-radius: var(--radius-sm); padding: 24px 26px; margin: 28px 0;
}
.highlight-box p:last-child { margin-bottom: 0; } @media (max-width: 1024px) {
.trustbar .container { grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { grid-template-columns: repeat(2, 1fr); }
.steps { grid-template-columns: 1fr; }
.split, .region-split, .contact-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
html { scroll-padding-top: 90px; }
section { padding: 60px 0; }
.topbar .tb-left span.tb-hours { display: none; }
.site-header .container { height: 72px; }
.logo img { height: 30px; }
.nav-toggle { display: block; }
.header-cta .btn { display: none; }
.main-nav {
position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
background: #fff; padding: 24px; overflow-y: auto;
transform: translateX(100%); transition: transform 0.3s ease;
display: block; z-index: 999;
}
.main-nav.open { transform: translateX(0); }
.main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
.main-nav a { padding: 14px 16px; font-size: 1.05rem; }
.dropdown {
position: static; opacity: 1; visibility: visible; transform: none;
box-shadow: none; padding-left: 16px; min-width: 0;
}
.has-dropdown > a::after { display: none; }
.hero { padding: 64px 0 60px; background-position: 80% center; }
.grid-3, .grid-2 { grid-template-columns: 1fr; }
.ba-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.press-grid { grid-template-columns: 1fr; }
.press-card img { height: 220px; }
.video-play { width: 74px; height: 74px; }
.city-links { grid-template-columns: 1fr; }
.form-row { grid-template-columns: 1fr; }
.mobile-callbar { display: flex; }
body { padding-bottom: 68px; }
.footer-grid { grid-template-columns: 1fr; gap: 30px; }
}  body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
body.admin-bar .site-header { top: 46px; }
} .main-nav li.menu-item-has-children { position: relative; }
.main-nav li.menu-item-has-children > a::after {
content: ""; display: inline-block; margin-left: 7px;
border: solid var(--petrol); border-width: 0 2px 2px 0;
padding: 3px; transform: rotate(45deg) translateY(-3px);
}
.main-nav .sub-menu {
position: absolute; top: 100%; left: 0; min-width: 250px;
background: #fff; border-radius: var(--radius-sm);
box-shadow: var(--shadow); padding: 8px; list-style: none;
opacity: 0; visibility: hidden; transform: translateY(8px);
transition: all 0.2s ease; z-index: 50;
}
.main-nav li.menu-item-has-children:hover > .sub-menu,
.main-nav li.menu-item-has-children:focus-within > .sub-menu {
opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .sub-menu a { padding: 10px 14px; border-radius: 8px; }
.main-nav .current-menu-item > a,
.main-nav .current-menu-ancestor > a { background: var(--bg-soft); color: var(--blue-darker); } .logo img, .custom-logo { height: 40px; width: auto; } .prose img { border-radius: var(--radius-sm); height: auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-light); text-align: center; margin-top: 6px; } .form-notice { border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 18px; font-weight: 700; }
.form-notice.ok { background: #e8f7e9; color: #1b7a4d; }
.form-notice.err { background: #fdecea; color: #b3382c; }
@media (max-width: 860px) {
.main-nav .sub-menu {
position: static; opacity: 1; visibility: visible; transform: none;
box-shadow: none; padding-left: 16px; min-width: 0;
}
.main-nav li.menu-item-has-children > a::after { display: none; }
.logo img, .custom-logo { height: 30px; }
} .ort-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 920px; margin: 0 auto; }
.ort-links a {
background: #fff; color: var(--petrol);
font-size: 0.9rem; font-weight: 700;
padding: 8px 18px; border-radius: 999px;
box-shadow: var(--shadow-sm); transition: all 0.2s ease;
}
.ort-links a:hover { color: var(--blue-darker); transform: translateY(-2px); box-shadow: var(--shadow); } .usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0; }
.usp-card { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 24px 20px; text-align: center; }
.usp-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.usp-card p { margin: 0; color: var(--text-light); font-size: 0.92rem; }
.phone-cta { background: var(--petrol); color: #fff; border-radius: var(--radius); padding: 30px 28px; text-align: center; margin: 32px 0; }
.phone-cta p { margin: 0 0 6px; color: #cfe6ef; }
.phone-cta a.phone-big { display: block; font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1.2; margin: 6px 0 4px; }
.phone-cta a.phone-big:hover { color: var(--blue); }
.phone-cta small { color: #a8cbd8; }
.prose .wpforms-container { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 28px; margin: 26px 0; }
.prose .wpforms-container input[type="text"], .prose .wpforms-container input[type="tel"],
.prose .wpforms-container input[type="email"], .prose .wpforms-container select,
.prose .wpforms-container textarea {
border: 2px solid #e3eef4 !important; border-radius: 12px !important;
padding: 12px 16px !important; background: var(--bg-softer) !important; max-width: 100%;
}
.prose .wpforms-container input:focus, .prose .wpforms-container select:focus, .prose .wpforms-container textarea:focus { border-color: var(--blue) !important; outline: none; }
.prose .wpforms-container .wpforms-field-label { font-weight: 700; color: var(--petrol); }
.prose .wpforms-container button[type="submit"] {
background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%) !important;
color: #fff !important; border: 0 !important; border-radius: 999px !important;
padding: 15px 32px !important; font-weight: 800 !important; font-size: 1rem !important;
box-shadow: 0 8px 24px rgba(41, 184, 234, 0.4); cursor: pointer;
}
@media (max-width: 860px) { .usp-grid { grid-template-columns: 1fr; } } .check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; left: 0; top: 0; margin-right: 0; }
.check-list li > br:first-child { display: none; }