:root {
--red: #c0392b;
--red-soft: rgba(192, 57, 43, 0.08);
--dark: #1a202c;
--mid: #4a5568;
--light: #8a9ab0;
--bg: #f2f5f9;
--glass: rgba(255, 255, 255, 0.58);
--glass-s: rgba(255, 255, 255, 0.82);
--border: rgba(255, 255, 255, 0.9);
--sh: 0 6px 30px rgba(50, 70, 110, 0.1);
--sh-h: 0 16px 50px rgba(50, 70, 110, 0.18);
} *,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", sans-serif; background-color: #0e142a;
background-image: url(//ganserer.com/wp-content/themes/ganserer/assets/img/hero-bg.svg);
background-size: cover;
background-position: center center;
background-attachment: fixed;
min-height: 100vh;
color: var(--dark);
line-height: 1.65;
} body.menu-open {
overflow: hidden;
}   .wrap {
max-width: 1080px;
margin: 0 auto;
padding: 0 2rem;
}  nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
background: rgba(14, 20, 42, 0.52);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
height: 62px;
display: flex;
align-items: center;
padding: 0 max(2rem, calc((100% - 1080px) / 2 + 2rem));
justify-content: space-between;
transition:
background 0.38s ease,
border-color 0.38s ease;
}
nav.light {
background: rgba(237, 241, 247, 0.82);
border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}
.brand {
display: flex;
align-items: center;
gap: 11px;
text-decoration: none;
}
.brand-bar {
width: 4px;
height: 30px;
background: var(--red);
border-radius: 3px;
}
.brand-name {
font-size: 1.05rem;
font-weight: 800;
letter-spacing: -0.02em;
color: #fff;
transition: color 0.35s;
}
nav.light .brand-name {
color: var(--dark);
}
.brand-role {
font-size: 0.68rem;
color: rgba(255, 255, 255, 0.55);
letter-spacing: 0.05em;
text-transform: uppercase;
transition: color 0.35s;
}
nav.light .brand-role {
color: var(--light);
}
.nav-links {
display: flex;
gap: 2.2rem;
list-style: none;
}
.nav-links a {
font-size: 0.85rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.82);
text-decoration: none;
transition: color 0.2s;
}
nav.light .nav-links a {
color: var(--mid);
}
.nav-links a:hover {
color: var(--red) !important;
} .btn {
display: inline-block;
padding: 0.8rem 1.9rem;
border-radius: 50px;
font-size: 0.88rem;
font-weight: 600;
text-decoration: none;
transition: all 0.22s;
cursor: pointer;
border: none;
}
.btn-red {
background: var(--red);
color: #fff;
box-shadow: 0 4px 18px rgba(192, 57, 43, 0.32);
}
.btn-red:hover {
background: #d44234;
box-shadow: 0 8px 26px rgba(192, 57, 43, 0.42);
transform: translateY(-2px);
}
.btn-ghost {
border: 1.5px solid rgba(74, 85, 104, 0.28);
color: var(--mid);
margin-left: 0.9rem;
}
.btn-ghost:hover {
border-color: var(--red);
color: var(--red);
transform: translateY(-2px);
} .pill {
display: inline-flex;
align-items: center;
gap: 7px;
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--red);
}
.pill::before {
content: "";
width: 18px;
height: 2px;
background: var(--red);
border-radius: 2px;
}
.tag {
font-size: 0.72rem;
font-weight: 600;
background: var(--red-soft);
color: var(--red);
border: 1px solid rgba(192, 57, 43, 0.18);
padding: 0.28rem 0.7rem;
border-radius: 50px;
}
.tag-row {
display: flex;
flex-wrap: wrap;
gap: 0.45rem;
} .about-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2.8rem;
align-items: start;
} .scard {
background: var(--glass);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid var(--border);
border-radius: 22px;
padding: 2.2rem 2rem 2rem;
box-shadow: var(--sh);
transition:
transform 0.3s,
box-shadow 0.3s;
position: relative;
overflow: hidden;
}
.scard::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--red);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.35s ease;
}
.scard:hover {
transform: translateY(-8px);
box-shadow: var(--sh-h);
}
.scard:hover::after {
transform: scaleX(1);
}
.scard-num {
font-size: 2.8rem;
font-weight: 900;
color: rgba(192, 57, 43, 0.12);
line-height: 1;
margin-bottom: 0.8rem;
letter-spacing: -0.04em;
}
.scard-title {
font-size: 1.15rem;
font-weight: 800;
color: var(--dark);
margin-bottom: 0.8rem;
}
.scard-text {
font-size: 0.9rem;
color: var(--mid);
line-height: 1.72;
}
.scard-link {
display: inline-flex;
align-items: center;
gap: 5px;
margin-top: 1.3rem;
font-size: 0.82rem;
font-weight: 700;
color: var(--red);
text-decoration: none;
transition: gap 0.2s;
}
.scard-link:hover {
gap: 9px;
}
.acard {
background: var(--glass-s);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--border);
border-radius: 24px;
padding: 2.6rem 2.4rem;
box-shadow: var(--sh);
}
.acard-head {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 1.6rem;
}
.acard-bar {
width: 5px;
height: 44px;
background: var(--red);
border-radius: 3px;
}
.acard-head h3 {
font-size: 1.35rem;
font-weight: 900;
letter-spacing: -0.02em;
}
.acard-head p {
font-size: 0.7rem;
color: var(--light);
text-transform: uppercase;
letter-spacing: 0.07em;
}
.acard p {
font-size: 0.93rem;
color: var(--mid);
margin-bottom: 1rem;
line-height: 1.75;
}
.acard p:last-of-type {
margin-bottom: 0;
}
.acard-label {
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--light);
margin-top: 1.6rem;
margin-bottom: 0.65rem;
}
.contrast-stack {
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.cblock {
background: var(--glass);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border: 1px solid var(--border);
border-radius: 18px;
padding: 1.5rem 1.7rem;
box-shadow: 0 4px 16px rgba(50, 70, 110, 0.08);
transition:
transform 0.25s,
box-shadow 0.25s;
}
.cblock:hover {
transform: translateY(-5px);
box-shadow: 0 12px 28px rgba(50, 70, 110, 0.14);
}
.cblock-label {
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--red);
margin-bottom: 0.5rem;
}
.cblock-text {
font-size: 0.93rem;
font-weight: 600;
color: var(--dark);
line-height: 1.5;
}
.cblock-sub {
font-size: 0.82rem;
color: var(--mid);
margin-top: 0.3rem;
line-height: 1.55;
} .info-list {
display: flex;
flex-direction: column;
gap: 0.9rem;
}
.info-row {
display: flex;
align-items: center;
gap: 1.1rem;
background: rgba(255, 255, 255, 0.48);
border: 1px solid rgba(255, 255, 255, 0.85);
border-radius: 14px;
padding: 1rem 1.3rem;
}
.info-dot {
width: 8px;
height: 8px;
background: var(--red);
border-radius: 50%;
flex-shrink: 0;
}
.info-label {
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--light);
}
.info-val {
font-size: 0.9rem;
font-weight: 600;
color: var(--dark);
text-decoration: none;
}
.info-val:hover {
color: var(--red);
}  section {
padding: 88px 0;
} section:not(#hero) {
position: relative;
background: rgba(235, 240, 248, 0.88);
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
}
.sec-head {
margin-bottom: 3rem;
}
.sec-title {
font-size: clamp(1.7rem, 3vw, 2.4rem);
font-weight: 900;
letter-spacing: -0.03em;
color: var(--dark);
margin-top: 0.6rem;
}
.sec-sub {
margin-top: 0.7rem;
font-size: 1rem;
color: var(--mid);
max-width: 500px;
} #hero {
position: relative;
padding: 140px 0 90px;
min-height: 100vh;
display: flex;
align-items: center; background: transparent;
} #hero::before {
content: "";
position: absolute;
inset: 0;
z-index: 0;
background: linear-gradient(
135deg,
rgba(10, 16, 38, 0.72) 0%,
rgba(18, 28, 62, 0.48) 52%,
rgba(12, 22, 54, 0.32) 100%
);
} #hero .wrap {
position: relative;
z-index: 1;
}
.hero-grid {
display: grid;
grid-template-columns: 55fr 45fr;
gap: 5rem;
align-items: center;
}
.hero-kicker {
margin-bottom: 1.4rem;
} #hero .pill {
color: rgba(255, 255, 255, 0.82);
}
#hero .pill::before {
background: var(--red);
}
.hero-title {
font-size: clamp(2.6rem, 4.8vw, 3.8rem);
font-weight: 900;
line-height: 1.05;
letter-spacing: -0.04em;
color: #fff;
margin-bottom: 1.4rem;
}
.hero-title em {
font-style: normal;
color: var(--red);
}
.hero-under {
font-size: 1.1rem;
color: rgba(255, 255, 255, 0.78);
margin-bottom: 0.6rem;
line-height: 1.6;
max-width: 440px;
}
.hero-under--second {
margin-top: 0.5rem;
}
.hero-under strong {
color: #fff;
font-weight: 700;
}
.hero-cta {
margin-top: 2.2rem;
} #hero .btn-ghost {
border-color: rgba(255, 255, 255, 0.36);
color: rgba(255, 255, 255, 0.88);
}
#hero .btn-ghost:hover {
border-color: var(--red);
color: #fff;
background: rgba(255, 255, 255, 0.08);
} .hero-card {
background: rgba(255, 255, 255, 0.14);
backdrop-filter: blur(28px);
-webkit-backdrop-filter: blur(28px);
border: 1px solid rgba(255, 255, 255, 0.28);
border-radius: 26px;
padding: 2.4rem 2.2rem;
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
} .hc-photo {
display: flex;
justify-content: center;
margin-bottom: 1.8rem;
}
.hc-avatar {
width: 96px;
height: 96px;
border-radius: 50%;
background: linear-gradient(
135deg,
var(--red) 0%,
rgba(192, 57, 43, 0.72) 100%
);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.55rem;
font-weight: 900;
color: white;
letter-spacing: 0.04em;
box-shadow:
0 4px 22px rgba(192, 57, 43, 0.45),
0 0 0 4px rgba(255, 255, 255, 0.15);
flex-shrink: 0;
} .hc-avatar img {
width: 96px;
height: 96px;
border-radius: 50%;
object-fit: cover;
}
.hc-head {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 1.5rem;
padding-bottom: 1.4rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.hc-bar {
width: 5px;
height: 46px;
background: var(--red);
border-radius: 3px;
flex-shrink: 0;
}
.hc-name {
font-size: 1.4rem;
font-weight: 900;
letter-spacing: -0.02em;
color: #fff;
}
.hc-role {
font-size: 0.72rem;
color: rgba(255, 255, 255, 0.55);
text-transform: uppercase;
letter-spacing: 0.07em;
} .hc-quote {
font-size: 1.02rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.92);
line-height: 1.5;
margin-bottom: 1.4rem;
position: relative;
padding-left: 1.2rem;
}
.hc-quote::before {
content: "";
position: absolute;
left: 0;
top: 4px;
width: 3px;
height: calc(100% - 4px);
background: var(--red);
border-radius: 2px;
}
.hc-clients {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.52);
margin-bottom: 1rem;
}
.hc-tags {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
} .hero-card .tag {
background: rgba(255, 255, 255, 0.12);
color: rgba(255, 255, 255, 0.82);
border-color: rgba(255, 255, 255, 0.2);
} .service-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.4rem;
} .section-kontakt {
padding-bottom: 100px;
}
.kontakt-pill {
margin-bottom: 1.1rem;
display: inline-flex;
}
.cta-card {
background: var(--glass-s);
backdrop-filter: blur(22px);
-webkit-backdrop-filter: blur(22px);
border: 1px solid var(--border);
border-radius: 28px;
padding: 4rem 4.5rem;
box-shadow: var(--sh);
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4.5rem;
align-items: center;
}
.cta-title {
font-size: clamp(1.5rem, 2.8vw, 2.1rem);
font-weight: 900;
letter-spacing: -0.025em;
color: var(--dark);
line-height: 1.15;
margin-bottom: 0.9rem;
}
.cta-title em {
font-style: normal;
color: var(--red);
}
.cta-sub {
font-size: 0.95rem;
color: var(--mid);
margin-bottom: 1.8rem;
line-height: 1.65;
} footer {
text-align: center;
padding: 2rem 2rem;
font-size: 0.76rem;
color: var(--light);
border-top: 1px solid rgba(255, 255, 255, 0.5);
background: rgba(235, 240, 248, 0.88);
}
footer a {
color: var(--light);
text-decoration: none;
}
footer a:hover {
color: var(--red);
} .hamburger {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
width: 36px;
height: 36px;
padding: 6px;
background: none;
border: none;
cursor: pointer;
z-index: 110;
}
.hamburger span {
display: block;
width: 100%;
height: 2px;
background: #fff;
border-radius: 2px;
transition:
transform 0.3s ease,
opacity 0.3s ease;
}
nav.light .hamburger span {
background: var(--dark);
} .hamburger.active span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
} .page-content {
padding-top: 120px;
padding-bottom: 80px;
max-width: 800px;
margin: 0 auto;
padding-left: 2rem;
padding-right: 2rem;
}
.page-content article {
background: var(--glass-s);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--border);
border-radius: 24px;
padding: 3rem 3.2rem;
box-shadow: var(--sh);
} .page-content h1 {
font-size: clamp(1.8rem, 3vw, 2.4rem);
font-weight: 900;
letter-spacing: -0.03em;
color: var(--dark);
margin-bottom: 1.5rem;
line-height: 1.15;
}
.page-content h2 {
font-size: clamp(1.3rem, 2.4vw, 1.7rem);
font-weight: 800;
letter-spacing: -0.02em;
color: var(--dark);
margin-top: 2.2rem;
margin-bottom: 1rem;
line-height: 1.2;
}
.page-content h3 {
font-size: 1.15rem;
font-weight: 700;
color: var(--dark);
margin-top: 1.8rem;
margin-bottom: 0.8rem;
}
.page-content h4 {
font-size: 1rem;
font-weight: 700;
color: var(--mid);
margin-top: 1.4rem;
margin-bottom: 0.6rem;
}
.page-content p {
font-size: 0.95rem;
color: var(--mid);
line-height: 1.75;
margin-bottom: 1rem;
}
.page-content ul,
.page-content ol {
font-size: 0.95rem;
color: var(--mid);
line-height: 1.75;
margin-bottom: 1rem;
padding-left: 1.5rem;
}
.page-content li {
margin-bottom: 0.4rem;
}
.page-content a {
color: var(--red);
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
.page-content a:hover {
color: #d44234;
}  a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
outline: 2px solid var(--red);
outline-offset: 3px;
border-radius: 4px;
} :focus:not(:focus-visible) {
outline: none;
} @media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
html {
scroll-behavior: auto;
}
.scard:hover,
.cblock:hover,
.btn-red:hover,
.btn-ghost:hover {
transform: none;
}
.scard::after {
transition: none;
}
} @media (max-width: 880px) {
.hero-grid,
.about-layout,
.cta-card {
grid-template-columns: 1fr;
gap: 2rem;
}
.service-grid {
grid-template-columns: 1fr;
}
.hero-card {
display: none;
}
.cta-card {
padding: 2.2rem;
}
#hero {
padding-top: 100px;
min-height: auto;
} .hamburger {
display: flex;
}  .nav-links {
display: none;
position: absolute;
top: 62px;
left: 0;
right: 0;
z-index: 99;
flex-direction: column;
align-items: center;
gap: 0;
padding: 1.5rem 2rem 2rem;
background: rgb(14, 20, 42);
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
nav.light .nav-links {
background: rgb(237, 241, 247);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
border-bottom: 1px solid rgba(255, 255, 255, 0.65);
box-shadow: 0 12px 40px rgba(50, 70, 110, 0.15);
}
.nav-links.open {
display: flex;
}
.nav-links li {
width: 100%;
text-align: center;
}
.nav-links a {
display: block;
padding: 0.9rem 0;
font-size: 1rem;
font-weight: 600;
} .hero-mobile-info {
display: block;
background: rgba(255, 255, 255, 0.12);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 18px;
padding: 1.6rem 1.4rem;
margin-top: 2rem;
}
.hero-mobile-info .hc-quote {
font-size: 0.95rem;
margin-bottom: 1.2rem;
}
.hero-mobile-info .hc-tags {
gap: 0.35rem;
}
.hero-mobile-info .tag {
background: rgba(255, 255, 255, 0.12);
color: rgba(255, 255, 255, 0.82);
border-color: rgba(255, 255, 255, 0.2);
font-size: 0.68rem;
} .page-content {
padding-top: 90px;
}
.page-content article {
padding: 2rem 1.6rem;
border-radius: 18px;
}
} .hero-mobile-info {
display: none;
}